def from_string(cls, hash):
     if not cls.identify(hash):
         raise uh.exc.InvalidHashError(cls)
     if isinstance(hash, bytes):
         hash = hash.decode("ascii")
     return cls(salt=hash[5:-40], checksum=hash[-40:])
Exemple #2
0
 def from_string(cls, hash):
     if not cls.identify(hash):
         raise uh.exc.InvalidHashError(cls)
     if isinstance(hash, bytes):
         hash = hash.decode("ascii")
     return cls(salt=hash[5:-40], checksum=hash[-40:])