utils.py 742 B

12345678910111213141516171819202122
  1. # This file is dual licensed under the terms of the Apache License, Version
  2. # 2.0, and the BSD License. See the LICENSE file in the root of this repository
  3. # for complete details.
  4. from cryptography.hazmat.bindings._rust import asn1
  5. from cryptography.hazmat.primitives import hashes
  6. decode_dss_signature = asn1.decode_dss_signature
  7. encode_dss_signature = asn1.encode_dss_signature
  8. class Prehashed(object):
  9. def __init__(self, algorithm: hashes.HashAlgorithm):
  10. if not isinstance(algorithm, hashes.HashAlgorithm):
  11. raise TypeError("Expected instance of HashAlgorithm.")
  12. self._algorithm = algorithm
  13. self._digest_size = algorithm.digest_size
  14. digest_size = property(lambda self: self._digest_size)