Home | History | Annotate | Download | only in server

Lines Matching refs:unique

191             # Remove it so we can have more unique bytes.
335 @param instance: string fragment of the command line unique to
399 """ Build our unique token by base-<len(self.SUFFIX_LETTERS)> encoding
408 unique = ''
409 while number or not unique:
410 unique = self.SUFFIX_LETTERS[number % base] + unique
416 return '_'.join([self._ssid_prefix, unique, salt, suffix])[-32:]