|
21 | 21 | decode_dss_signature,
|
22 | 22 | encode_dss_signature
|
23 | 23 | )
|
| 24 | +from cryptography.hazmat.primitives.asymmetric.utils import Prehashed |
24 | 25 |
|
25 | 26 | from collections import namedtuple
|
26 | 27 | import _dafny
|
@@ -48,7 +49,7 @@ def ExternKeyGen(signature_algorithm):
|
48 | 49 | return Wrappers.Result_Failure(maybe_signature_algorithm.error)
|
49 | 50 |
|
50 | 51 | private_key = ec.generate_private_key(
|
51 |
| - maybe_signature_algorithm.value.value.curve |
| 52 | + maybe_signature_algorithm.value.value.curve() |
52 | 53 | )
|
53 | 54 |
|
54 | 55 | private_key_pem_bytes = private_key.private_bytes(Encoding.PEM, PrivateFormat.PKCS8, NoEncryption())
|
@@ -101,9 +102,9 @@ def Verify(signature_algorithm, verification_key, message, signature):
|
101 | 102 |
|
102 | 103 | message_digest_algorithm = maybe_signature_algorithm.value.value.message_digest_algorithm
|
103 | 104 | if message_digest_algorithm.is_SHA__256:
|
104 |
| - sign_algo = ec.ECDSA(hashes.SHA256()) |
| 105 | + sign_algo = ec.ECDSA(Prehashed(hashes.SHA256())) |
105 | 106 | elif message_digest_algorithm.is_SHA__384:
|
106 |
| - sign_algo = ec.ECDSA(hashes.SHA384()) |
| 107 | + sign_algo = ec.ECDSA(Prehashed(hashes.SHA384())) |
107 | 108 | else:
|
108 | 109 | return Wrappers.Result_Failure(Error_AwsCryptographicPrimitivesError(
|
109 | 110 | message=f"Requested Digest Algorithm is not supported. Requested {message_digest_algorithm}"
|
@@ -242,9 +243,9 @@ def _ecc_static_length_signature(key, algorithm, digest):
|
242 | 243 | :rtype: bytes
|
243 | 244 | """
|
244 | 245 | if algorithm.message_digest_algorithm.is_SHA__256:
|
245 |
| - sign_algo = ec.ECDSA(hashes.SHA256()) |
| 246 | + sign_algo = ec.ECDSA(Prehashed(hashes.SHA256())) |
246 | 247 | elif algorithm.message_digest_algorithm.is_SHA__384:
|
247 |
| - sign_algo = ec.ECDSA(hashes.SHA384()) |
| 248 | + sign_algo = ec.ECDSA(Prehashed(hashes.SHA384())) |
248 | 249 | pre_hashed_algorithm = sign_algo
|
249 | 250 | signature = b""
|
250 | 251 | while len(signature) != algorithm.expected_signature_length:
|
|
0 commit comments