| Server IP : 185.208.173.17 / Your IP : 87.236.161.98 Web Server : Microsoft-IIS/10.0 System : Windows NT SRV8576125506 10.0 build 26100 (Windows Server 2016) AMD64 User : IUSR ( 0) PHP Version : 7.4.13 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Program Files/MySQL/MySQL Shell 8.0/lib/Python3.13/Lib/site-packages/tests/wycheproof/ |
Upload File : |
# This file is dual licensed under the terms of the Apache License, Version
# 2.0, and the BSD License. See the LICENSE file in the root of this repository
# for complete details.
import binascii
import pytest
from cryptography.exceptions import InvalidSignature
from cryptography.hazmat.primitives import hashes, serialization
from cryptography.hazmat.primitives.asymmetric import padding, rsa
from .utils import wycheproof_tests
_DIGESTS = {
"SHA-1": hashes.SHA1(),
"SHA-224": hashes.SHA224(),
"SHA-256": hashes.SHA256(),
"SHA-384": hashes.SHA384(),
"SHA-512": hashes.SHA512(),
# Not supported by OpenSSL<3 for RSA signing.
# Enable these when we require CRYPTOGRAPHY_OPENSSL_300_OR_GREATER
"SHA-512/224": None,
"SHA-512/256": None,
"SHA3-224": hashes.SHA3_224(),
"SHA3-256": hashes.SHA3_256(),
"SHA3-384": hashes.SHA3_384(),
"SHA3-512": hashes.SHA3_512(),
}
def should_verify(backend, wycheproof):
if wycheproof.valid:
return True
if wycheproof.acceptable:
return not wycheproof.has_flag("MissingNull")
return False
@wycheproof_tests(
"rsa_signature_2048_sha224_test.json",
"rsa_signature_2048_sha256_test.json",
"rsa_signature_2048_sha384_test.json",
"rsa_signature_2048_sha512_test.json",
"rsa_signature_2048_sha512_224_test.json",
"rsa_signature_2048_sha512_256_test.json",
"rsa_signature_2048_sha3_224_test.json",
"rsa_signature_2048_sha3_256_test.json",
"rsa_signature_2048_sha3_384_test.json",
"rsa_signature_2048_sha3_512_test.json",
"rsa_signature_3072_sha256_test.json",
"rsa_signature_3072_sha384_test.json",
"rsa_signature_3072_sha512_test.json",
"rsa_signature_3072_sha512_256_test.json",
"rsa_signature_3072_sha3_256_test.json",
"rsa_signature_3072_sha3_384_test.json",
"rsa_signature_3072_sha3_512_test.json",
"rsa_signature_4096_sha256_test.json",
"rsa_signature_4096_sha384_test.json",
"rsa_signature_4096_sha512_test.json",
"rsa_signature_4096_sha512_256_test.json",
"rsa_signature_8192_sha256_test.json",
"rsa_signature_8192_sha384_test.json",
"rsa_signature_8192_sha512_test.json",
)
def test_rsa_pkcs1v15_signature(backend, wycheproof):
key = wycheproof.cache_value_to_group(
"cached_key",
lambda: serialization.load_der_public_key(
binascii.unhexlify(wycheproof.testgroup["publicKeyDer"]),
),
)
assert isinstance(key, rsa.RSAPublicKey)
digest = _DIGESTS[wycheproof.testgroup["sha"]]
if digest is None or not backend.hash_supported(digest):
pytest.skip(
"Hash {} not supported".format(wycheproof.testgroup["sha"])
)
if should_verify(backend, wycheproof):
key.verify(
binascii.unhexlify(wycheproof.testcase["sig"]),
binascii.unhexlify(wycheproof.testcase["msg"]),
padding.PKCS1v15(),
digest,
)
else:
with pytest.raises(InvalidSignature):
key.verify(
binascii.unhexlify(wycheproof.testcase["sig"]),
binascii.unhexlify(wycheproof.testcase["msg"]),
padding.PKCS1v15(),
digest,
)
@wycheproof_tests(
"rsa_pkcs1_1024_sig_gen_test.json",
"rsa_pkcs1_1536_sig_gen_test.json",
"rsa_pkcs1_2048_sig_gen_test.json",
"rsa_pkcs1_3072_sig_gen_test.json",
"rsa_pkcs1_4096_sig_gen_test.json",
)
def test_rsa_pkcs1v15_signature_generation(backend, wycheproof):
key = wycheproof.cache_value_to_group(
"cached_key",
lambda: serialization.load_der_private_key(
binascii.unhexlify(wycheproof.testgroup["privateKeyPkcs8"]),
password=None,
unsafe_skip_rsa_key_validation=True,
),
)
assert isinstance(key, rsa.RSAPrivateKey)
digest = _DIGESTS[wycheproof.testgroup["sha"]]
assert digest is not None
if backend._fips_enabled:
if key.key_size < backend._fips_rsa_min_key_size or isinstance(
digest, hashes.SHA1
):
pytest.skip(
f"Invalid params for FIPS. key: {key.key_size} bits, "
f"digest: {digest.name}"
)
sig = key.sign(
binascii.unhexlify(wycheproof.testcase["msg"]),
padding.PKCS1v15(),
digest,
)
assert sig == binascii.unhexlify(wycheproof.testcase["sig"])
@wycheproof_tests(
"rsa_pss_2048_sha1_mgf1_20_test.json",
"rsa_pss_2048_sha256_mgf1_0_test.json",
"rsa_pss_2048_sha256_mgf1_32_test.json",
"rsa_pss_2048_sha512_224_mgf1_28_test.json",
"rsa_pss_2048_sha512_256_mgf1_32_test.json",
"rsa_pss_3072_sha256_mgf1_32_test.json",
"rsa_pss_4096_sha256_mgf1_32_test.json",
"rsa_pss_4096_sha512_mgf1_32_test.json",
"rsa_pss_misc_test.json",
)
def test_rsa_pss_signature(backend, wycheproof):
digest = _DIGESTS[wycheproof.testgroup["sha"]]
mgf_digest = _DIGESTS[wycheproof.testgroup["mgfSha"]]
if digest is None or mgf_digest is None:
pytest.skip(
"PSS with digest={} and MGF digest={} not supported".format(
wycheproof.testgroup["sha"],
wycheproof.testgroup["mgfSha"],
)
)
if backend._fips_enabled and (
isinstance(digest, hashes.SHA1)
or isinstance(mgf_digest, hashes.SHA1)
# FIPS 186-4 only allows salt length == digest length for PSS
or wycheproof.testgroup["sLen"] != mgf_digest.digest_size
# inner MGF1 hash must match outer hash
or wycheproof.testgroup["sha"] != wycheproof.testgroup["mgfSha"]
):
pytest.skip("Invalid params for FIPS")
key = wycheproof.cache_value_to_group(
"cached_key",
lambda: serialization.load_der_public_key(
binascii.unhexlify(wycheproof.testgroup["publicKeyDer"]),
),
)
assert isinstance(key, rsa.RSAPublicKey)
if wycheproof.valid or wycheproof.acceptable:
key.verify(
binascii.unhexlify(wycheproof.testcase["sig"]),
binascii.unhexlify(wycheproof.testcase["msg"]),
padding.PSS(
mgf=padding.MGF1(mgf_digest),
salt_length=wycheproof.testgroup["sLen"],
),
digest,
)
else:
with pytest.raises(InvalidSignature):
key.verify(
binascii.unhexlify(wycheproof.testcase["sig"]),
binascii.unhexlify(wycheproof.testcase["msg"]),
padding.PSS(
mgf=padding.MGF1(mgf_digest),
salt_length=wycheproof.testgroup["sLen"],
),
digest,
)
@wycheproof_tests(
"rsa_oaep_2048_sha1_mgf1sha1_test.json",
"rsa_oaep_2048_sha224_mgf1sha1_test.json",
"rsa_oaep_2048_sha224_mgf1sha224_test.json",
"rsa_oaep_2048_sha256_mgf1sha1_test.json",
"rsa_oaep_2048_sha256_mgf1sha256_test.json",
"rsa_oaep_2048_sha384_mgf1sha1_test.json",
"rsa_oaep_2048_sha384_mgf1sha384_test.json",
"rsa_oaep_2048_sha512_mgf1sha1_test.json",
"rsa_oaep_2048_sha512_mgf1sha512_test.json",
"rsa_oaep_3072_sha256_mgf1sha1_test.json",
"rsa_oaep_3072_sha256_mgf1sha256_test.json",
"rsa_oaep_3072_sha512_mgf1sha1_test.json",
"rsa_oaep_3072_sha512_mgf1sha512_test.json",
"rsa_oaep_4096_sha256_mgf1sha1_test.json",
"rsa_oaep_4096_sha256_mgf1sha256_test.json",
"rsa_oaep_4096_sha512_mgf1sha1_test.json",
"rsa_oaep_4096_sha512_mgf1sha512_test.json",
"rsa_oaep_misc_test.json",
)
def test_rsa_oaep_encryption(backend, wycheproof):
if backend._fips_enabled and wycheproof.has_flag("SmallIntegerCiphertext"):
pytest.skip(
"Small integer ciphertexts are rejected in OpenSSL 3.5 FIPS"
)
digest = _DIGESTS[wycheproof.testgroup["sha"]]
mgf_digest = _DIGESTS[wycheproof.testgroup["mgfSha"]]
assert digest is not None
assert mgf_digest is not None
padding_algo = padding.OAEP(
mgf=padding.MGF1(algorithm=mgf_digest),
algorithm=digest,
label=binascii.unhexlify(wycheproof.testcase["label"]),
)
if not backend.rsa_encryption_supported(padding_algo):
pytest.skip(
f"Does not support OAEP using {mgf_digest.name} MGF1 "
f"or {digest.name} hash."
)
key = wycheproof.cache_value_to_group(
"cached_key",
lambda: serialization.load_der_private_key(
binascii.unhexlify(wycheproof.testgroup["privateKeyPkcs8"]),
password=None,
unsafe_skip_rsa_key_validation=True,
),
)
assert isinstance(key, rsa.RSAPrivateKey)
if backend._fips_enabled and key.key_size < backend._fips_rsa_min_key_size:
pytest.skip("Invalid params for FIPS. <2048 bit keys are disallowed")
if wycheproof.valid or wycheproof.acceptable:
pt = key.decrypt(
binascii.unhexlify(wycheproof.testcase["ct"]), padding_algo
)
assert pt == binascii.unhexlify(wycheproof.testcase["msg"])
else:
with pytest.raises(ValueError):
key.decrypt(
binascii.unhexlify(wycheproof.testcase["ct"]), padding_algo
)
@pytest.mark.supported(
only_if=lambda backend: backend.rsa_encryption_supported(
padding.PKCS1v15()
),
skip_message="Does not support PKCS1v1.5 for encryption.",
)
@wycheproof_tests(
"rsa_pkcs1_2048_test.json",
"rsa_pkcs1_3072_test.json",
"rsa_pkcs1_4096_test.json",
)
def test_rsa_pkcs1_encryption(backend, wycheproof):
key = wycheproof.cache_value_to_group(
"cached_key",
lambda: serialization.load_der_private_key(
binascii.unhexlify(wycheproof.testgroup["privateKeyPkcs8"]),
password=None,
unsafe_skip_rsa_key_validation=True,
),
)
assert isinstance(key, rsa.RSAPrivateKey)
if wycheproof.valid:
pt = key.decrypt(
binascii.unhexlify(wycheproof.testcase["ct"]), padding.PKCS1v15()
)
assert pt == binascii.unhexlify(wycheproof.testcase["msg"])
elif backend._lib.Cryptography_HAS_IMPLICIT_RSA_REJECTION:
try:
assert key.decrypt(
binascii.unhexlify(wycheproof.testcase["ct"]),
padding.PKCS1v15(),
) != binascii.unhexlify(wycheproof.testcase["ct"])
except ValueError:
# Some raise ValueError due to length mismatch.
pass
else:
with pytest.raises(ValueError):
key.decrypt(
binascii.unhexlify(wycheproof.testcase["ct"]),
padding.PKCS1v15(),
)