Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

3.14.1: pytest is failing and many warnings #599

Closed
kloczek opened this issue Feb 11, 2022 · 8 comments
Closed

3.14.1: pytest is failing and many warnings #599

kloczek opened this issue Feb 11, 2022 · 8 comments

Comments

@kloczek
Copy link

kloczek commented Feb 11, 2022

I'm trying to package your module as an rpm package. So I'm using the typical PEP517 based build, install and test cycle used on building packages from non-root account.

  • python3 -sBm build -w --no-isolation
  • because I'm calling build with --no-isolation I'm using during all processes only locally installed modules
  • install .whl file in </install/prefix>
  • run pytest with PYTHONPATH pointing to sitearch and sitelib inside </install/prefix>
  • because above methofology pytest needs to be executest with --import-mode=importlib

Here is pytest output:

+ PYTHONPATH=/home/tkloczko/rpmbuild/BUILDROOT/python-pycryptodome-3.14.1-2.fc35.x86_64/usr/lib64/python3.8/site-packages:/home/tkloczko/rpmbuild/BUILDROOT/python-pycryptodome-3.14.1-2.fc35.x86_64/usr/lib/python3.8/site-packages
+ /usr/bin/pytest -ra --import-mode=importlib
=========================================================================== test session starts ============================================================================
platform linux -- Python 3.8.12, pytest-6.2.5, py-1.11.0, pluggy-1.0.0
rootdir: /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1
collected 1662 items / 3 errors / 1659 selected

================================================================================== ERRORS ==================================================================================
_______________________________________________________ ERROR collecting lib/Crypto/SelfTest/Cipher/test_Salsa20.py ________________________________________________________
ImportError while importing test module '/home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Cipher/test_Salsa20.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
lib/Crypto/SelfTest/Cipher/test_Salsa20.py:35: in <module>
    from .common import make_stream_tests
E   ImportError: attempted relative import with no known parent package
________________________________________________________ ERROR collecting lib/Crypto/SelfTest/Hash/test_Poly1305.py ________________________________________________________
ImportError while importing test module '/home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Hash/test_Poly1305.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
lib/Crypto/SelfTest/Hash/test_Poly1305.py:40: in <module>
    from .common import make_mac_tests
E   ImportError: attempted relative import with no known parent package
_________________________________________________________ ERROR collecting lib/Crypto/SelfTest/Hash/test_SHA512.py _________________________________________________________
ImportError while importing test module '/home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Hash/test_SHA512.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
lib/Crypto/SelfTest/Hash/test_SHA512.py:30: in <module>
    from .common import make_hash_tests
E   ImportError: attempted relative import with no known parent package
============================================================================= warnings summary =============================================================================
lib/Crypto/SelfTest/Cipher/test_DES3.py:60
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Cipher/test_DES3.py:60: UserWarning: Warning: skipping extended tests for TDES ECB (TECBMMT2.rsp)
    test_vectors = load_test_vectors(

lib/Crypto/SelfTest/Cipher/test_DES3.py:60
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Cipher/test_DES3.py:60: UserWarning: Warning: skipping extended tests for TDES ECB (TECBMMT3.rsp)
    test_vectors = load_test_vectors(

lib/Crypto/SelfTest/Cipher/test_GCM.py:783
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Cipher/test_GCM.py:783: UserWarning: Warning: skipping extended tests for GCM decrypt
    test_vectors_nist = load_test_vectors(

lib/Crypto/SelfTest/Cipher/test_GCM.py:789
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Cipher/test_GCM.py:789: UserWarning: Warning: skipping extended tests for GCM encrypt
    test_vectors_nist += load_test_vectors(

lib/Crypto/SelfTest/Hash/test_SHAKE.py:94
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Hash/test_SHAKE.py:94: UserWarning: Warning: skipping extended tests for Short Messages KAT SHAKE128
    test_vectors_128 = load_test_vectors(("Hash", "SHA3"),

lib/Crypto/SelfTest/Hash/test_SHAKE.py:113
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Hash/test_SHAKE.py:113: UserWarning: Warning: skipping extended tests for Short Messages KAT SHAKE256
    test_vectors_256 = load_test_vectors(("Hash", "SHA3"),

lib/Crypto/SelfTest/Hash/test_cSHAKE.py:140
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Hash/test_cSHAKE.py:140: UserWarning: Warning: skipping extended tests for Short Message Samples cSHAKE128
    test_vectors = load_test_vectors(("Hash", "SHA3"), file, descr,

lib/Crypto/SelfTest/Hash/test_cSHAKE.py:140
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Hash/test_cSHAKE.py:140: UserWarning: Warning: skipping extended tests for Short Message Samples cSHAKE256
    test_vectors = load_test_vectors(("Hash", "SHA3"), file, descr,

lib/Crypto/SelfTest/Hash/test_cSHAKE.py:140
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Hash/test_cSHAKE.py:140: UserWarning: Warning: skipping extended tests for Custom Message Samples cSHAKE128
    test_vectors = load_test_vectors(("Hash", "SHA3"), file, descr,

lib/Crypto/SelfTest/Hash/test_cSHAKE.py:140
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Hash/test_cSHAKE.py:140: UserWarning: Warning: skipping extended tests for Custom Message Samples cSHAKE256
    test_vectors = load_test_vectors(("Hash", "SHA3"), file, descr,

lib/Crypto/SelfTest/Hash/test_keccak.py:144
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Hash/test_keccak.py:144: UserWarning: Warning: skipping extended tests for Short Messages KAT 224
    test_vectors_224 =  load_test_vectors(("Hash", "keccak"),

lib/Crypto/SelfTest/Hash/test_keccak.py:149
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Hash/test_keccak.py:149: UserWarning: Warning: skipping extended tests for Long Messages KAT 224
    test_vectors_224 += load_test_vectors(("Hash", "keccak"),

lib/Crypto/SelfTest/Hash/test_keccak.py:168
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Hash/test_keccak.py:168: UserWarning: Warning: skipping extended tests for Short Messages KAT 256
    test_vectors_256 =  load_test_vectors(("Hash", "keccak"),

lib/Crypto/SelfTest/Hash/test_keccak.py:173
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Hash/test_keccak.py:173: UserWarning: Warning: skipping extended tests for Long Messages KAT 256
    test_vectors_256 += load_test_vectors(("Hash", "keccak"),

lib/Crypto/SelfTest/Hash/test_keccak.py:193
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Hash/test_keccak.py:193: UserWarning: Warning: skipping extended tests for Short Messages KAT 384
    test_vectors_384 =  load_test_vectors(("Hash", "keccak"),

lib/Crypto/SelfTest/Hash/test_keccak.py:198
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Hash/test_keccak.py:198: UserWarning: Warning: skipping extended tests for Long Messages KAT 384
    test_vectors_384 += load_test_vectors(("Hash", "keccak"),

lib/Crypto/SelfTest/Hash/test_keccak.py:217
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Hash/test_keccak.py:217: UserWarning: Warning: skipping extended tests for Short Messages KAT 512
    test_vectors_512 =  load_test_vectors(("Hash", "keccak"),

lib/Crypto/SelfTest/Hash/test_keccak.py:222
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Hash/test_keccak.py:222: UserWarning: Warning: skipping extended tests for Long Messages KAT 512
    test_vectors_512 += load_test_vectors(("Hash", "keccak"),

../../../../../usr/lib64/python3.8/unittest/suite.py:92
  /usr/lib64/python3.8/unittest/suite.py:92: PytestCollectionWarning: cannot collect test class 'TestSuite' because it has a __init__ constructor (from: lib/Crypto/SelfTest/Protocol/test_SecretSharing.py)
    class TestSuite(BaseTestSuite):

lib/Crypto/SelfTest/PublicKey/test_ECC.py:756
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/PublicKey/test_ECC.py:756: UserWarning: Warning: skipping extended tests for P-192 tests from point-at-infinity.org
    tv_pai = load_test_vectors(("PublicKey", "ECC"),

lib/Crypto/SelfTest/PublicKey/test_ECC.py:777
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/PublicKey/test_ECC.py:777: UserWarning: Warning: skipping extended tests for P-224 tests from point-at-infinity.org
    tv_pai = load_test_vectors(("PublicKey", "ECC"),

lib/Crypto/SelfTest/PublicKey/test_ECC.py:798
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/PublicKey/test_ECC.py:798: UserWarning: Warning: skipping extended tests for P-256 tests from point-at-infinity.org
    tv_pai = load_test_vectors(("PublicKey", "ECC"),

lib/Crypto/SelfTest/PublicKey/test_ECC.py:819
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/PublicKey/test_ECC.py:819: UserWarning: Warning: skipping extended tests for P-384 tests from point-at-infinity.org
    tv_pai = load_test_vectors(("PublicKey", "ECC"),

lib/Crypto/SelfTest/PublicKey/test_ECC.py:840
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/PublicKey/test_ECC.py:840: UserWarning: Warning: skipping extended tests for P-521 tests from point-at-infinity.org
    tv_pai = load_test_vectors(("PublicKey", "ECC"),

lib/Crypto/SelfTest/Signature/test_dss.py:159
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_dss.py:159: UserWarning: Warning: skipping extended tests for Signature Verification 186-3
    test_vectors_verify = load_test_vectors(("Signature", "DSA"),

lib/Crypto/SelfTest/Signature/test_dss.py:197
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_dss.py:197: UserWarning: Warning: skipping extended tests for Signature Creation 186-3
    test_vectors_sign = load_test_vectors(("Signature", "DSA"),

lib/Crypto/SelfTest/Signature/test_dss.py:303
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_dss.py:303: UserWarning: Warning: skipping extended tests for ECDSA Signature Verification 186-3
    test_vectors_verify = load_test_vectors(("Signature", "ECDSA"),

lib/Crypto/SelfTest/Signature/test_dss.py:310
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_dss.py:310: UserWarning: Warning: skipping extended tests for ECDSA Signature Verification 186-3
    test_vectors_verify += load_test_vectors(("Signature", "ECDSA"),

lib/Crypto/SelfTest/Signature/test_dss.py:353
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_dss.py:353: UserWarning: Warning: skipping extended tests for ECDSA Signature Verification 186-3
    test_vectors_sign = load_test_vectors(("Signature", "ECDSA"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:70
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:70: UserWarning: Warning: skipping extended tests for Signature Verification 186-3
    test_vectors_verify = load_test_vectors(("Signature", "PKCS1-v1.5"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:117
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:117: UserWarning: Warning: skipping extended tests for Signature Generation 186-2
    test_vectors_sign  = load_test_vectors(("Signature", "PKCS1-v1.5"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:122
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:122: UserWarning: Warning: skipping extended tests for Signature Generation 186-3
    test_vectors_sign += load_test_vectors(("Signature", "PKCS1-v1.5"),

lib/Crypto/SelfTest/Signature/test_pss.py:117
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_pss.py:117: UserWarning: Warning: skipping extended tests for Signature Verification 186-3
    test_vectors_verify = load_test_vectors(("Signature", "PKCS1-PSS"),

lib/Crypto/SelfTest/Signature/test_pss.py:169
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_pss.py:169: UserWarning: Warning: skipping extended tests for Signature Generation 186-2
    test_vectors_sign = load_test_vectors(("Signature", "PKCS1-PSS"),

lib/Crypto/SelfTest/Signature/test_pss.py:174
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_pss.py:174: UserWarning: Warning: skipping extended tests for Signature Generation 186-3
    test_vectors_sign += load_test_vectors(("Signature", "PKCS1-PSS"),

-- Docs: https://docs.pytest.org/en/stable/warnings.html
========================================================================= short test summary info ==========================================================================
ERROR lib/Crypto/SelfTest/Cipher/test_Salsa20.py
ERROR lib/Crypto/SelfTest/Hash/test_Poly1305.py
ERROR lib/Crypto/SelfTest/Hash/test_SHA512.py
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Interrupted: 3 errors during collection !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
====================================================================== 35 warnings, 3 errors in 1.61s ======================================================================
@kloczek
Copy link
Author

kloczek commented Feb 11, 2022

After add above three files to --ignore list

+ PYTHONPATH=/home/tkloczko/rpmbuild/BUILDROOT/python-pycryptodome-3.14.1-2.fc35.x86_64/usr/lib64/python3.8/site-packages:/home/tkloczko/rpmbuild/BUILDROOT/python-pycryptodome-3.14.1-2.fc35.x86_64/usr/lib/python3.8/site-packages
+ /usr/bin/pytest -ra --import-mode=importlib --ignore lib/Crypto/SelfTest/Cipher/test_Salsa20.py --ignore lib/Crypto/SelfTest/Hash/test_Poly1305.py --ignore lib/Crypto/SelfTest/Hash/test_SHA512.py
=========================================================================== test session starts ============================================================================
platform linux -- Python 3.8.12, pytest-6.2.5, py-1.11.0, pluggy-1.0.0
rootdir: /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1
collected 1662 items

lib/Crypto/SelfTest/Cipher/test_AES.py ...                                                                                                                           [  0%]
lib/Crypto/SelfTest/Cipher/test_ARC2.py ...                                                                                                                          [  0%]
lib/Crypto/SelfTest/Cipher/test_ARC4.py ....                                                                                                                         [  0%]
lib/Crypto/SelfTest/Cipher/test_Blowfish.py ..                                                                                                                       [  0%]
lib/Crypto/SelfTest/Cipher/test_CAST.py ..                                                                                                                           [  0%]
lib/Crypto/SelfTest/Cipher/test_CBC.py FFFFFFFFFFFFFFFFFFFFF.................................................                                                        [  5%]
lib/Crypto/SelfTest/Cipher/test_CCM.py .......................................                                                                                       [  7%]
lib/Crypto/SelfTest/Cipher/test_CFB.py ........................................................................FFFFFFFFFFFFFFFFFFFFF                                 [ 12%]
lib/Crypto/SelfTest/Cipher/test_CTR.py .........................                                                                                                     [ 14%]
lib/Crypto/SelfTest/Cipher/test_ChaCha20.py .................                                                                                                        [ 15%]
lib/Crypto/SelfTest/Cipher/test_ChaCha20_Poly1305.py .................................                                                                               [ 17%]
lib/Crypto/SelfTest/Cipher/test_DES.py ..                                                                                                                            [ 17%]
lib/Crypto/SelfTest/Cipher/test_DES3.py .....                                                                                                                        [ 17%]
lib/Crypto/SelfTest/Cipher/test_EAX.py ............................................................................................................................. [ 25%]
.......................................................................................................                                                              [ 31%]
lib/Crypto/SelfTest/Cipher/test_GCM.py ....................................E                                                                                         [ 33%]
lib/Crypto/SelfTest/Cipher/test_OCB.py .................................                                                                                             [ 35%]
lib/Crypto/SelfTest/Cipher/test_OFB.py .................................................FFFFFFFFFFFFFFFFFFFFF                                                        [ 40%]
lib/Crypto/SelfTest/Cipher/test_OpenPGP.py .......................FFFFFFFFFFFFFFFFFFFFF                                                                              [ 42%]
lib/Crypto/SelfTest/Cipher/test_SIV.py ...........................EEEE                                                                                               [ 44%]
lib/Crypto/SelfTest/Cipher/test_pkcs1_15.py .........E                                                                                                               [ 45%]
lib/Crypto/SelfTest/Cipher/test_pkcs1_oaep.py ..........E                                                                                                            [ 45%]
lib/Crypto/SelfTest/Hash/test_BLAKE2.py FFFFFFFFFFFFF..........................F..F..F..                                                                             [ 48%]
lib/Crypto/SelfTest/Hash/test_CMAC.py ......                                                                                                                         [ 49%]
lib/Crypto/SelfTest/Hash/test_HMAC.py F...                                                                                                                           [ 49%]
lib/Crypto/SelfTest/Hash/test_KMAC.py FFFFFFFFFFFFF...........................                                                                                       [ 51%]
lib/Crypto/SelfTest/Hash/test_KangarooTwelve.py ......................                                                                                               [ 53%]
lib/Crypto/SelfTest/Hash/test_MD5.py .                                                                                                                               [ 53%]
lib/Crypto/SelfTest/Hash/test_SHA256.py .                                                                                                                            [ 53%]
lib/Crypto/SelfTest/Hash/test_SHA3_224.py .                                                                                                                          [ 53%]
lib/Crypto/SelfTest/Hash/test_SHA3_256.py .                                                                                                                          [ 53%]
lib/Crypto/SelfTest/Hash/test_SHA3_384.py .                                                                                                                          [ 53%]
lib/Crypto/SelfTest/Hash/test_SHA3_512.py .                                                                                                                          [ 53%]
lib/Crypto/SelfTest/Hash/test_SHAKE.py FFFFF..........                                                                                                               [ 54%]
lib/Crypto/SelfTest/Hash/test_TupleHash.py FFFFFFFFFF.....................                                                                                           [ 56%]
lib/Crypto/SelfTest/Hash/test_cSHAKE.py .F.FFFFF................                                                                                                     [ 57%]
lib/Crypto/SelfTest/Hash/test_keccak.py ........                                                                                                                     [ 58%]
lib/Crypto/SelfTest/IO/test_PBES.py ......                                                                                                                           [ 58%]
lib/Crypto/SelfTest/IO/test_PKCS8.py ....                                                                                                                            [ 58%]
lib/Crypto/SelfTest/Math/test_Numbers.py FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF.....................................................                      [ 64%]
lib/Crypto/SelfTest/Math/test_Primality.py ......E                                                                                                                   [ 65%]
lib/Crypto/SelfTest/Math/test_modexp.py ............                                                                                                                 [ 66%]
lib/Crypto/SelfTest/Protocol/test_KDF.py .......................                                                                                                     [ 67%]
lib/Crypto/SelfTest/Protocol/test_SecretSharing.py ...........                                                                                                       [ 68%]
lib/Crypto/SelfTest/Protocol/test_rfc1751.py ..                                                                                                                      [ 68%]
lib/Crypto/SelfTest/PublicKey/test_DSA.py ..........                                                                                                                 [ 68%]
lib/Crypto/SelfTest/PublicKey/test_ECC.py ...........................................................................................                                [ 74%]
lib/Crypto/SelfTest/PublicKey/test_ElGamal.py .......                                                                                                                [ 74%]
lib/Crypto/SelfTest/PublicKey/test_RSA.py .................                                                                                                          [ 75%]
lib/Crypto/SelfTest/PublicKey/test_import_DSA.py ..........................                                                                                          [ 77%]
lib/Crypto/SelfTest/PublicKey/test_import_ECC.py .EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE [ 84%]
EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE                                                                                                                 [ 87%]
lib/Crypto/SelfTest/PublicKey/test_import_RSA.py ......................................                                                                              [ 89%]
lib/Crypto/SelfTest/Random/test_random.py .                                                                                                                          [ 89%]
lib/Crypto/SelfTest/Signature/test_dss.py ......................EE                                                                                                   [ 91%]
lib/Crypto/SelfTest/Signature/test_pkcs1_15.py ......                                                                                                                [ 91%]
lib/Crypto/SelfTest/Signature/test_pss.py ........                                                                                                                   [ 91%]
lib/Crypto/SelfTest/Util/test_Counter.py ......                                                                                                                      [ 92%]
lib/Crypto/SelfTest/Util/test_Padding.py .................                                                                                                           [ 93%]
lib/Crypto/SelfTest/Util/test_asn1.py ...........................................................................                                                    [ 97%]
lib/Crypto/SelfTest/Util/test_number.py ........                                                                                                                     [ 98%]
lib/Crypto/SelfTest/Util/test_rfc1751.py ..                                                                                                                          [ 98%]
lib/Crypto/SelfTest/Util/test_strxor.py ..........................                                                                                                   [100%]

[..]

============================================================================= warnings summary =============================================================================
lib/Crypto/SelfTest/Cipher/test_DES3.py:60
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Cipher/test_DES3.py:60: UserWarning: Warning: skipping extended tests for TDES ECB (TECBMMT2.rsp)
    test_vectors = load_test_vectors(

lib/Crypto/SelfTest/Cipher/test_DES3.py:60
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Cipher/test_DES3.py:60: UserWarning: Warning: skipping extended tests for TDES ECB (TECBMMT3.rsp)
    test_vectors = load_test_vectors(

lib/Crypto/SelfTest/Cipher/test_GCM.py:783
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Cipher/test_GCM.py:783: UserWarning: Warning: skipping extended tests for GCM decrypt
    test_vectors_nist = load_test_vectors(

lib/Crypto/SelfTest/Cipher/test_GCM.py:789
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Cipher/test_GCM.py:789: UserWarning: Warning: skipping extended tests for GCM encrypt
    test_vectors_nist += load_test_vectors(

lib/Crypto/SelfTest/Hash/test_SHAKE.py:94
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Hash/test_SHAKE.py:94: UserWarning: Warning: skipping extended tests for Short Messages KAT SHAKE128
    test_vectors_128 = load_test_vectors(("Hash", "SHA3"),

lib/Crypto/SelfTest/Hash/test_SHAKE.py:113
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Hash/test_SHAKE.py:113: UserWarning: Warning: skipping extended tests for Short Messages KAT SHAKE256
    test_vectors_256 = load_test_vectors(("Hash", "SHA3"),

lib/Crypto/SelfTest/Hash/test_cSHAKE.py:140
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Hash/test_cSHAKE.py:140: UserWarning: Warning: skipping extended tests for Short Message Samples cSHAKE128
    test_vectors = load_test_vectors(("Hash", "SHA3"), file, descr,

lib/Crypto/SelfTest/Hash/test_cSHAKE.py:140
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Hash/test_cSHAKE.py:140: UserWarning: Warning: skipping extended tests for Short Message Samples cSHAKE256
    test_vectors = load_test_vectors(("Hash", "SHA3"), file, descr,

lib/Crypto/SelfTest/Hash/test_cSHAKE.py:140
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Hash/test_cSHAKE.py:140: UserWarning: Warning: skipping extended tests for Custom Message Samples cSHAKE128
    test_vectors = load_test_vectors(("Hash", "SHA3"), file, descr,

lib/Crypto/SelfTest/Hash/test_cSHAKE.py:140
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Hash/test_cSHAKE.py:140: UserWarning: Warning: skipping extended tests for Custom Message Samples cSHAKE256
    test_vectors = load_test_vectors(("Hash", "SHA3"), file, descr,

lib/Crypto/SelfTest/Hash/test_keccak.py:144
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Hash/test_keccak.py:144: UserWarning: Warning: skipping extended tests for Short Messages KAT 224
    test_vectors_224 =  load_test_vectors(("Hash", "keccak"),

lib/Crypto/SelfTest/Hash/test_keccak.py:149
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Hash/test_keccak.py:149: UserWarning: Warning: skipping extended tests for Long Messages KAT 224
    test_vectors_224 += load_test_vectors(("Hash", "keccak"),

lib/Crypto/SelfTest/Hash/test_keccak.py:168
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Hash/test_keccak.py:168: UserWarning: Warning: skipping extended tests for Short Messages KAT 256
    test_vectors_256 =  load_test_vectors(("Hash", "keccak"),

lib/Crypto/SelfTest/Hash/test_keccak.py:173
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Hash/test_keccak.py:173: UserWarning: Warning: skipping extended tests for Long Messages KAT 256
    test_vectors_256 += load_test_vectors(("Hash", "keccak"),

lib/Crypto/SelfTest/Hash/test_keccak.py:193
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Hash/test_keccak.py:193: UserWarning: Warning: skipping extended tests for Short Messages KAT 384
    test_vectors_384 =  load_test_vectors(("Hash", "keccak"),

lib/Crypto/SelfTest/Hash/test_keccak.py:198
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Hash/test_keccak.py:198: UserWarning: Warning: skipping extended tests for Long Messages KAT 384
    test_vectors_384 += load_test_vectors(("Hash", "keccak"),

lib/Crypto/SelfTest/Hash/test_keccak.py:217
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Hash/test_keccak.py:217: UserWarning: Warning: skipping extended tests for Short Messages KAT 512
    test_vectors_512 =  load_test_vectors(("Hash", "keccak"),

lib/Crypto/SelfTest/Hash/test_keccak.py:222
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Hash/test_keccak.py:222: UserWarning: Warning: skipping extended tests for Long Messages KAT 512
    test_vectors_512 += load_test_vectors(("Hash", "keccak"),

../../../../../usr/lib64/python3.8/unittest/suite.py:92
  /usr/lib64/python3.8/unittest/suite.py:92: PytestCollectionWarning: cannot collect test class 'TestSuite' because it has a __init__ constructor (from: lib/Crypto/SelfTest/Protocol/test_SecretSharing.py)
    class TestSuite(BaseTestSuite):

lib/Crypto/SelfTest/PublicKey/test_ECC.py:756
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/PublicKey/test_ECC.py:756: UserWarning: Warning: skipping extended tests for P-192 tests from point-at-infinity.org
    tv_pai = load_test_vectors(("PublicKey", "ECC"),

lib/Crypto/SelfTest/PublicKey/test_ECC.py:777
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/PublicKey/test_ECC.py:777: UserWarning: Warning: skipping extended tests for P-224 tests from point-at-infinity.org
    tv_pai = load_test_vectors(("PublicKey", "ECC"),

lib/Crypto/SelfTest/PublicKey/test_ECC.py:798
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/PublicKey/test_ECC.py:798: UserWarning: Warning: skipping extended tests for P-256 tests from point-at-infinity.org
    tv_pai = load_test_vectors(("PublicKey", "ECC"),

lib/Crypto/SelfTest/PublicKey/test_ECC.py:819
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/PublicKey/test_ECC.py:819: UserWarning: Warning: skipping extended tests for P-384 tests from point-at-infinity.org
    tv_pai = load_test_vectors(("PublicKey", "ECC"),

lib/Crypto/SelfTest/PublicKey/test_ECC.py:840
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/PublicKey/test_ECC.py:840: UserWarning: Warning: skipping extended tests for P-521 tests from point-at-infinity.org
    tv_pai = load_test_vectors(("PublicKey", "ECC"),

lib/Crypto/SelfTest/Signature/test_dss.py:159
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_dss.py:159: UserWarning: Warning: skipping extended tests for Signature Verification 186-3
    test_vectors_verify = load_test_vectors(("Signature", "DSA"),

lib/Crypto/SelfTest/Signature/test_dss.py:197
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_dss.py:197: UserWarning: Warning: skipping extended tests for Signature Creation 186-3
    test_vectors_sign = load_test_vectors(("Signature", "DSA"),

lib/Crypto/SelfTest/Signature/test_dss.py:303
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_dss.py:303: UserWarning: Warning: skipping extended tests for ECDSA Signature Verification 186-3
    test_vectors_verify = load_test_vectors(("Signature", "ECDSA"),

lib/Crypto/SelfTest/Signature/test_dss.py:310
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_dss.py:310: UserWarning: Warning: skipping extended tests for ECDSA Signature Verification 186-3
    test_vectors_verify += load_test_vectors(("Signature", "ECDSA"),

lib/Crypto/SelfTest/Signature/test_dss.py:353
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_dss.py:353: UserWarning: Warning: skipping extended tests for ECDSA Signature Verification 186-3
    test_vectors_sign = load_test_vectors(("Signature", "ECDSA"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:70
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:70: UserWarning: Warning: skipping extended tests for Signature Verification 186-3
    test_vectors_verify = load_test_vectors(("Signature", "PKCS1-v1.5"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:117
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:117: UserWarning: Warning: skipping extended tests for Signature Generation 186-2
    test_vectors_sign  = load_test_vectors(("Signature", "PKCS1-v1.5"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:122
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:122: UserWarning: Warning: skipping extended tests for Signature Generation 186-3
    test_vectors_sign += load_test_vectors(("Signature", "PKCS1-v1.5"),

lib/Crypto/SelfTest/Signature/test_pss.py:117
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_pss.py:117: UserWarning: Warning: skipping extended tests for Signature Verification 186-3
    test_vectors_verify = load_test_vectors(("Signature", "PKCS1-PSS"),

lib/Crypto/SelfTest/Signature/test_pss.py:169
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_pss.py:169: UserWarning: Warning: skipping extended tests for Signature Generation 186-2
    test_vectors_sign = load_test_vectors(("Signature", "PKCS1-PSS"),

lib/Crypto/SelfTest/Signature/test_pss.py:174
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_pss.py:174: UserWarning: Warning: skipping extended tests for Signature Generation 186-3
    test_vectors_sign += load_test_vectors(("Signature", "PKCS1-PSS"),

lib/Crypto/SelfTest/Cipher/test_CBC.py: 15 warnings
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Cipher/test_CBC.py:317: UserWarning: Warning: skipping extended tests for AES CBC KAT
    test_vectors = load_test_vectors(("Cipher", "AES"),

lib/Crypto/SelfTest/Cipher/test_CBC.py::NistCbcVectors::test_AES_CBCMCT128.rsp
lib/Crypto/SelfTest/Cipher/test_CBC.py::NistCbcVectors::test_AES_CBCMCT192.rsp
lib/Crypto/SelfTest/Cipher/test_CBC.py::NistCbcVectors::test_AES_CBCMCT256.rsp
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Cipher/test_CBC.py:345: UserWarning: Warning: skipping extended tests for AES CBC Montecarlo
    test_vectors = load_test_vectors(("Cipher", "AES"),

lib/Crypto/SelfTest/Cipher/test_CBC.py::NistCbcVectors::test_TDES_TCBCMMT2.rsp
lib/Crypto/SelfTest/Cipher/test_CBC.py::NistCbcVectors::test_TDES_TCBCMMT3.rsp
lib/Crypto/SelfTest/Cipher/test_CBC.py::NistCbcVectors::test_TDES_TCBCinvperm.rsp
lib/Crypto/SelfTest/Cipher/test_CBC.py::NistCbcVectors::test_TDES_TCBCpermop.rsp
lib/Crypto/SelfTest/Cipher/test_CBC.py::NistCbcVectors::test_TDES_TCBCsubtab.rsp
lib/Crypto/SelfTest/Cipher/test_CBC.py::NistCbcVectors::test_TDES_TCBCvarkey.rsp
lib/Crypto/SelfTest/Cipher/test_CBC.py::NistCbcVectors::test_TDES_TCBCvartext.rsp
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Cipher/test_CBC.py:380: UserWarning: Warning: skipping extended tests for TDES CBC KAT
    test_vectors = load_test_vectors(("Cipher", "TDES"),

lib/Crypto/SelfTest/Cipher/test_CCM.py::TestVectorsWycheproof::test_corrupt_decrypt
lib/Crypto/SelfTest/Cipher/test_CCM.py::TestVectorsWycheproof::test_decrypt
lib/Crypto/SelfTest/Cipher/test_CCM.py::TestVectorsWycheproof::test_encrypt
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Cipher/test_CCM.py:843: UserWarning: Warning: skipping extended tests for Wycheproof AES CCM
    self.tv = load_test_vectors_wycheproof(("Cipher", "wycheproof"),

lib/Crypto/SelfTest/Cipher/test_CFB.py: 15 warnings
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Cipher/test_CFB.py:106: UserWarning: Warning: skipping extended tests for AES CFB128 KAT
    test_vectors = load_test_vectors(("Cipher", "AES"),

lib/Crypto/SelfTest/Cipher/test_CFB.py::NistCfbVectors::test_AES_CFB128MCT128.rsp
lib/Crypto/SelfTest/Cipher/test_CFB.py::NistCfbVectors::test_AES_CFB128MCT192.rsp
lib/Crypto/SelfTest/Cipher/test_CFB.py::NistCfbVectors::test_AES_CFB128MCT256.rsp
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Cipher/test_CFB.py:134: UserWarning: Warning: skipping extended tests for AES CFB128 Montecarlo
    test_vectors = load_test_vectors(("Cipher", "AES"),

lib/Crypto/SelfTest/Cipher/test_CFB.py: 15 warnings
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Cipher/test_CFB.py:106: UserWarning: Warning: skipping extended tests for AES CFB8 KAT
    test_vectors = load_test_vectors(("Cipher", "AES"),

lib/Crypto/SelfTest/Cipher/test_CFB.py::NistCfbVectors::test_AES_CFB8MCT128.rsp
lib/Crypto/SelfTest/Cipher/test_CFB.py::NistCfbVectors::test_AES_CFB8MCT192.rsp
lib/Crypto/SelfTest/Cipher/test_CFB.py::NistCfbVectors::test_AES_CFB8MCT256.rsp
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Cipher/test_CFB.py:134: UserWarning: Warning: skipping extended tests for AES CFB8 Montecarlo
    test_vectors = load_test_vectors(("Cipher", "AES"),

lib/Crypto/SelfTest/Cipher/test_CFB.py::NistCfbVectors::test_TDES_TCFB64MMT2.rsp
lib/Crypto/SelfTest/Cipher/test_CFB.py::NistCfbVectors::test_TDES_TCFB64MMT3.rsp
lib/Crypto/SelfTest/Cipher/test_CFB.py::NistCfbVectors::test_TDES_TCFB64invperm.rsp
lib/Crypto/SelfTest/Cipher/test_CFB.py::NistCfbVectors::test_TDES_TCFB64permop.rsp
lib/Crypto/SelfTest/Cipher/test_CFB.py::NistCfbVectors::test_TDES_TCFB64subtab.rsp
lib/Crypto/SelfTest/Cipher/test_CFB.py::NistCfbVectors::test_TDES_TCFB64varkey.rsp
lib/Crypto/SelfTest/Cipher/test_CFB.py::NistCfbVectors::test_TDES_TCFB64vartext.rsp
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Cipher/test_CFB.py:185: UserWarning: Warning: skipping extended tests for TDES CFB64 KAT
    test_vectors = load_test_vectors(("Cipher", "TDES"),

lib/Crypto/SelfTest/Cipher/test_ChaCha20_Poly1305.py::TestVectorsWycheproof::test_corrupt_decrypt
lib/Crypto/SelfTest/Cipher/test_ChaCha20_Poly1305.py::TestVectorsWycheproof::test_decrypt
lib/Crypto/SelfTest/Cipher/test_ChaCha20_Poly1305.py::TestVectorsWycheproof::test_encrypt
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Cipher/test_ChaCha20_Poly1305.py:635: UserWarning: Warning: skipping extended tests for Wycheproof ChaCha20-Poly1305
    result = load_test_vectors_wycheproof(("Cipher", "wycheproof"),

lib/Crypto/SelfTest/Cipher/test_EAX.py::TestVectorsWycheproof::test_corrupt_decrypt
lib/Crypto/SelfTest/Cipher/test_EAX.py::TestVectorsWycheproof::test_decrypt
lib/Crypto/SelfTest/Cipher/test_EAX.py::TestVectorsWycheproof::test_encrypt
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Cipher/test_EAX.py:660: UserWarning: Warning: skipping extended tests for Wycheproof EAX
    self.tv = load_test_vectors_wycheproof(("Cipher", "wycheproof"),

lib/Crypto/SelfTest/Cipher/test_GCM.py::TestVectorsWycheproof::test_corrupt_decrypt
lib/Crypto/SelfTest/Cipher/test_GCM.py::TestVectorsWycheproof::test_decrypt
lib/Crypto/SelfTest/Cipher/test_GCM.py::TestVectorsWycheproof::test_encrypt
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Cipher/test_GCM.py:831: UserWarning: Warning: skipping extended tests for Wycheproof GCM
    self.tv = load_test_vectors_wycheproof(("Cipher", "wycheproof"),

lib/Crypto/SelfTest/Cipher/test_OFB.py: 15 warnings
  /home/tkloczko/rpmbuild/BUILDROOT/python-pycryptodome-3.14.1-2.fc35.x86_64/usr/lib64/python3.8/site-packages/Crypto/SelfTest/Cipher/test_CBC.py:317: UserWarning: Warning: skipping extended tests for AES CBC KAT
    test_vectors = load_test_vectors(("Cipher", "AES"),

lib/Crypto/SelfTest/Cipher/test_OFB.py::NistOfbVectors::test_AES_OFBMCT128.rsp
lib/Crypto/SelfTest/Cipher/test_OFB.py::NistOfbVectors::test_AES_OFBMCT192.rsp
lib/Crypto/SelfTest/Cipher/test_OFB.py::NistOfbVectors::test_AES_OFBMCT256.rsp
  /home/tkloczko/rpmbuild/BUILDROOT/python-pycryptodome-3.14.1-2.fc35.x86_64/usr/lib64/python3.8/site-packages/Crypto/SelfTest/Cipher/test_CBC.py:345: UserWarning: Warning: skipping extended tests for AES CBC Montecarlo
    test_vectors = load_test_vectors(("Cipher", "AES"),

lib/Crypto/SelfTest/Cipher/test_OFB.py::NistOfbVectors::test_TDES_TOFBMMT2.rsp
lib/Crypto/SelfTest/Cipher/test_OFB.py::NistOfbVectors::test_TDES_TOFBMMT3.rsp
lib/Crypto/SelfTest/Cipher/test_OFB.py::NistOfbVectors::test_TDES_TOFBinvperm.rsp
lib/Crypto/SelfTest/Cipher/test_OFB.py::NistOfbVectors::test_TDES_TOFBpermop.rsp
lib/Crypto/SelfTest/Cipher/test_OFB.py::NistOfbVectors::test_TDES_TOFBsubtab.rsp
lib/Crypto/SelfTest/Cipher/test_OFB.py::NistOfbVectors::test_TDES_TOFBvarkey.rsp
lib/Crypto/SelfTest/Cipher/test_OFB.py::NistOfbVectors::test_TDES_TOFBvartext.rsp
  /home/tkloczko/rpmbuild/BUILDROOT/python-pycryptodome-3.14.1-2.fc35.x86_64/usr/lib64/python3.8/site-packages/Crypto/SelfTest/Cipher/test_CBC.py:380: UserWarning: Warning: skipping extended tests for TDES CBC KAT
    test_vectors = load_test_vectors(("Cipher", "TDES"),

lib/Crypto/SelfTest/Hash/test_BLAKE2.py::Blake2bOfficialTestVector::runTest
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Hash/test_BLAKE2.py:305: UserWarning: Warning: skipping extended tests for BLAKE2b
    warnings.warn("Warning: skipping extended tests for %s" % self.name,

lib/Crypto/SelfTest/Hash/test_BLAKE2.py::Blake2sOfficialTestVector::runTest
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Hash/test_BLAKE2.py:305: UserWarning: Warning: skipping extended tests for BLAKE2s
    warnings.warn("Warning: skipping extended tests for %s" % self.name,

lib/Crypto/SelfTest/Hash/test_BLAKE2.py::Blake2bTestVector1::runTest
lib/Crypto/SelfTest/Hash/test_BLAKE2.py::Blake2bTestVector2::runTest
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Hash/test_BLAKE2.py:363: UserWarning: Warning: skipping extended tests for BLAKE2b
    warnings.warn("Warning: skipping extended tests for %s" % self.name,

lib/Crypto/SelfTest/Hash/test_BLAKE2.py::Blake2sTestVector1::runTest
lib/Crypto/SelfTest/Hash/test_BLAKE2.py::Blake2sTestVector2::runTest
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Hash/test_BLAKE2.py:363: UserWarning: Warning: skipping extended tests for BLAKE2s
    warnings.warn("Warning: skipping extended tests for %s" % self.name,

lib/Crypto/SelfTest/Hash/test_CMAC.py::TestVectorsWycheproof::test_create_mac
lib/Crypto/SelfTest/Hash/test_CMAC.py::TestVectorsWycheproof::test_verify_mac
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Hash/test_CMAC.py:373: UserWarning: Warning: skipping extended tests for Wycheproof CMAC
    self.tv = load_test_vectors_wycheproof(("Hash", "wycheproof"),

lib/Crypto/SelfTest/Protocol/test_KDF.py::TestVectorsHKDFWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Protocol/test_KDF.py:670: UserWarning: Warning: skipping extended tests for Wycheproof HMAC (hkdf_sha1_test.json)
    result = load_test_vectors_wycheproof(("Protocol", "wycheproof"),

lib/Crypto/SelfTest/Protocol/test_KDF.py::TestVectorsHKDFWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Protocol/test_KDF.py:670: UserWarning: Warning: skipping extended tests for Wycheproof HMAC (hkdf_sha256_test.json)
    result = load_test_vectors_wycheproof(("Protocol", "wycheproof"),

lib/Crypto/SelfTest/Protocol/test_KDF.py::TestVectorsHKDFWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Protocol/test_KDF.py:670: UserWarning: Warning: skipping extended tests for Wycheproof HMAC (hkdf_sha384_test.json)
    result = load_test_vectors_wycheproof(("Protocol", "wycheproof"),

lib/Crypto/SelfTest/Protocol/test_KDF.py::TestVectorsHKDFWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Protocol/test_KDF.py:670: UserWarning: Warning: skipping extended tests for Wycheproof HMAC (hkdf_sha512_test.json)
    result = load_test_vectors_wycheproof(("Protocol", "wycheproof"),

lib/Crypto/SelfTest/PublicKey/test_import_ECC.py: 30 warnings
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/PublicKey/test_import_ECC.py:89: UserWarning: Warning: skipping extended tests for ECC
    key_lines = load_file("ecc_p192.txt").splitlines()

lib/Crypto/SelfTest/PublicKey/test_import_ECC.py: 30 warnings
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/PublicKey/test_import_ECC.py:102: UserWarning: Warning: skipping extended tests for ECC
    key_lines = load_file("ecc_p224.txt").splitlines()

lib/Crypto/SelfTest/PublicKey/test_import_ECC.py: 36 warnings
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/PublicKey/test_import_ECC.py:115: UserWarning: Warning: skipping extended tests for ECC
    key_lines = load_file("ecc_p256.txt").splitlines()

lib/Crypto/SelfTest/PublicKey/test_import_ECC.py: 35 warnings
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/PublicKey/test_import_ECC.py:128: UserWarning: Warning: skipping extended tests for ECC
    key_lines = load_file("ecc_p384.txt").splitlines()

lib/Crypto/SelfTest/PublicKey/test_import_ECC.py: 35 warnings
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/PublicKey/test_import_ECC.py:141: UserWarning: Warning: skipping extended tests for ECC
    key_lines = load_file("ecc_p521.txt").splitlines()

lib/Crypto/SelfTest/PublicKey/test_import_RSA.py::TestImport_2048::test_import_openssh_private_clear
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/PublicKey/test_import_RSA.py:549: UserWarning: Warning: skipping extended tests for RSA
    key_file = load_file("rsa2048_private_openssh.pem")

lib/Crypto/SelfTest/PublicKey/test_import_RSA.py::TestImport_2048::test_import_openssh_private_clear
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/PublicKey/test_import_RSA.py:550: UserWarning: Warning: skipping extended tests for RSA
    key_file_old = load_file("rsa2048_private_openssh_old.pem")

lib/Crypto/SelfTest/PublicKey/test_import_RSA.py::TestImport_2048::test_import_openssh_private_password
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/PublicKey/test_import_RSA.py:562: UserWarning: Warning: skipping extended tests for RSA
    key_file = load_file("rsa2048_private_openssh_pwd.pem")

lib/Crypto/SelfTest/PublicKey/test_import_RSA.py::TestImport_2048::test_import_openssh_private_password
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/PublicKey/test_import_RSA.py:563: UserWarning: Warning: skipping extended tests for RSA
    key_file_old = load_file("rsa2048_private_openssh_pwd_old.pem")

lib/Crypto/SelfTest/PublicKey/test_import_RSA.py::TestImport_2048::test_import_openssh_public
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/PublicKey/test_import_RSA.py:537: UserWarning: Warning: skipping extended tests for RSA
    key_file_ref = load_file("rsa2048_private.pem")

lib/Crypto/SelfTest/PublicKey/test_import_RSA.py::TestImport_2048::test_import_openssh_public
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/PublicKey/test_import_RSA.py:538: UserWarning: Warning: skipping extended tests for RSA
    key_file = load_file("rsa2048_public_openssh.txt")

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py::TestVectorsWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:293: UserWarning: Warning: skipping extended tests for Wycheproof PKCS#1v1.5 signature (rsa_sig_gen_misc_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py::TestVectorsWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:293: UserWarning: Warning: skipping extended tests for Wycheproof PKCS#1v1.5 signature (rsa_signature_2048_sha224_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py::TestVectorsWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:293: UserWarning: Warning: skipping extended tests for Wycheproof PKCS#1v1.5 signature (rsa_signature_2048_sha256_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py::TestVectorsWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:293: UserWarning: Warning: skipping extended tests for Wycheproof PKCS#1v1.5 signature (rsa_signature_2048_sha384_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py::TestVectorsWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:293: UserWarning: Warning: skipping extended tests for Wycheproof PKCS#1v1.5 signature (rsa_signature_2048_sha3_224_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py::TestVectorsWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:293: UserWarning: Warning: skipping extended tests for Wycheproof PKCS#1v1.5 signature (rsa_signature_2048_sha3_256_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py::TestVectorsWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:293: UserWarning: Warning: skipping extended tests for Wycheproof PKCS#1v1.5 signature (rsa_signature_2048_sha3_384_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py::TestVectorsWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:293: UserWarning: Warning: skipping extended tests for Wycheproof PKCS#1v1.5 signature (rsa_signature_2048_sha3_512_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py::TestVectorsWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:293: UserWarning: Warning: skipping extended tests for Wycheproof PKCS#1v1.5 signature (rsa_signature_2048_sha512_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py::TestVectorsWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:293: UserWarning: Warning: skipping extended tests for Wycheproof PKCS#1v1.5 signature (rsa_signature_2048_sha512_224_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py::TestVectorsWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:293: UserWarning: Warning: skipping extended tests for Wycheproof PKCS#1v1.5 signature (rsa_signature_2048_sha512_256_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py::TestVectorsWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:293: UserWarning: Warning: skipping extended tests for Wycheproof PKCS#1v1.5 signature (rsa_signature_3072_sha256_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py::TestVectorsWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:293: UserWarning: Warning: skipping extended tests for Wycheproof PKCS#1v1.5 signature (rsa_signature_3072_sha384_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py::TestVectorsWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:293: UserWarning: Warning: skipping extended tests for Wycheproof PKCS#1v1.5 signature (rsa_signature_3072_sha3_256_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py::TestVectorsWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:293: UserWarning: Warning: skipping extended tests for Wycheproof PKCS#1v1.5 signature (rsa_signature_3072_sha3_384_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py::TestVectorsWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:293: UserWarning: Warning: skipping extended tests for Wycheproof PKCS#1v1.5 signature (rsa_signature_3072_sha3_512_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py::TestVectorsWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:293: UserWarning: Warning: skipping extended tests for Wycheproof PKCS#1v1.5 signature (rsa_signature_3072_sha512_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py::TestVectorsWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:293: UserWarning: Warning: skipping extended tests for Wycheproof PKCS#1v1.5 signature (rsa_signature_3072_sha512_256_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py::TestVectorsWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:293: UserWarning: Warning: skipping extended tests for Wycheproof PKCS#1v1.5 signature (rsa_signature_4096_sha384_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py::TestVectorsWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:293: UserWarning: Warning: skipping extended tests for Wycheproof PKCS#1v1.5 signature (rsa_signature_4096_sha512_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py::TestVectorsWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:293: UserWarning: Warning: skipping extended tests for Wycheproof PKCS#1v1.5 signature (rsa_signature_4096_sha512_256_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py::TestVectorsWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:293: UserWarning: Warning: skipping extended tests for Wycheproof PKCS#1v1.5 signature (rsa_signature_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pss.py::TestVectorsPSSWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_pss.py:305: UserWarning: Warning: skipping extended tests for Wycheproof PSS signature (rsa_pss_2048_sha1_mgf1_20_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pss.py::TestVectorsPSSWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_pss.py:305: UserWarning: Warning: skipping extended tests for Wycheproof PSS signature (rsa_pss_2048_sha256_mgf1_0_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pss.py::TestVectorsPSSWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_pss.py:305: UserWarning: Warning: skipping extended tests for Wycheproof PSS signature (rsa_pss_2048_sha256_mgf1_32_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pss.py::TestVectorsPSSWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_pss.py:305: UserWarning: Warning: skipping extended tests for Wycheproof PSS signature (rsa_pss_2048_sha512_256_mgf1_28_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pss.py::TestVectorsPSSWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_pss.py:305: UserWarning: Warning: skipping extended tests for Wycheproof PSS signature (rsa_pss_2048_sha512_256_mgf1_32_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pss.py::TestVectorsPSSWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_pss.py:305: UserWarning: Warning: skipping extended tests for Wycheproof PSS signature (rsa_pss_3072_sha256_mgf1_32_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pss.py::TestVectorsPSSWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_pss.py:305: UserWarning: Warning: skipping extended tests for Wycheproof PSS signature (rsa_pss_4096_sha256_mgf1_32_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pss.py::TestVectorsPSSWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_pss.py:305: UserWarning: Warning: skipping extended tests for Wycheproof PSS signature (rsa_pss_4096_sha512_mgf1_32_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pss.py::TestVectorsPSSWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.14.1/lib/Crypto/SelfTest/Signature/test_pss.py:305: UserWarning: Warning: skipping extended tests for Wycheproof PSS signature (rsa_pss_misc_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

-- Docs: https://docs.pytest.org/en/stable/warnings.html
========================================================================= short test summary info ==========================================================================
ERROR lib/Crypto/SelfTest/Cipher/test_GCM.py::TestVariableLength::runTest - TypeError: __init__() takes 1 positional argument but 2 were given
ERROR lib/Crypto/SelfTest/Cipher/test_SIV.py::TestVectorsWycheproof::test_decrypt - TypeError: __init__() takes 1 positional argument but 2 were given
ERROR lib/Crypto/SelfTest/Cipher/test_SIV.py::TestVectorsWycheproof::test_encrypt - TypeError: __init__() takes 1 positional argument but 2 were given
ERROR lib/Crypto/SelfTest/Cipher/test_SIV.py::TestVectorsWycheproof2::test_decrypt - TypeError: __init__() takes 1 positional argument but 2 were given
ERROR lib/Crypto/SelfTest/Cipher/test_SIV.py::TestVectorsWycheproof2::test_encrypt - TypeError: __init__() takes 1 positional argument but 2 were given
ERROR lib/Crypto/SelfTest/Cipher/test_pkcs1_15.py::TestVectorsWycheproof::test_decrypt - TypeError: __init__() missing 1 required positional argument: 'skip_slow_tests'
ERROR lib/Crypto/SelfTest/Cipher/test_pkcs1_oaep.py::TestVectorsWycheproof::test_decrypt - TypeError: __init__() missing 1 required positional argument: 'skip_slow_tests'
ERROR lib/Crypto/SelfTest/Math/test_Primality.py::test_probable_prime
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P192::test_import_private_der - test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P192::test_import_private_pem - test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P192::test_import_private_pem_encrypted - test_import_ECC.MissingTestVectorException: Missing ecc_p192...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P192::test_import_private_pkcs8_clear - test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P192::test_import_private_pkcs8_encrypted_1 - test_import_ECC.MissingTestVectorException: Missing ecc_...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P192::test_import_private_pkcs8_encrypted_2 - test_import_ECC.MissingTestVectorException: Missing ecc_...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P192::test_import_private_pkcs8_in_pem_clear - test_import_ECC.MissingTestVectorException: Missing ecc...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P192::test_import_public_der - test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P192::test_import_public_pem - test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P192::test_import_sec1_compressed - test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P192::test_import_sec1_uncompressed - test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P192::test_import_x509_der - test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P192::test_import_x509_pem - test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P224::test_import_private_der - test_import_ECC.MissingTestVectorException: Missing ecc_p224.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P224::test_import_private_pem - test_import_ECC.MissingTestVectorException: Missing ecc_p224.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P224::test_import_private_pem_encrypted - test_import_ECC.MissingTestVectorException: Missing ecc_p224...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P224::test_import_private_pkcs8_clear - test_import_ECC.MissingTestVectorException: Missing ecc_p224.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P224::test_import_private_pkcs8_encrypted_1 - test_import_ECC.MissingTestVectorException: Missing ecc_...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P224::test_import_private_pkcs8_encrypted_2 - test_import_ECC.MissingTestVectorException: Missing ecc_...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P224::test_import_private_pkcs8_in_pem_clear - test_import_ECC.MissingTestVectorException: Missing ecc...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P224::test_import_public_der - test_import_ECC.MissingTestVectorException: Missing ecc_p224.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P224::test_import_public_pem - test_import_ECC.MissingTestVectorException: Missing ecc_p224.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P224::test_import_sec1_compressed - test_import_ECC.MissingTestVectorException: Missing ecc_p224.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P224::test_import_sec1_uncompressed - test_import_ECC.MissingTestVectorException: Missing ecc_p224.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P224::test_import_x509_der - test_import_ECC.MissingTestVectorException: Missing ecc_p224.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P224::test_import_x509_pem - test_import_ECC.MissingTestVectorException: Missing ecc_p224.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P256::test_import_openssh_private_clear - test_import_ECC.MissingTestVectorException: Missing ecc_p256...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P256::test_import_openssh_private_password - test_import_ECC.MissingTestVectorException: Missing ecc_p...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P256::test_import_openssh_public - test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P256::test_import_private_der - test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P256::test_import_private_pem - test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P256::test_import_private_pem_encrypted - test_import_ECC.MissingTestVectorException: Missing ecc_p256...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P256::test_import_private_pem_with_ecparams - test_import_ECC.MissingTestVectorException: Missing ecc_...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P256::test_import_private_pkcs8_clear - test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P256::test_import_private_pkcs8_encrypted_1 - test_import_ECC.MissingTestVectorException: Missing ecc_...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P256::test_import_private_pkcs8_encrypted_2 - test_import_ECC.MissingTestVectorException: Missing ecc_...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P256::test_import_private_pkcs8_in_pem_clear - test_import_ECC.MissingTestVectorException: Missing ecc...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P256::test_import_public_der - test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P256::test_import_public_pem - test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P256::test_import_sec1_compressed - test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P256::test_import_sec1_uncompressed - test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P256::test_import_x509_der - test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P256::test_import_x509_pem - test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P384::test_import_openssh_private_clear - test_import_ECC.MissingTestVectorException: Missing ecc_p384...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P384::test_import_openssh_private_password - test_import_ECC.MissingTestVectorException: Missing ecc_p...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P384::test_import_openssh_public - test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P384::test_import_private_der - test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P384::test_import_private_pem - test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P384::test_import_private_pem_encrypted - test_import_ECC.MissingTestVectorException: Missing ecc_p384...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P384::test_import_private_pkcs8_clear - test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P384::test_import_private_pkcs8_encrypted_1 - test_import_ECC.MissingTestVectorException: Missing ecc_...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P384::test_import_private_pkcs8_encrypted_2 - test_import_ECC.MissingTestVectorException: Missing ecc_...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P384::test_import_private_pkcs8_in_pem_clear - test_import_ECC.MissingTestVectorException: Missing ecc...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P384::test_import_public_der - test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P384::test_import_public_pem - test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P384::test_import_sec1_compressed - test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P384::test_import_sec1_uncompressed - test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P384::test_import_x509_der - test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P384::test_import_x509_pem - test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P521::test_import_openssh_private_clear - test_import_ECC.MissingTestVectorException: Missing ecc_p521...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P521::test_import_openssh_private_password - test_import_ECC.MissingTestVectorException: Missing ecc_p...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P521::test_import_openssh_public - test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P521::test_import_private_der - test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P521::test_import_private_pem - test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P521::test_import_private_pem_encrypted - test_import_ECC.MissingTestVectorException: Missing ecc_p521...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P521::test_import_private_pkcs8_clear - test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P521::test_import_private_pkcs8_encrypted_1 - test_import_ECC.MissingTestVectorException: Missing ecc_...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P521::test_import_private_pkcs8_encrypted_2 - test_import_ECC.MissingTestVectorException: Missing ecc_...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P521::test_import_private_pkcs8_in_pem_clear - test_import_ECC.MissingTestVectorException: Missing ecc...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P521::test_import_public_der - test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P521::test_import_public_pem - test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P521::test_import_sec1_compressed - test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P521::test_import_sec1_uncompressed - test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P521::test_import_x509_der - test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P521::test_import_x509_pem - test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P192::test_byte_or_string_passphrase - test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P192::test_compressed_curve - test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P192::test_error_params1 - test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P192::test_export_private_der - test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P192::test_export_private_pem_clear - test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P192::test_export_private_pem_encrypted - test_import_ECC.MissingTestVectorException: Missing ecc_p192...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P192::test_export_private_pkcs8_and_pem_1 - test_import_ECC.MissingTestVectorException: Missing ecc_p1...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P192::test_export_private_pkcs8_and_pem_2 - test_import_ECC.MissingTestVectorException: Missing ecc_p1...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P192::test_export_private_pkcs8_clear - test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P192::test_export_private_pkcs8_encrypted - test_import_ECC.MissingTestVectorException: Missing ecc_p1...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P192::test_export_public_der_compressed - test_import_ECC.MissingTestVectorException: Missing ecc_p192...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P192::test_export_public_der_uncompressed - test_import_ECC.MissingTestVectorException: Missing ecc_p1...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P192::test_export_public_pem_compressed - test_import_ECC.MissingTestVectorException: Missing ecc_p192...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P192::test_export_public_pem_uncompressed - test_import_ECC.MissingTestVectorException: Missing ecc_p1...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P192::test_export_public_sec1_compressed - test_import_ECC.MissingTestVectorException: Missing ecc_p19...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P192::test_export_public_sec1_uncompressed - test_import_ECC.MissingTestVectorException: Missing ecc_p...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P192::test_prng - test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P224::test_byte_or_string_passphrase - test_import_ECC.MissingTestVectorException: Missing ecc_p224.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P224::test_compressed_curve - test_import_ECC.MissingTestVectorException: Missing ecc_p224.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P224::test_error_params1 - test_import_ECC.MissingTestVectorException: Missing ecc_p224.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P224::test_export_private_der - test_import_ECC.MissingTestVectorException: Missing ecc_p224.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P224::test_export_private_pem_clear - test_import_ECC.MissingTestVectorException: Missing ecc_p224.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P224::test_export_private_pem_encrypted - test_import_ECC.MissingTestVectorException: Missing ecc_p224...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P224::test_export_private_pkcs8_and_pem_1 - test_import_ECC.MissingTestVectorException: Missing ecc_p2...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P224::test_export_private_pkcs8_and_pem_2 - test_import_ECC.MissingTestVectorException: Missing ecc_p2...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P224::test_export_private_pkcs8_clear - test_import_ECC.MissingTestVectorException: Missing ecc_p224.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P224::test_export_private_pkcs8_encrypted - test_import_ECC.MissingTestVectorException: Missing ecc_p2...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P224::test_export_public_der_compressed - test_import_ECC.MissingTestVectorException: Missing ecc_p224...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P224::test_export_public_der_uncompressed - test_import_ECC.MissingTestVectorException: Missing ecc_p2...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P224::test_export_public_pem_compressed - test_import_ECC.MissingTestVectorException: Missing ecc_p224...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P224::test_export_public_pem_uncompressed - test_import_ECC.MissingTestVectorException: Missing ecc_p2...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P224::test_export_public_sec1_compressed - test_import_ECC.MissingTestVectorException: Missing ecc_p22...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P224::test_export_public_sec1_uncompressed - test_import_ECC.MissingTestVectorException: Missing ecc_p...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P224::test_prng - test_import_ECC.MissingTestVectorException: Missing ecc_p224.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P256::test_byte_or_string_passphrase - test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P256::test_compressed_curve - test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P256::test_error_params1 - test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P256::test_export_openssh_compressed - test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P256::test_export_openssh_uncompressed - test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P256::test_export_private_der - test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P256::test_export_private_pem_clear - test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P256::test_export_private_pem_encrypted - test_import_ECC.MissingTestVectorException: Missing ecc_p256...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P256::test_export_private_pkcs8_and_pem_1 - test_import_ECC.MissingTestVectorException: Missing ecc_p2...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P256::test_export_private_pkcs8_and_pem_2 - test_import_ECC.MissingTestVectorException: Missing ecc_p2...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P256::test_export_private_pkcs8_clear - test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P256::test_export_private_pkcs8_encrypted - test_import_ECC.MissingTestVectorException: Missing ecc_p2...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P256::test_export_public_der_compressed - test_import_ECC.MissingTestVectorException: Missing ecc_p256...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P256::test_export_public_der_uncompressed - test_import_ECC.MissingTestVectorException: Missing ecc_p2...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P256::test_export_public_pem_compressed - test_import_ECC.MissingTestVectorException: Missing ecc_p256...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P256::test_export_public_pem_uncompressed - test_import_ECC.MissingTestVectorException: Missing ecc_p2...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P256::test_export_public_sec1_compressed - test_import_ECC.MissingTestVectorException: Missing ecc_p25...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P256::test_export_public_sec1_uncompressed - test_import_ECC.MissingTestVectorException: Missing ecc_p...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P256::test_prng - test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P384::test_byte_or_string_passphrase - test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P384::test_compressed_curve - test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P384::test_error_params1 - test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P384::test_export_openssh_compressed - test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P384::test_export_openssh_uncompressed - test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P384::test_export_private_der - test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P384::test_export_private_pem_clear - test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P384::test_export_private_pem_encrypted - test_import_ECC.MissingTestVectorException: Missing ecc_p384...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P384::test_export_private_pkcs8_and_pem_1 - test_import_ECC.MissingTestVectorException: Missing ecc_p3...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P384::test_export_private_pkcs8_and_pem_2 - test_import_ECC.MissingTestVectorException: Missing ecc_p3...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P384::test_export_private_pkcs8_clear - test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P384::test_export_private_pkcs8_encrypted - test_import_ECC.MissingTestVectorException: Missing ecc_p3...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P384::test_export_public_der_compressed - test_import_ECC.MissingTestVectorException: Missing ecc_p384...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P384::test_export_public_der_uncompressed - test_import_ECC.MissingTestVectorException: Missing ecc_p3...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P384::test_export_public_pem_compressed - test_import_ECC.MissingTestVectorException: Missing ecc_p384...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P384::test_export_public_pem_uncompressed - test_import_ECC.MissingTestVectorException: Missing ecc_p3...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P384::test_export_public_sec1_compressed - test_import_ECC.MissingTestVectorException: Missing ecc_p38...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P384::test_export_public_sec1_uncompressed - test_import_ECC.MissingTestVectorException: Missing ecc_p...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P384::test_prng - test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P521::test_byte_or_string_passphrase - test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P521::test_compressed_curve - test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P521::test_error_params1 - test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P521::test_export_openssh_compressed - test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P521::test_export_openssh_uncompressed - test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P521::test_export_private_der - test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P521::test_export_private_pem_clear - test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P521::test_export_private_pem_encrypted - test_import_ECC.MissingTestVectorException: Missing ecc_p521...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P521::test_export_private_pkcs8_and_pem_1 - test_import_ECC.MissingTestVectorException: Missing ecc_p5...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P521::test_export_private_pkcs8_and_pem_2 - test_import_ECC.MissingTestVectorException: Missing ecc_p5...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P521::test_export_private_pkcs8_clear - test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P521::test_export_private_pkcs8_encrypted - test_import_ECC.MissingTestVectorException: Missing ecc_p5...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P521::test_export_public_der_compressed - test_import_ECC.MissingTestVectorException: Missing ecc_p521...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P521::test_export_public_der_uncompressed - test_import_ECC.MissingTestVectorException: Missing ecc_p5...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P521::test_export_public_pem_compressed - test_import_ECC.MissingTestVectorException: Missing ecc_p521...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P521::test_export_public_pem_uncompressed - test_import_ECC.MissingTestVectorException: Missing ecc_p5...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P521::test_export_public_sec1_compressed - test_import_ECC.MissingTestVectorException: Missing ecc_p52...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P521::test_export_public_sec1_uncompressed - test_import_ECC.MissingTestVectorException: Missing ecc_p...
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P521::test_prng - test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/Signature/test_dss.py::TestVectorsDSAWycheproof::test_verify - TypeError: __init__() missing 1 required positional argument: 'slow_tests'
ERROR lib/Crypto/SelfTest/Signature/test_dss.py::TestVectorsECDSAWycheproof::test_verify - TypeError: __init__() missing 1 required positional argument: 'slow_tests'
FAILED lib/Crypto/SelfTest/Cipher/test_CBC.py::BlockChainingTests::test_IV_iv_attributes - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CBC.py::BlockChainingTests::test_block_size_128 - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CBC.py::BlockChainingTests::test_block_size_64 - AttributeError: 'BlockChainingTests' object has no attribute 'des3_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CBC.py::BlockChainingTests::test_bytearray - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CBC.py::BlockChainingTests::test_data_must_be_bytes - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CBC.py::BlockChainingTests::test_either_encrypt_or_decrypt - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CBC.py::BlockChainingTests::test_iv - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CBC.py::BlockChainingTests::test_iv_must_be_bytes - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CBC.py::BlockChainingTests::test_iv_with_matching_length - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CBC.py::BlockChainingTests::test_loopback_128 - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CBC.py::BlockChainingTests::test_loopback_64 - AttributeError: 'BlockChainingTests' object has no attribute 'des3_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CBC.py::BlockChainingTests::test_memoryview - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CBC.py::BlockChainingTests::test_null_encryption_decryption - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CBC.py::BlockChainingTests::test_only_one_iv - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CBC.py::BlockChainingTests::test_output_param - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CBC.py::BlockChainingTests::test_output_param_memoryview - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CBC.py::BlockChainingTests::test_output_param_neg - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CBC.py::BlockChainingTests::test_output_param_same_buffer - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CBC.py::BlockChainingTests::test_unaligned_data_128 - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CBC.py::BlockChainingTests::test_unaligned_data_64 - AttributeError: 'BlockChainingTests' object has no attribute 'des3_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CBC.py::BlockChainingTests::test_unknown_parameters - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CFB.py::BlockChainingTests::test_IV_iv_attributes - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CFB.py::BlockChainingTests::test_block_size_128 - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CFB.py::BlockChainingTests::test_block_size_64 - AttributeError: 'BlockChainingTests' object has no attribute 'des3_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CFB.py::BlockChainingTests::test_bytearray - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CFB.py::BlockChainingTests::test_data_must_be_bytes - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CFB.py::BlockChainingTests::test_either_encrypt_or_decrypt - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CFB.py::BlockChainingTests::test_iv - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CFB.py::BlockChainingTests::test_iv_must_be_bytes - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CFB.py::BlockChainingTests::test_iv_with_matching_length - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CFB.py::BlockChainingTests::test_loopback_128 - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CFB.py::BlockChainingTests::test_loopback_64 - AttributeError: 'BlockChainingTests' object has no attribute 'des3_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CFB.py::BlockChainingTests::test_memoryview - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CFB.py::BlockChainingTests::test_null_encryption_decryption - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CFB.py::BlockChainingTests::test_only_one_iv - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CFB.py::BlockChainingTests::test_output_param - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CFB.py::BlockChainingTests::test_output_param_memoryview - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CFB.py::BlockChainingTests::test_output_param_neg - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CFB.py::BlockChainingTests::test_output_param_same_buffer - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CFB.py::BlockChainingTests::test_unaligned_data_128 - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CFB.py::BlockChainingTests::test_unaligned_data_64 - AttributeError: 'BlockChainingTests' object has no attribute 'des3_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CFB.py::BlockChainingTests::test_unknown_parameters - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OFB.py::BlockChainingTests::test_IV_iv_attributes - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OFB.py::BlockChainingTests::test_block_size_128 - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OFB.py::BlockChainingTests::test_block_size_64 - AttributeError: 'BlockChainingTests' object has no attribute 'des3_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OFB.py::BlockChainingTests::test_bytearray - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OFB.py::BlockChainingTests::test_data_must_be_bytes - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OFB.py::BlockChainingTests::test_either_encrypt_or_decrypt - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OFB.py::BlockChainingTests::test_iv - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OFB.py::BlockChainingTests::test_iv_must_be_bytes - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OFB.py::BlockChainingTests::test_iv_with_matching_length - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OFB.py::BlockChainingTests::test_loopback_128 - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OFB.py::BlockChainingTests::test_loopback_64 - AttributeError: 'BlockChainingTests' object has no attribute 'des3_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OFB.py::BlockChainingTests::test_memoryview - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OFB.py::BlockChainingTests::test_null_encryption_decryption - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OFB.py::BlockChainingTests::test_only_one_iv - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OFB.py::BlockChainingTests::test_output_param - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OFB.py::BlockChainingTests::test_output_param_memoryview - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OFB.py::BlockChainingTests::test_output_param_neg - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OFB.py::BlockChainingTests::test_output_param_same_buffer - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OFB.py::BlockChainingTests::test_unaligned_data_128 - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OFB.py::BlockChainingTests::test_unaligned_data_64 - AttributeError: 'BlockChainingTests' object has no attribute 'des3_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OFB.py::BlockChainingTests::test_unknown_parameters - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OpenPGP.py::BlockChainingTests::test_IV_iv_attributes - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OpenPGP.py::BlockChainingTests::test_block_size_128 - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OpenPGP.py::BlockChainingTests::test_block_size_64 - AttributeError: 'BlockChainingTests' object has no attribute 'des3_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OpenPGP.py::BlockChainingTests::test_bytearray - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OpenPGP.py::BlockChainingTests::test_data_must_be_bytes - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OpenPGP.py::BlockChainingTests::test_either_encrypt_or_decrypt - AttributeError: 'BlockChainingTests' object has no attribute 'aes...
FAILED lib/Crypto/SelfTest/Cipher/test_OpenPGP.py::BlockChainingTests::test_iv - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OpenPGP.py::BlockChainingTests::test_iv_must_be_bytes - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OpenPGP.py::BlockChainingTests::test_iv_with_matching_length - AttributeError: 'BlockChainingTests' object has no attribute 'aes_m...
FAILED lib/Crypto/SelfTest/Cipher/test_OpenPGP.py::BlockChainingTests::test_loopback_128 - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OpenPGP.py::BlockChainingTests::test_loopback_64 - AttributeError: 'BlockChainingTests' object has no attribute 'des3_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OpenPGP.py::BlockChainingTests::test_memoryview - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OpenPGP.py::BlockChainingTests::test_null_encryption_decryption - AttributeError: 'BlockChainingTests' object has no attribute 'ae...
FAILED lib/Crypto/SelfTest/Cipher/test_OpenPGP.py::BlockChainingTests::test_only_one_iv - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OpenPGP.py::BlockChainingTests::test_output_param - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OpenPGP.py::BlockChainingTests::test_output_param_memoryview - AttributeError: 'BlockChainingTests' object has no attribute 'aes_m...
FAILED lib/Crypto/SelfTest/Cipher/test_OpenPGP.py::BlockChainingTests::test_output_param_neg - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OpenPGP.py::BlockChainingTests::test_output_param_same_buffer - AttributeError: 'BlockChainingTests' object has no attribute 'aes_...
FAILED lib/Crypto/SelfTest/Cipher/test_OpenPGP.py::BlockChainingTests::test_unaligned_data_128 - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OpenPGP.py::BlockChainingTests::test_unaligned_data_64 - AttributeError: 'BlockChainingTests' object has no attribute 'des3_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OpenPGP.py::BlockChainingTests::test_unknown_parameters - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Hash/test_BLAKE2.py::Blake2Test::test_bytearray - AttributeError: 'Blake2Test' object has no attribute 'BLAKE2'
FAILED lib/Crypto/SelfTest/Hash/test_BLAKE2.py::Blake2Test::test_default_digest_size - AttributeError: 'Blake2Test' object has no attribute 'BLAKE2'
FAILED lib/Crypto/SelfTest/Hash/test_BLAKE2.py::Blake2Test::test_digest - AttributeError: 'Blake2Test' object has no attribute 'BLAKE2'
FAILED lib/Crypto/SelfTest/Hash/test_BLAKE2.py::Blake2Test::test_hex_digest - AttributeError: 'Blake2Test' object has no attribute 'BLAKE2'
FAILED lib/Crypto/SelfTest/Hash/test_BLAKE2.py::Blake2Test::test_hexverify - AttributeError: 'Blake2Test' object has no attribute 'BLAKE2'
FAILED lib/Crypto/SelfTest/Hash/test_BLAKE2.py::Blake2Test::test_memoryview - AttributeError: 'Blake2Test' object has no attribute 'BLAKE2'
FAILED lib/Crypto/SelfTest/Hash/test_BLAKE2.py::Blake2Test::test_new_negative - AttributeError: 'Blake2Test' object has no attribute 'BLAKE2'
FAILED lib/Crypto/SelfTest/Hash/test_BLAKE2.py::Blake2Test::test_new_positive - AttributeError: 'Blake2Test' object has no attribute 'BLAKE2'
FAILED lib/Crypto/SelfTest/Hash/test_BLAKE2.py::Blake2Test::test_oid - AttributeError: 'Blake2Test' object has no attribute 'oid_variant'
FAILED lib/Crypto/SelfTest/Hash/test_BLAKE2.py::Blake2Test::test_update - AttributeError: 'Blake2Test' object has no attribute 'BLAKE2'
FAILED lib/Crypto/SelfTest/Hash/test_BLAKE2.py::Blake2Test::test_update_after_digest - AttributeError: 'Blake2Test' object has no attribute 'BLAKE2'
FAILED lib/Crypto/SelfTest/Hash/test_BLAKE2.py::Blake2Test::test_update_negative - AttributeError: 'Blake2Test' object has no attribute 'BLAKE2'
FAILED lib/Crypto/SelfTest/Hash/test_BLAKE2.py::Blake2Test::test_verify - AttributeError: 'Blake2Test' object has no attribute 'BLAKE2'
FAILED lib/Crypto/SelfTest/Hash/test_BLAKE2.py::Blake2OfficialTestVector::runTest - AttributeError: 'Blake2OfficialTestVector' object has no attribute 'name'
FAILED lib/Crypto/SelfTest/Hash/test_BLAKE2.py::Blake2TestVector1::runTest - AttributeError: 'Blake2TestVector1' object has no attribute 'name'
FAILED lib/Crypto/SelfTest/Hash/test_BLAKE2.py::Blake2TestVector2::runTest - AttributeError: 'Blake2TestVector2' object has no attribute 'name'
FAILED lib/Crypto/SelfTest/Hash/test_HMAC.py::HMAC_Module_and_Instance_Test::runTest - AttributeError: 'str' object has no attribute 'items'
FAILED lib/Crypto/SelfTest/Hash/test_KMAC.py::KMACTest::test_bytearray - AttributeError: 'KMACTest' object has no attribute 'KMAC'
FAILED lib/Crypto/SelfTest/Hash/test_KMAC.py::KMACTest::test_default_digest_size - AttributeError: 'KMACTest' object has no attribute 'KMAC'
FAILED lib/Crypto/SelfTest/Hash/test_KMAC.py::KMACTest::test_digest - AttributeError: 'KMACTest' object has no attribute 'KMAC'
FAILED lib/Crypto/SelfTest/Hash/test_KMAC.py::KMACTest::test_hex_digest - AttributeError: 'KMACTest' object has no attribute 'KMAC'
FAILED lib/Crypto/SelfTest/Hash/test_KMAC.py::KMACTest::test_hexverify - AttributeError: 'KMACTest' object has no attribute 'KMAC'
FAILED lib/Crypto/SelfTest/Hash/test_KMAC.py::KMACTest::test_memoryview - AttributeError: 'KMACTest' object has no attribute 'KMAC'
FAILED lib/Crypto/SelfTest/Hash/test_KMAC.py::KMACTest::test_new_negative - AttributeError: 'KMACTest' object has no attribute 'KMAC'
FAILED lib/Crypto/SelfTest/Hash/test_KMAC.py::KMACTest::test_new_positive - AttributeError: 'KMACTest' object has no attribute 'KMAC'
FAILED lib/Crypto/SelfTest/Hash/test_KMAC.py::KMACTest::test_oid - AttributeError: 'KMACTest' object has no attribute 'oid_variant'
FAILED lib/Crypto/SelfTest/Hash/test_KMAC.py::KMACTest::test_update - AttributeError: 'KMACTest' object has no attribute 'KMAC'
FAILED lib/Crypto/SelfTest/Hash/test_KMAC.py::KMACTest::test_update_after_digest - AttributeError: 'KMACTest' object has no attribute 'KMAC'
FAILED lib/Crypto/SelfTest/Hash/test_KMAC.py::KMACTest::test_update_negative - AttributeError: 'KMACTest' object has no attribute 'KMAC'
FAILED lib/Crypto/SelfTest/Hash/test_KMAC.py::KMACTest::test_verify - AttributeError: 'KMACTest' object has no attribute 'KMAC'
FAILED lib/Crypto/SelfTest/Hash/test_SHAKE.py::SHAKETest::test_digest - AttributeError: 'SHAKETest' object has no attribute 'shake'
FAILED lib/Crypto/SelfTest/Hash/test_SHAKE.py::SHAKETest::test_new_positive - AttributeError: 'SHAKETest' object has no attribute 'shake'
FAILED lib/Crypto/SelfTest/Hash/test_SHAKE.py::SHAKETest::test_update - AttributeError: 'SHAKETest' object has no attribute 'shake'
FAILED lib/Crypto/SelfTest/Hash/test_SHAKE.py::SHAKETest::test_update_after_read - AttributeError: 'SHAKETest' object has no attribute 'shake'
FAILED lib/Crypto/SelfTest/Hash/test_SHAKE.py::SHAKETest::test_update_negative - AttributeError: 'SHAKETest' object has no attribute 'shake'
FAILED lib/Crypto/SelfTest/Hash/test_TupleHash.py::TupleHashTest::test_bytearray - AttributeError: 'TupleHashTest' object has no attribute 'TupleHash'
FAILED lib/Crypto/SelfTest/Hash/test_TupleHash.py::TupleHashTest::test_default_digest_size - AttributeError: 'TupleHashTest' object has no attribute 'TupleHash'
FAILED lib/Crypto/SelfTest/Hash/test_TupleHash.py::TupleHashTest::test_digest - AttributeError: 'TupleHashTest' object has no attribute 'TupleHash'
FAILED lib/Crypto/SelfTest/Hash/test_TupleHash.py::TupleHashTest::test_hex_digest - AttributeError: 'TupleHashTest' object has no attribute 'TupleHash'
FAILED lib/Crypto/SelfTest/Hash/test_TupleHash.py::TupleHashTest::test_memoryview - AttributeError: 'TupleHashTest' object has no attribute 'TupleHash'
FAILED lib/Crypto/SelfTest/Hash/test_TupleHash.py::TupleHashTest::test_new_negative - AttributeError: 'TupleHashTest' object has no attribute 'TupleHash'
FAILED lib/Crypto/SelfTest/Hash/test_TupleHash.py::TupleHashTest::test_new_positive - AttributeError: 'TupleHashTest' object has no attribute 'TupleHash'
FAILED lib/Crypto/SelfTest/Hash/test_TupleHash.py::TupleHashTest::test_update - AttributeError: 'TupleHashTest' object has no attribute 'TupleHash'
FAILED lib/Crypto/SelfTest/Hash/test_TupleHash.py::TupleHashTest::test_update_after_digest - AttributeError: 'TupleHashTest' object has no attribute 'TupleHash'
FAILED lib/Crypto/SelfTest/Hash/test_TupleHash.py::TupleHashTest::test_update_negative - AttributeError: 'TupleHashTest' object has no attribute 'TupleHash'
FAILED lib/Crypto/SelfTest/Hash/test_cSHAKE.py::cSHAKETest::test_digest - AttributeError: 'cSHAKETest' object has no attribute 'cshake'
FAILED lib/Crypto/SelfTest/Hash/test_cSHAKE.py::cSHAKETest::test_new_positive - AttributeError: 'cSHAKETest' object has no attribute 'cshake'
FAILED lib/Crypto/SelfTest/Hash/test_cSHAKE.py::cSHAKETest::test_shake - AttributeError: 'cSHAKETest' object has no attribute 'cshake'
FAILED lib/Crypto/SelfTest/Hash/test_cSHAKE.py::cSHAKETest::test_update - AttributeError: 'cSHAKETest' object has no attribute 'cshake'
FAILED lib/Crypto/SelfTest/Hash/test_cSHAKE.py::cSHAKETest::test_update_after_read - AttributeError: 'cSHAKETest' object has no attribute 'cshake'
FAILED lib/Crypto/SelfTest/Hash/test_cSHAKE.py::cSHAKETest::test_update_negative - AttributeError: 'cSHAKETest' object has no attribute 'cshake'
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_abs - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_addition - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_and - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_bool - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_conversion_from_bytes - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_conversion_to_bytes - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_conversion_to_int - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_conversion_to_str - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_equality_with_ints - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_fail_if_divisible_by - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_floor_div - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_gcd - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_get_bit - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_hex - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_in_place_add - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_in_place_left_shift - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_in_place_modulus - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_in_place_mul - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_in_place_right_shift - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_in_place_sub - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_inequality - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_init_and_equality - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_inplace_exponentiation - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_inplace_inverse - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_inverse - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_is_negative - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_jacobi_symbol - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_jacobi_symbol_wikipedia - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_lcm - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_less_than - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_less_than_or_equal - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_modular_exponentiation - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_more_than - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_more_than_or_equal - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_multiplication - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_multiply_accumulate - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_odd_even - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_or - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_perfect_square - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_remainder - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_repr - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_right_shift - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_set - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_simple_exponentiation - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_size_in_bits - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_size_in_bytes - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_sqrt - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_sqrt_module - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_subtraction - NotImplementedError: To be implemented
================================================== 184 failed, 1302 passed, 355 warnings, 176 errors in 65.48s (0:01:05) ===================================================

Full log is bigger than 64KB. Please let me know if you want me to add it as attachment.

@kloczek
Copy link
Author

kloczek commented Feb 11, 2022

BTW looks like test suite lib/Crypto/SelfTest is part of the installed files.

@Legrandin
Copy link
Owner

I am not totally surprised by this, because unit testing is still meant to be executed with python setup.py test, and building with python setup.py build.

So, there is no bug, but PRs to be modernize things a bit are welcome of course.

BTW looks like test suite lib/Crypto/SelfTest is part of the installed files.

Yes, that is intentional. However, you should install pycryptodome-test-vectors for full coverage.

@kloczek
Copy link
Author

kloczek commented Feb 15, 2022

setuptools test command is at the moment marked as deprecated.
Soon support for that will be removed completely.

@kloczek
Copy link
Author

kloczek commented Nov 27, 2022

Any progress? 🤔
I've been tryinf to add those three files to --ignore list. With that pytest was able to start.
Here is the result

+ PYTHONPATH=/home/tkloczko/rpmbuild/BUILDROOT/python-pycryptodome-3.16.0-2.fc35.x86_64/usr/lib64/python3.8/site-packages:/home/tkloczko/rpmbuild/BUILDROOT/python-pycryptodome-3.16.0-2.fc35.x86_64/usr/lib/python3.8/site-packages
+ /usr/bin/pytest -ra --import-mode=importlib --ignore lib/Crypto/SelfTest/Cipher/test_Salsa20.py --ignore lib/Crypto/SelfTest/Hash/test_Poly1305.py --ignore lib/Crypto/SelfTest/Hash/test_SHA512.py
=========================================================================== test session starts ============================================================================
platform linux -- Python 3.8.15, pytest-7.2.0, pluggy-1.0.0
rootdir: /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0
collected 1755 items

lib/Crypto/SelfTest/Cipher/test_AES.py ...                                                                                                                           [  0%]
lib/Crypto/SelfTest/Cipher/test_ARC2.py ...                                                                                                                          [  0%]
lib/Crypto/SelfTest/Cipher/test_ARC4.py ....                                                                                                                         [  0%]
lib/Crypto/SelfTest/Cipher/test_Blowfish.py ..                                                                                                                       [  0%]
lib/Crypto/SelfTest/Cipher/test_CAST.py ..                                                                                                                           [  0%]
lib/Crypto/SelfTest/Cipher/test_CBC.py FFFFFFFFFFFFFFFFFFFFF.................................................                                                        [  4%]
lib/Crypto/SelfTest/Cipher/test_CCM.py .......................................                                                                                       [  7%]
lib/Crypto/SelfTest/Cipher/test_CFB.py FFFFFFFFFFFFFFFFFFFFF........................................................................                                 [ 12%]
lib/Crypto/SelfTest/Cipher/test_CTR.py .........................                                                                                                     [ 13%]
lib/Crypto/SelfTest/Cipher/test_ChaCha20.py .................                                                                                                        [ 14%]
lib/Crypto/SelfTest/Cipher/test_ChaCha20_Poly1305.py .................................                                                                               [ 16%]
lib/Crypto/SelfTest/Cipher/test_DES.py ..                                                                                                                            [ 16%]
lib/Crypto/SelfTest/Cipher/test_DES3.py .....                                                                                                                        [ 16%]
lib/Crypto/SelfTest/Cipher/test_EAX.py ............................................................................................................................. [ 24%]
.......................................................................................................                                                              [ 29%]
lib/Crypto/SelfTest/Cipher/test_GCM.py ....................................E                                                                                         [ 32%]
lib/Crypto/SelfTest/Cipher/test_OCB.py .................................                                                                                             [ 33%]
lib/Crypto/SelfTest/Cipher/test_OFB.py FFFFFFFFFFFFFFFFFFFFF.................................................                                                        [ 37%]
lib/Crypto/SelfTest/Cipher/test_OpenPGP.py FFFFFFFFFFFFFFFFFFFFF.......................                                                                              [ 40%]
lib/Crypto/SelfTest/Cipher/test_SIV.py ...........................EEEE                                                                                               [ 42%]
lib/Crypto/SelfTest/Cipher/test_pkcs1_15.py .........E                                                                                                               [ 42%]
lib/Crypto/SelfTest/Cipher/test_pkcs1_oaep.py ..........E                                                                                                            [ 43%]
lib/Crypto/SelfTest/Hash/test_BLAKE2.py FFFFFFFFFFFFF..........................F..F..F..                                                                             [ 46%]
lib/Crypto/SelfTest/Hash/test_CMAC.py ......                                                                                                                         [ 46%]
lib/Crypto/SelfTest/Hash/test_HMAC.py F...                                                                                                                           [ 46%]
lib/Crypto/SelfTest/Hash/test_KMAC.py FFFFFFFFFFFFF...........................                                                                                       [ 49%]
lib/Crypto/SelfTest/Hash/test_KangarooTwelve.py ......................                                                                                               [ 50%]
lib/Crypto/SelfTest/Hash/test_MD5.py .                                                                                                                               [ 50%]
lib/Crypto/SelfTest/Hash/test_SHA256.py .                                                                                                                            [ 50%]
lib/Crypto/SelfTest/Hash/test_SHA3_224.py .                                                                                                                          [ 50%]
lib/Crypto/SelfTest/Hash/test_SHA3_256.py .                                                                                                                          [ 50%]
lib/Crypto/SelfTest/Hash/test_SHA3_384.py .                                                                                                                          [ 50%]
lib/Crypto/SelfTest/Hash/test_SHA3_512.py .                                                                                                                          [ 50%]
lib/Crypto/SelfTest/Hash/test_SHAKE.py FFFFF..........                                                                                                               [ 51%]
lib/Crypto/SelfTest/Hash/test_TupleHash.py FFFFFFFFFF.....................                                                                                           [ 53%]
lib/Crypto/SelfTest/Hash/test_cSHAKE.py .F.FFFFF................                                                                                                     [ 54%]
lib/Crypto/SelfTest/Hash/test_keccak.py ........                                                                                                                     [ 55%]
lib/Crypto/SelfTest/IO/test_PBES.py ......                                                                                                                           [ 55%]
lib/Crypto/SelfTest/IO/test_PKCS8.py ....                                                                                                                            [ 55%]
lib/Crypto/SelfTest/Math/test_Numbers.py FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF.....................................................                      [ 61%]
lib/Crypto/SelfTest/Math/test_Primality.py E......                                                                                                                   [ 61%]
lib/Crypto/SelfTest/Math/test_modexp.py ............                                                                                                                 [ 62%]
lib/Crypto/SelfTest/Protocol/test_KDF.py .......................                                                                                                     [ 63%]
lib/Crypto/SelfTest/Protocol/test_SecretSharing.py ...........                                                                                                       [ 64%]
lib/Crypto/SelfTest/Protocol/test_rfc1751.py ..                                                                                                                      [ 64%]
lib/Crypto/SelfTest/PublicKey/test_DSA.py ..........                                                                                                                 [ 65%]
lib/Crypto/SelfTest/PublicKey/test_ECC_25519.py ...................                                                                                                  [ 66%]
lib/Crypto/SelfTest/PublicKey/test_ECC_448.py ...................                                                                                                    [ 67%]
lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py ...........................................................................................                           [ 72%]
lib/Crypto/SelfTest/PublicKey/test_ElGamal.py .......                                                                                                                [ 72%]
lib/Crypto/SelfTest/PublicKey/test_RSA.py .................                                                                                                          [ 73%]
lib/Crypto/SelfTest/PublicKey/test_import_DSA.py ..........................                                                                                          [ 75%]
lib/Crypto/SelfTest/PublicKey/test_import_ECC.py .EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE [ 81%]
EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE                                                                    [ 87%]
lib/Crypto/SelfTest/PublicKey/test_import_RSA.py ......................................                                                                              [ 89%]
lib/Crypto/SelfTest/Random/test_random.py .                                                                                                                          [ 89%]
lib/Crypto/SelfTest/Signature/test_dss.py .......................EE                                                                                                  [ 91%]
lib/Crypto/SelfTest/Signature/test_eddsa.py .......FF                                                                                                                [ 91%]
lib/Crypto/SelfTest/Signature/test_pkcs1_15.py ......                                                                                                                [ 91%]
lib/Crypto/SelfTest/Signature/test_pss.py ........                                                                                                                   [ 92%]
lib/Crypto/SelfTest/Util/test_Counter.py ......                                                                                                                      [ 92%]
lib/Crypto/SelfTest/Util/test_Padding.py .................                                                                                                           [ 93%]
lib/Crypto/SelfTest/Util/test_asn1.py ...........................................................................                                                    [ 97%]
lib/Crypto/SelfTest/Util/test_number.py ........                                                                                                                     [ 98%]
lib/Crypto/SelfTest/Util/test_rfc1751.py ..                                                                                                                          [ 98%]
lib/Crypto/SelfTest/Util/test_strxor.py ..........................                                                                                                   [100%]

================================================================================== ERRORS ==================================================================================
_______________________________________________________________ ERROR at setup of TestVariableLength.runTest _______________________________________________________________

cls = <class '_pytest.runner.CallInfo'>, func = <function call_runtest_hook.<locals>.<lambda> at 0x7fcdea502af0>, when = 'setup'
reraise = (<class '_pytest.outcomes.Exit'>, <class 'KeyboardInterrupt'>)

    @classmethod
    def from_call(
        cls,
        func: "Callable[[], TResult]",
        when: "Literal['collect', 'setup', 'call', 'teardown']",
        reraise: Optional[
            Union[Type[BaseException], Tuple[Type[BaseException], ...]]
        ] = None,
    ) -> "CallInfo[TResult]":
        """Call func, wrapping the result in a CallInfo.

        :param func:
            The function to call. Called without arguments.
        :param when:
            The phase in which the function is called.
        :param reraise:
            Exception or exceptions that shall propagate if raised by the
            function, instead of being wrapped in the CallInfo.
        """
        excinfo = None
        start = timing.time()
        precise_start = timing.perf_counter()
        try:
>           result: Optional[TResult] = func()

/usr/lib/python3.8/site-packages/_pytest/runner.py:339:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib/python3.8/site-packages/_pytest/runner.py:260: in <lambda>
    lambda: ihook(item=item, **kwds), when=when, reraise=reraise
/usr/lib/python3.8/site-packages/pluggy/_hooks.py:265: in __call__
    return self._hookexec(self.name, self.get_hookimpls(), kwargs, firstresult)
/usr/lib/python3.8/site-packages/pluggy/_manager.py:80: in _hookexec
    return self._inner_hookexec(hook_name, methods, kwargs, firstresult)
/usr/lib/python3.8/site-packages/_pytest/runner.py:155: in pytest_runtest_setup
    item.session._setupstate.setup(item)
/usr/lib/python3.8/site-packages/_pytest/runner.py:495: in setup
    raise exc
/usr/lib/python3.8/site-packages/_pytest/runner.py:492: in setup
    col.setup()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <TestCaseFunction runTest>

    def setup(self) -> None:
        # A bound method to be called during teardown() if set (see 'runtest()').
        self._explicit_tearDown: Optional[Callable[[], None]] = None
        assert self.parent is not None
>       self._testcase = self.parent.obj(self.name)  # type: ignore[attr-defined]
E       TypeError: __init__() takes 1 positional argument but 2 were given

/usr/lib/python3.8/site-packages/_pytest/unittest.py:201: TypeError
___________________________________________________________ ERROR at setup of TestVectorsWycheproof.test_decrypt ___________________________________________________________

cls = <class '_pytest.runner.CallInfo'>, func = <function call_runtest_hook.<locals>.<lambda> at 0x7fcdea730f70>, when = 'setup'
reraise = (<class '_pytest.outcomes.Exit'>, <class 'KeyboardInterrupt'>)

    @classmethod
    def from_call(
        cls,
        func: "Callable[[], TResult]",
        when: "Literal['collect', 'setup', 'call', 'teardown']",
        reraise: Optional[
            Union[Type[BaseException], Tuple[Type[BaseException], ...]]
        ] = None,
    ) -> "CallInfo[TResult]":
        """Call func, wrapping the result in a CallInfo.

        :param func:
            The function to call. Called without arguments.
        :param when:
            The phase in which the function is called.
        :param reraise:
            Exception or exceptions that shall propagate if raised by the
            function, instead of being wrapped in the CallInfo.
        """
        excinfo = None
        start = timing.time()
        precise_start = timing.perf_counter()
        try:
>           result: Optional[TResult] = func()

/usr/lib/python3.8/site-packages/_pytest/runner.py:339:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib/python3.8/site-packages/_pytest/runner.py:260: in <lambda>
    lambda: ihook(item=item, **kwds), when=when, reraise=reraise
/usr/lib/python3.8/site-packages/pluggy/_hooks.py:265: in __call__
    return self._hookexec(self.name, self.get_hookimpls(), kwargs, firstresult)
/usr/lib/python3.8/site-packages/pluggy/_manager.py:80: in _hookexec
    return self._inner_hookexec(hook_name, methods, kwargs, firstresult)
/usr/lib/python3.8/site-packages/_pytest/runner.py:155: in pytest_runtest_setup
    item.session._setupstate.setup(item)
/usr/lib/python3.8/site-packages/_pytest/runner.py:495: in setup
    raise exc
/usr/lib/python3.8/site-packages/_pytest/runner.py:492: in setup
    col.setup()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <TestCaseFunction test_decrypt>

    def setup(self) -> None:
        # A bound method to be called during teardown() if set (see 'runtest()').
        self._explicit_tearDown: Optional[Callable[[], None]] = None
        assert self.parent is not None
>       self._testcase = self.parent.obj(self.name)  # type: ignore[attr-defined]
E       TypeError: __init__() takes 1 positional argument but 2 were given

/usr/lib/python3.8/site-packages/_pytest/unittest.py:201: TypeError
___________________________________________________________ ERROR at setup of TestVectorsWycheproof.test_encrypt ___________________________________________________________

cls = <class '_pytest.runner.CallInfo'>, func = <function call_runtest_hook.<locals>.<lambda> at 0x7fcdea42caf0>, when = 'setup'
reraise = (<class '_pytest.outcomes.Exit'>, <class 'KeyboardInterrupt'>)

    @classmethod
    def from_call(
        cls,
        func: "Callable[[], TResult]",
        when: "Literal['collect', 'setup', 'call', 'teardown']",
        reraise: Optional[
            Union[Type[BaseException], Tuple[Type[BaseException], ...]]
        ] = None,
    ) -> "CallInfo[TResult]":
        """Call func, wrapping the result in a CallInfo.

        :param func:
            The function to call. Called without arguments.
        :param when:
            The phase in which the function is called.
        :param reraise:
            Exception or exceptions that shall propagate if raised by the
            function, instead of being wrapped in the CallInfo.
        """
        excinfo = None
        start = timing.time()
        precise_start = timing.perf_counter()
        try:
>           result: Optional[TResult] = func()

/usr/lib/python3.8/site-packages/_pytest/runner.py:339:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib/python3.8/site-packages/_pytest/runner.py:260: in <lambda>
    lambda: ihook(item=item, **kwds), when=when, reraise=reraise
/usr/lib/python3.8/site-packages/pluggy/_hooks.py:265: in __call__
    return self._hookexec(self.name, self.get_hookimpls(), kwargs, firstresult)
/usr/lib/python3.8/site-packages/pluggy/_manager.py:80: in _hookexec
    return self._inner_hookexec(hook_name, methods, kwargs, firstresult)
/usr/lib/python3.8/site-packages/_pytest/runner.py:155: in pytest_runtest_setup
    item.session._setupstate.setup(item)
/usr/lib/python3.8/site-packages/_pytest/runner.py:495: in setup
    raise exc
/usr/lib/python3.8/site-packages/_pytest/runner.py:492: in setup
    col.setup()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <TestCaseFunction test_encrypt>

    def setup(self) -> None:
        # A bound method to be called during teardown() if set (see 'runtest()').
        self._explicit_tearDown: Optional[Callable[[], None]] = None
        assert self.parent is not None
>       self._testcase = self.parent.obj(self.name)  # type: ignore[attr-defined]
E       TypeError: __init__() takes 1 positional argument but 2 were given

/usr/lib/python3.8/site-packages/_pytest/unittest.py:201: TypeError
__________________________________________________________ ERROR at setup of TestVectorsWycheproof2.test_decrypt ___________________________________________________________

cls = <class '_pytest.runner.CallInfo'>, func = <function call_runtest_hook.<locals>.<lambda> at 0x7fcdea442a60>, when = 'setup'
reraise = (<class '_pytest.outcomes.Exit'>, <class 'KeyboardInterrupt'>)

    @classmethod
    def from_call(
        cls,
        func: "Callable[[], TResult]",
        when: "Literal['collect', 'setup', 'call', 'teardown']",
        reraise: Optional[
            Union[Type[BaseException], Tuple[Type[BaseException], ...]]
        ] = None,
    ) -> "CallInfo[TResult]":
        """Call func, wrapping the result in a CallInfo.

        :param func:
            The function to call. Called without arguments.
        :param when:
            The phase in which the function is called.
        :param reraise:
            Exception or exceptions that shall propagate if raised by the
            function, instead of being wrapped in the CallInfo.
        """
        excinfo = None
        start = timing.time()
        precise_start = timing.perf_counter()
        try:
>           result: Optional[TResult] = func()

/usr/lib/python3.8/site-packages/_pytest/runner.py:339:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib/python3.8/site-packages/_pytest/runner.py:260: in <lambda>
    lambda: ihook(item=item, **kwds), when=when, reraise=reraise
/usr/lib/python3.8/site-packages/pluggy/_hooks.py:265: in __call__
    return self._hookexec(self.name, self.get_hookimpls(), kwargs, firstresult)
/usr/lib/python3.8/site-packages/pluggy/_manager.py:80: in _hookexec
    return self._inner_hookexec(hook_name, methods, kwargs, firstresult)
/usr/lib/python3.8/site-packages/_pytest/runner.py:155: in pytest_runtest_setup
    item.session._setupstate.setup(item)
/usr/lib/python3.8/site-packages/_pytest/runner.py:495: in setup
    raise exc
/usr/lib/python3.8/site-packages/_pytest/runner.py:492: in setup
    col.setup()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <TestCaseFunction test_decrypt>

    def setup(self) -> None:
        # A bound method to be called during teardown() if set (see 'runtest()').
        self._explicit_tearDown: Optional[Callable[[], None]] = None
        assert self.parent is not None
>       self._testcase = self.parent.obj(self.name)  # type: ignore[attr-defined]
E       TypeError: __init__() takes 1 positional argument but 2 were given

/usr/lib/python3.8/site-packages/_pytest/unittest.py:201: TypeError
__________________________________________________________ ERROR at setup of TestVectorsWycheproof2.test_encrypt ___________________________________________________________

cls = <class '_pytest.runner.CallInfo'>, func = <function call_runtest_hook.<locals>.<lambda> at 0x7fcdea42cdc0>, when = 'setup'
reraise = (<class '_pytest.outcomes.Exit'>, <class 'KeyboardInterrupt'>)

    @classmethod
    def from_call(
        cls,
        func: "Callable[[], TResult]",
        when: "Literal['collect', 'setup', 'call', 'teardown']",
        reraise: Optional[
            Union[Type[BaseException], Tuple[Type[BaseException], ...]]
        ] = None,
    ) -> "CallInfo[TResult]":
        """Call func, wrapping the result in a CallInfo.

        :param func:
            The function to call. Called without arguments.
        :param when:
            The phase in which the function is called.
        :param reraise:
            Exception or exceptions that shall propagate if raised by the
            function, instead of being wrapped in the CallInfo.
        """
        excinfo = None
        start = timing.time()
        precise_start = timing.perf_counter()
        try:
>           result: Optional[TResult] = func()

/usr/lib/python3.8/site-packages/_pytest/runner.py:339:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib/python3.8/site-packages/_pytest/runner.py:260: in <lambda>
    lambda: ihook(item=item, **kwds), when=when, reraise=reraise
/usr/lib/python3.8/site-packages/pluggy/_hooks.py:265: in __call__
    return self._hookexec(self.name, self.get_hookimpls(), kwargs, firstresult)
/usr/lib/python3.8/site-packages/pluggy/_manager.py:80: in _hookexec
    return self._inner_hookexec(hook_name, methods, kwargs, firstresult)
/usr/lib/python3.8/site-packages/_pytest/runner.py:155: in pytest_runtest_setup
    item.session._setupstate.setup(item)
/usr/lib/python3.8/site-packages/_pytest/runner.py:495: in setup
    raise exc
/usr/lib/python3.8/site-packages/_pytest/runner.py:492: in setup
    col.setup()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <TestCaseFunction test_encrypt>

    def setup(self) -> None:
        # A bound method to be called during teardown() if set (see 'runtest()').
        self._explicit_tearDown: Optional[Callable[[], None]] = None
        assert self.parent is not None
>       self._testcase = self.parent.obj(self.name)  # type: ignore[attr-defined]
E       TypeError: __init__() takes 1 positional argument but 2 were given

/usr/lib/python3.8/site-packages/_pytest/unittest.py:201: TypeError
___________________________________________________________ ERROR at setup of TestVectorsWycheproof.test_decrypt ___________________________________________________________

cls = <class '_pytest.runner.CallInfo'>, func = <function call_runtest_hook.<locals>.<lambda> at 0x7fcdea42c310>, when = 'setup'
reraise = (<class '_pytest.outcomes.Exit'>, <class 'KeyboardInterrupt'>)

    @classmethod
    def from_call(
        cls,
        func: "Callable[[], TResult]",
        when: "Literal['collect', 'setup', 'call', 'teardown']",
        reraise: Optional[
            Union[Type[BaseException], Tuple[Type[BaseException], ...]]
        ] = None,
    ) -> "CallInfo[TResult]":
        """Call func, wrapping the result in a CallInfo.

        :param func:
            The function to call. Called without arguments.
        :param when:
            The phase in which the function is called.
        :param reraise:
            Exception or exceptions that shall propagate if raised by the
            function, instead of being wrapped in the CallInfo.
        """
        excinfo = None
        start = timing.time()
        precise_start = timing.perf_counter()
        try:
>           result: Optional[TResult] = func()

/usr/lib/python3.8/site-packages/_pytest/runner.py:339:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib/python3.8/site-packages/_pytest/runner.py:260: in <lambda>
    lambda: ihook(item=item, **kwds), when=when, reraise=reraise
/usr/lib/python3.8/site-packages/pluggy/_hooks.py:265: in __call__
    return self._hookexec(self.name, self.get_hookimpls(), kwargs, firstresult)
/usr/lib/python3.8/site-packages/pluggy/_manager.py:80: in _hookexec
    return self._inner_hookexec(hook_name, methods, kwargs, firstresult)
/usr/lib/python3.8/site-packages/_pytest/runner.py:155: in pytest_runtest_setup
    item.session._setupstate.setup(item)
/usr/lib/python3.8/site-packages/_pytest/runner.py:495: in setup
    raise exc
/usr/lib/python3.8/site-packages/_pytest/runner.py:492: in setup
    col.setup()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <TestCaseFunction test_decrypt>

    def setup(self) -> None:
        # A bound method to be called during teardown() if set (see 'runtest()').
        self._explicit_tearDown: Optional[Callable[[], None]] = None
        assert self.parent is not None
>       self._testcase = self.parent.obj(self.name)  # type: ignore[attr-defined]
E       TypeError: __init__() missing 1 required positional argument: 'skip_slow_tests'

/usr/lib/python3.8/site-packages/_pytest/unittest.py:201: TypeError
___________________________________________________________ ERROR at setup of TestVectorsWycheproof.test_decrypt ___________________________________________________________

cls = <class '_pytest.runner.CallInfo'>, func = <function call_runtest_hook.<locals>.<lambda> at 0x7fcdea4429d0>, when = 'setup'
reraise = (<class '_pytest.outcomes.Exit'>, <class 'KeyboardInterrupt'>)

    @classmethod
    def from_call(
        cls,
        func: "Callable[[], TResult]",
        when: "Literal['collect', 'setup', 'call', 'teardown']",
        reraise: Optional[
            Union[Type[BaseException], Tuple[Type[BaseException], ...]]
        ] = None,
    ) -> "CallInfo[TResult]":
        """Call func, wrapping the result in a CallInfo.

        :param func:
            The function to call. Called without arguments.
        :param when:
            The phase in which the function is called.
        :param reraise:
            Exception or exceptions that shall propagate if raised by the
            function, instead of being wrapped in the CallInfo.
        """
        excinfo = None
        start = timing.time()
        precise_start = timing.perf_counter()
        try:
>           result: Optional[TResult] = func()

/usr/lib/python3.8/site-packages/_pytest/runner.py:339:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib/python3.8/site-packages/_pytest/runner.py:260: in <lambda>
    lambda: ihook(item=item, **kwds), when=when, reraise=reraise
/usr/lib/python3.8/site-packages/pluggy/_hooks.py:265: in __call__
    return self._hookexec(self.name, self.get_hookimpls(), kwargs, firstresult)
/usr/lib/python3.8/site-packages/pluggy/_manager.py:80: in _hookexec
    return self._inner_hookexec(hook_name, methods, kwargs, firstresult)
/usr/lib/python3.8/site-packages/_pytest/runner.py:155: in pytest_runtest_setup
    item.session._setupstate.setup(item)
/usr/lib/python3.8/site-packages/_pytest/runner.py:495: in setup
    raise exc
/usr/lib/python3.8/site-packages/_pytest/runner.py:492: in setup
    col.setup()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <TestCaseFunction test_decrypt>

    def setup(self) -> None:
        # A bound method to be called during teardown() if set (see 'runtest()').
        self._explicit_tearDown: Optional[Callable[[], None]] = None
        assert self.parent is not None
>       self._testcase = self.parent.obj(self.name)  # type: ignore[attr-defined]
E       TypeError: __init__() missing 1 required positional argument: 'skip_slow_tests'

/usr/lib/python3.8/site-packages/_pytest/unittest.py:201: TypeError
__________________________________________________________________ ERROR at setup of test_probable_prime ___________________________________________________________________
file /home/tkloczko/rpmbuild/BUILDROOT/python-pycryptodome-3.16.0-2.fc35.x86_64/usr/lib64/python3.8/site-packages/Crypto/Math/Primality.py, line 222
  def test_probable_prime(candidate, randfunc=None):
E       fixture 'candidate' not found
>       available fixtures: cache, capfd, capfdbinary, caplog, capsys, capsysbinary, doctest_namespace, monkeypatch, pytestconfig, record_property, record_testsuite_property, record_xml_attribute, recwarn, tmp_path, tmp_path_factory, tmpdir, tmpdir_factory
>       use 'pytest --fixtures [testpath]' for help on them.

/home/tkloczko/rpmbuild/BUILDROOT/python-pycryptodome-3.16.0-2.fc35.x86_64/usr/lib64/python3.8/site-packages/Crypto/Math/Primality.py:222
________________________________________________________ ERROR at setup of TestImport_P192.test_import_private_pem _________________________________________________________

self = <lib.Crypto.SelfTest.PublicKey.test_import_ECC.TestImport_P192 testMethod=test_import_private_pem>, args = ('test_import_private_pem',), kwargs = {}

    def __init__(self, *args, **kwargs):
        super(TestImport_P192, self).__init__(*args, **kwargs)
>       self.ref_private, self.ref_public = create_ref_keys_p192()

lib/Crypto/SelfTest/PublicKey/test_import_ECC.py:191:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
lib/Crypto/SelfTest/PublicKey/test_import_ECC.py:89: in create_ref_keys_p192
    key_lines = load_file("ecc_p192.txt").splitlines()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

file_name = 'ecc_p192.txt', mode = 'rb'

    def load_file(file_name, mode="rb"):
        results = None

        try:
            if not test_vectors_available:
                raise FileNotFoundError(errno.ENOENT,
                                        os.strerror(errno.ENOENT),
                                        file_name)

            dir_comps = ("PublicKey", "ECC")
            init_dir = os.path.dirname(pycryptodome_test_vectors.__file__)
            full_file_name = os.path.join(os.path.join(init_dir, *dir_comps), file_name)
            with open(full_file_name, mode) as file_in:
                results = file_in.read()

        except FileNotFoundError:
            warnings.warn("Warning: skipping extended tests for ECC",
                          UserWarning,
                          stacklevel=2)

        if results is None:
>           raise MissingTestVectorException("Missing %s" % file_name)
E           lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt

lib/Crypto/SelfTest/PublicKey/test_import_ECC.py:77: MissingTestVectorException
___________________________________________________ ERROR at setup of TestImport_P192.test_import_private_pem_encrypted ____________________________________________________

self = <lib.Crypto.SelfTest.PublicKey.test_import_ECC.TestImport_P192 testMethod=test_import_private_pem_encrypted>, args = ('test_import_private_pem_encrypted',)
kwargs = {}

    def __init__(self, *args, **kwargs):
        super(TestImport_P192, self).__init__(*args, **kwargs)
>       self.ref_private, self.ref_public = create_ref_keys_p192()

lib/Crypto/SelfTest/PublicKey/test_import_ECC.py:191:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
lib/Crypto/SelfTest/PublicKey/test_import_ECC.py:89: in create_ref_keys_p192
    key_lines = load_file("ecc_p192.txt").splitlines()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

file_name = 'ecc_p192.txt', mode = 'rb'

    def load_file(file_name, mode="rb"):
        results = None

        try:
            if not test_vectors_available:
                raise FileNotFoundError(errno.ENOENT,
                                        os.strerror(errno.ENOENT),
                                        file_name)

            dir_comps = ("PublicKey", "ECC")
            init_dir = os.path.dirname(pycryptodome_test_vectors.__file__)
            full_file_name = os.path.join(os.path.join(init_dir, *dir_comps), file_name)
            with open(full_file_name, mode) as file_in:
                results = file_in.read()

        except FileNotFoundError:
            warnings.warn("Warning: skipping extended tests for ECC",
                          UserWarning,
                          stacklevel=2)

        if results is None:
>           raise MissingTestVectorException("Missing %s" % file_name)
E           lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt

lib/Crypto/SelfTest/PublicKey/test_import_ECC.py:77: MissingTestVectorException
____________________________________________________ ERROR at setup of TestImport_P192.test_import_private_pkcs8_clear _____________________________________________________

self = <lib.Crypto.SelfTest.PublicKey.test_import_ECC.TestImport_P192 testMethod=test_import_private_pkcs8_clear>, args = ('test_import_private_pkcs8_clear',), kwargs = {}

    def __init__(self, *args, **kwargs):
        super(TestImport_P192, self).__init__(*args, **kwargs)
>       self.ref_private, self.ref_public = create_ref_keys_p192()

lib/Crypto/SelfTest/PublicKey/test_import_ECC.py:191:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
lib/Crypto/SelfTest/PublicKey/test_import_ECC.py:89: in create_ref_keys_p192
    key_lines = load_file("ecc_p192.txt").splitlines()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

file_name = 'ecc_p192.txt', mode = 'rb'

    def load_file(file_name, mode="rb"):
        results = None

        try:
            if not test_vectors_available:
                raise FileNotFoundError(errno.ENOENT,
                                        os.strerror(errno.ENOENT),
                                        file_name)

            dir_comps = ("PublicKey", "ECC")
            init_dir = os.path.dirname(pycryptodome_test_vectors.__file__)
            full_file_name = os.path.join(os.path.join(init_dir, *dir_comps), file_name)
            with open(full_file_name, mode) as file_in:
                results = file_in.read()

        except FileNotFoundError:
            warnings.warn("Warning: skipping extended tests for ECC",
                          UserWarning,
                          stacklevel=2)

        if results is None:
>           raise MissingTestVectorException("Missing %s" % file_name)
E           lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt

lib/Crypto/SelfTest/PublicKey/test_import_ECC.py:77: MissingTestVectorException
_________________________________________________ ERROR at setup of TestImport_P192.test_import_private_pkcs8_encrypted_1 __________________________________________________

self = <lib.Crypto.SelfTest.PublicKey.test_import_ECC.TestImport_P192 testMethod=test_import_private_pkcs8_encrypted_1>, args = ('test_import_private_pkcs8_encrypted_1',)
kwargs = {}

    def __init__(self, *args, **kwargs):
        super(TestImport_P192, self).__init__(*args, **kwargs)
>       self.ref_private, self.ref_public = create_ref_keys_p192()

lib/Crypto/SelfTest/PublicKey/test_import_ECC.py:191:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
lib/Crypto/SelfTest/PublicKey/test_import_ECC.py:89: in create_ref_keys_p192
    key_lines = load_file("ecc_p192.txt").splitlines()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

file_name = 'ecc_p192.txt', mode = 'rb'

    def load_file(file_name, mode="rb"):
        results = None

        try:
            if not test_vectors_available:
                raise FileNotFoundError(errno.ENOENT,
                                        os.strerror(errno.ENOENT),
                                        file_name)

            dir_comps = ("PublicKey", "ECC")
            init_dir = os.path.dirname(pycryptodome_test_vectors.__file__)
            full_file_name = os.path.join(os.path.join(init_dir, *dir_comps), file_name)
            with open(full_file_name, mode) as file_in:
                results = file_in.read()

        except FileNotFoundError:
            warnings.warn("Warning: skipping extended tests for ECC",
                          UserWarning,
                          stacklevel=2)

        if results is None:
>           raise MissingTestVectorException("Missing %s" % file_name)
E           lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt

lib/Crypto/SelfTest/PublicKey/test_import_ECC.py:77: MissingTestVectorException
_________________________________________________ ERROR at setup of TestImport_P192.test_import_private_pkcs8_encrypted_2 __________________________________________________

self = <lib.Crypto.SelfTest.PublicKey.test_import_ECC.TestImport_P192 testMethod=test_import_private_pkcs8_encrypted_2>, args = ('test_import_private_pkcs8_encrypted_2',)
kwargs = {}

    def __init__(self, *args, **kwargs):
        super(TestImport_P192, self).__init__(*args, **kwargs)
>       self.ref_private, self.ref_public = create_ref_keys_p192()

lib/Crypto/SelfTest/PublicKey/test_import_ECC.py:191:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
lib/Crypto/SelfTest/PublicKey/test_import_ECC.py:89: in create_ref_keys_p192
    key_lines = load_file("ecc_p192.txt").splitlines()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

file_name = 'ecc_p192.txt', mode = 'rb'

    def load_file(file_name, mode="rb"):
        results = None

        try:
            if not test_vectors_available:
                raise FileNotFoundError(errno.ENOENT,
                                        os.strerror(errno.ENOENT),
                                        file_name)

            dir_comps = ("PublicKey", "ECC")
            init_dir = os.path.dirname(pycryptodome_test_vectors.__file__)
            full_file_name = os.path.join(os.path.join(init_dir, *dir_comps), file_name)
            with open(full_file_name, mode) as file_in:
                results = file_in.read()

        except FileNotFoundError:
            warnings.warn("Warning: skipping extended tests for ECC",
                          UserWarning,
                          stacklevel=2)

        if results is None:
>           raise MissingTestVectorException("Missing %s" % file_name)
E           lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt

lib/Crypto/SelfTest/PublicKey/test_import_ECC.py:77: MissingTestVectorException

[..]

============================================================================= warnings summary =============================================================================
lib/Crypto/SelfTest/Cipher/test_DES3.py:60
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Cipher/test_DES3.py:60: UserWarning: Warning: skipping extended tests for TDES ECB (TECBMMT2.rsp)
    test_vectors = load_test_vectors(

lib/Crypto/SelfTest/Cipher/test_DES3.py:60
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Cipher/test_DES3.py:60: UserWarning: Warning: skipping extended tests for TDES ECB (TECBMMT3.rsp)
    test_vectors = load_test_vectors(

lib/Crypto/SelfTest/Cipher/test_GCM.py:783
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Cipher/test_GCM.py:783: UserWarning: Warning: skipping extended tests for GCM decrypt
    test_vectors_nist = load_test_vectors(

lib/Crypto/SelfTest/Cipher/test_GCM.py:789
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Cipher/test_GCM.py:789: UserWarning: Warning: skipping extended tests for GCM encrypt
    test_vectors_nist += load_test_vectors(

lib/Crypto/SelfTest/Hash/test_SHAKE.py:94
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Hash/test_SHAKE.py:94: UserWarning: Warning: skipping extended tests for Short Messages KAT SHAKE128
    test_vectors_128 = load_test_vectors(("Hash", "SHA3"),

lib/Crypto/SelfTest/Hash/test_SHAKE.py:113
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Hash/test_SHAKE.py:113: UserWarning: Warning: skipping extended tests for Short Messages KAT SHAKE256
    test_vectors_256 = load_test_vectors(("Hash", "SHA3"),

lib/Crypto/SelfTest/Hash/test_cSHAKE.py:140
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Hash/test_cSHAKE.py:140: UserWarning: Warning: skipping extended tests for Short Message Samples cSHAKE128
    test_vectors = load_test_vectors(("Hash", "SHA3"), file, descr,

lib/Crypto/SelfTest/Hash/test_cSHAKE.py:140
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Hash/test_cSHAKE.py:140: UserWarning: Warning: skipping extended tests for Short Message Samples cSHAKE256
    test_vectors = load_test_vectors(("Hash", "SHA3"), file, descr,

lib/Crypto/SelfTest/Hash/test_cSHAKE.py:140
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Hash/test_cSHAKE.py:140: UserWarning: Warning: skipping extended tests for Custom Message Samples cSHAKE128
    test_vectors = load_test_vectors(("Hash", "SHA3"), file, descr,

lib/Crypto/SelfTest/Hash/test_cSHAKE.py:140
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Hash/test_cSHAKE.py:140: UserWarning: Warning: skipping extended tests for Custom Message Samples cSHAKE256
    test_vectors = load_test_vectors(("Hash", "SHA3"), file, descr,

lib/Crypto/SelfTest/Hash/test_keccak.py:144
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Hash/test_keccak.py:144: UserWarning: Warning: skipping extended tests for Short Messages KAT 224
    test_vectors_224 =  load_test_vectors(("Hash", "keccak"),

lib/Crypto/SelfTest/Hash/test_keccak.py:149
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Hash/test_keccak.py:149: UserWarning: Warning: skipping extended tests for Long Messages KAT 224
    test_vectors_224 += load_test_vectors(("Hash", "keccak"),

lib/Crypto/SelfTest/Hash/test_keccak.py:168
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Hash/test_keccak.py:168: UserWarning: Warning: skipping extended tests for Short Messages KAT 256
    test_vectors_256 =  load_test_vectors(("Hash", "keccak"),

lib/Crypto/SelfTest/Hash/test_keccak.py:173
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Hash/test_keccak.py:173: UserWarning: Warning: skipping extended tests for Long Messages KAT 256
    test_vectors_256 += load_test_vectors(("Hash", "keccak"),

lib/Crypto/SelfTest/Hash/test_keccak.py:193
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Hash/test_keccak.py:193: UserWarning: Warning: skipping extended tests for Short Messages KAT 384
    test_vectors_384 =  load_test_vectors(("Hash", "keccak"),

lib/Crypto/SelfTest/Hash/test_keccak.py:198
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Hash/test_keccak.py:198: UserWarning: Warning: skipping extended tests for Long Messages KAT 384
    test_vectors_384 += load_test_vectors(("Hash", "keccak"),

lib/Crypto/SelfTest/Hash/test_keccak.py:217
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Hash/test_keccak.py:217: UserWarning: Warning: skipping extended tests for Short Messages KAT 512
    test_vectors_512 =  load_test_vectors(("Hash", "keccak"),

lib/Crypto/SelfTest/Hash/test_keccak.py:222
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Hash/test_keccak.py:222: UserWarning: Warning: skipping extended tests for Long Messages KAT 512
    test_vectors_512 += load_test_vectors(("Hash", "keccak"),

../../../../../usr/lib64/python3.8/unittest/suite.py:92
  /usr/lib64/python3.8/unittest/suite.py:92: PytestCollectionWarning: cannot collect test class 'TestSuite' because it has a __init__ constructor (from: lib/Crypto/SelfTest/Protocol/test_SecretSharing.py)
    class TestSuite(BaseTestSuite):

lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:758
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:758: UserWarning: Warning: skipping extended tests for P-192 tests from point-at-infinity.org
    tv_pai = load_test_vectors(("PublicKey", "ECC"),

lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:779
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:779: UserWarning: Warning: skipping extended tests for P-224 tests from point-at-infinity.org
    tv_pai = load_test_vectors(("PublicKey", "ECC"),

lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:800
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:800: UserWarning: Warning: skipping extended tests for P-256 tests from point-at-infinity.org
    tv_pai = load_test_vectors(("PublicKey", "ECC"),

lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:821
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:821: UserWarning: Warning: skipping extended tests for P-384 tests from point-at-infinity.org
    tv_pai = load_test_vectors(("PublicKey", "ECC"),

lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:842
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:842: UserWarning: Warning: skipping extended tests for P-521 tests from point-at-infinity.org
    tv_pai = load_test_vectors(("PublicKey", "ECC"),

lib/Crypto/SelfTest/Signature/test_dss.py:159
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Signature/test_dss.py:159: UserWarning: Warning: skipping extended tests for Signature Verification 186-3
    test_vectors_verify = load_test_vectors(("Signature", "DSA"),

lib/Crypto/SelfTest/Signature/test_dss.py:197
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Signature/test_dss.py:197: UserWarning: Warning: skipping extended tests for Signature Creation 186-3
    test_vectors_sign = load_test_vectors(("Signature", "DSA"),

lib/Crypto/SelfTest/Signature/test_dss.py:307
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Signature/test_dss.py:307: UserWarning: Warning: skipping extended tests for ECDSA Signature Verification 186-3
    test_vectors_verify = load_test_vectors(("Signature", "ECDSA"),

lib/Crypto/SelfTest/Signature/test_dss.py:314
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Signature/test_dss.py:314: UserWarning: Warning: skipping extended tests for ECDSA Signature Verification 186-3
    test_vectors_verify += load_test_vectors(("Signature", "ECDSA"),

lib/Crypto/SelfTest/Signature/test_dss.py:357
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Signature/test_dss.py:357: UserWarning: Warning: skipping extended tests for ECDSA Signature Verification 186-3
    test_vectors_sign = load_test_vectors(("Signature", "ECDSA"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:70
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:70: UserWarning: Warning: skipping extended tests for Signature Verification 186-3
    test_vectors_verify = load_test_vectors(("Signature", "PKCS1-v1.5"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:117
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:117: UserWarning: Warning: skipping extended tests for Signature Generation 186-2
    test_vectors_sign  = load_test_vectors(("Signature", "PKCS1-v1.5"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:122
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:122: UserWarning: Warning: skipping extended tests for Signature Generation 186-3
    test_vectors_sign += load_test_vectors(("Signature", "PKCS1-v1.5"),

lib/Crypto/SelfTest/Signature/test_pss.py:117
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Signature/test_pss.py:117: UserWarning: Warning: skipping extended tests for Signature Verification 186-3
    test_vectors_verify = load_test_vectors(("Signature", "PKCS1-PSS"),

lib/Crypto/SelfTest/Signature/test_pss.py:169
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Signature/test_pss.py:169: UserWarning: Warning: skipping extended tests for Signature Generation 186-2
    test_vectors_sign = load_test_vectors(("Signature", "PKCS1-PSS"),

lib/Crypto/SelfTest/Signature/test_pss.py:174
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Signature/test_pss.py:174: UserWarning: Warning: skipping extended tests for Signature Generation 186-3
    test_vectors_sign += load_test_vectors(("Signature", "PKCS1-PSS"),

lib/Crypto/SelfTest/Cipher/test_CBC.py: 15 warnings
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Cipher/test_CBC.py:317: UserWarning: Warning: skipping extended tests for AES CBC KAT
    test_vectors = load_test_vectors(("Cipher", "AES"),

lib/Crypto/SelfTest/Cipher/test_CBC.py::NistCbcVectors::test_AES_CBCMCT128.rsp
lib/Crypto/SelfTest/Cipher/test_CBC.py::NistCbcVectors::test_AES_CBCMCT192.rsp
lib/Crypto/SelfTest/Cipher/test_CBC.py::NistCbcVectors::test_AES_CBCMCT256.rsp
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Cipher/test_CBC.py:345: UserWarning: Warning: skipping extended tests for AES CBC Montecarlo
    test_vectors = load_test_vectors(("Cipher", "AES"),

lib/Crypto/SelfTest/Cipher/test_CBC.py::NistCbcVectors::test_TDES_TCBCMMT2.rsp
lib/Crypto/SelfTest/Cipher/test_CBC.py::NistCbcVectors::test_TDES_TCBCMMT3.rsp
lib/Crypto/SelfTest/Cipher/test_CBC.py::NistCbcVectors::test_TDES_TCBCinvperm.rsp
lib/Crypto/SelfTest/Cipher/test_CBC.py::NistCbcVectors::test_TDES_TCBCpermop.rsp
lib/Crypto/SelfTest/Cipher/test_CBC.py::NistCbcVectors::test_TDES_TCBCsubtab.rsp
lib/Crypto/SelfTest/Cipher/test_CBC.py::NistCbcVectors::test_TDES_TCBCvarkey.rsp
lib/Crypto/SelfTest/Cipher/test_CBC.py::NistCbcVectors::test_TDES_TCBCvartext.rsp
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Cipher/test_CBC.py:380: UserWarning: Warning: skipping extended tests for TDES CBC KAT
    test_vectors = load_test_vectors(("Cipher", "TDES"),

lib/Crypto/SelfTest/Cipher/test_CCM.py::TestVectorsWycheproof::test_corrupt_decrypt
lib/Crypto/SelfTest/Cipher/test_CCM.py::TestVectorsWycheproof::test_decrypt
lib/Crypto/SelfTest/Cipher/test_CCM.py::TestVectorsWycheproof::test_encrypt
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Cipher/test_CCM.py:843: UserWarning: Warning: skipping extended tests for Wycheproof AES CCM
    self.tv = load_test_vectors_wycheproof(("Cipher", "wycheproof"),

lib/Crypto/SelfTest/Cipher/test_CFB.py: 15 warnings
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Cipher/test_CFB.py:106: UserWarning: Warning: skipping extended tests for AES CFB128 KAT
    test_vectors = load_test_vectors(("Cipher", "AES"),

lib/Crypto/SelfTest/Cipher/test_CFB.py::NistCfbVectors::test_AES_CFB128MCT128.rsp
lib/Crypto/SelfTest/Cipher/test_CFB.py::NistCfbVectors::test_AES_CFB128MCT192.rsp
lib/Crypto/SelfTest/Cipher/test_CFB.py::NistCfbVectors::test_AES_CFB128MCT256.rsp
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Cipher/test_CFB.py:134: UserWarning: Warning: skipping extended tests for AES CFB128 Montecarlo
    test_vectors = load_test_vectors(("Cipher", "AES"),

lib/Crypto/SelfTest/Cipher/test_CFB.py: 15 warnings
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Cipher/test_CFB.py:106: UserWarning: Warning: skipping extended tests for AES CFB8 KAT
    test_vectors = load_test_vectors(("Cipher", "AES"),

lib/Crypto/SelfTest/Cipher/test_CFB.py::NistCfbVectors::test_AES_CFB8MCT128.rsp
lib/Crypto/SelfTest/Cipher/test_CFB.py::NistCfbVectors::test_AES_CFB8MCT192.rsp
lib/Crypto/SelfTest/Cipher/test_CFB.py::NistCfbVectors::test_AES_CFB8MCT256.rsp
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Cipher/test_CFB.py:134: UserWarning: Warning: skipping extended tests for AES CFB8 Montecarlo
    test_vectors = load_test_vectors(("Cipher", "AES"),

lib/Crypto/SelfTest/Cipher/test_CFB.py::NistCfbVectors::test_TDES_TCFB64MMT2.rsp
lib/Crypto/SelfTest/Cipher/test_CFB.py::NistCfbVectors::test_TDES_TCFB64MMT3.rsp
lib/Crypto/SelfTest/Cipher/test_CFB.py::NistCfbVectors::test_TDES_TCFB64invperm.rsp
lib/Crypto/SelfTest/Cipher/test_CFB.py::NistCfbVectors::test_TDES_TCFB64permop.rsp
lib/Crypto/SelfTest/Cipher/test_CFB.py::NistCfbVectors::test_TDES_TCFB64subtab.rsp
lib/Crypto/SelfTest/Cipher/test_CFB.py::NistCfbVectors::test_TDES_TCFB64varkey.rsp
lib/Crypto/SelfTest/Cipher/test_CFB.py::NistCfbVectors::test_TDES_TCFB64vartext.rsp
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Cipher/test_CFB.py:185: UserWarning: Warning: skipping extended tests for TDES CFB64 KAT
    test_vectors = load_test_vectors(("Cipher", "TDES"),

lib/Crypto/SelfTest/Cipher/test_ChaCha20_Poly1305.py::TestVectorsWycheproof::test_corrupt_decrypt
lib/Crypto/SelfTest/Cipher/test_ChaCha20_Poly1305.py::TestVectorsWycheproof::test_decrypt
lib/Crypto/SelfTest/Cipher/test_ChaCha20_Poly1305.py::TestVectorsWycheproof::test_encrypt
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Cipher/test_ChaCha20_Poly1305.py:635: UserWarning: Warning: skipping extended tests for Wycheproof ChaCha20-Poly1305
    result = load_test_vectors_wycheproof(("Cipher", "wycheproof"),

lib/Crypto/SelfTest/Cipher/test_EAX.py::TestVectorsWycheproof::test_corrupt_decrypt
lib/Crypto/SelfTest/Cipher/test_EAX.py::TestVectorsWycheproof::test_decrypt
lib/Crypto/SelfTest/Cipher/test_EAX.py::TestVectorsWycheproof::test_encrypt
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Cipher/test_EAX.py:660: UserWarning: Warning: skipping extended tests for Wycheproof EAX
    self.tv = load_test_vectors_wycheproof(("Cipher", "wycheproof"),

lib/Crypto/SelfTest/Cipher/test_GCM.py::TestVectorsWycheproof::test_corrupt_decrypt
lib/Crypto/SelfTest/Cipher/test_GCM.py::TestVectorsWycheproof::test_decrypt
lib/Crypto/SelfTest/Cipher/test_GCM.py::TestVectorsWycheproof::test_encrypt
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Cipher/test_GCM.py:831: UserWarning: Warning: skipping extended tests for Wycheproof GCM
    self.tv = load_test_vectors_wycheproof(("Cipher", "wycheproof"),

lib/Crypto/SelfTest/Cipher/test_OFB.py: 15 warnings
  /home/tkloczko/rpmbuild/BUILDROOT/python-pycryptodome-3.16.0-2.fc35.x86_64/usr/lib64/python3.8/site-packages/Crypto/SelfTest/Cipher/test_CBC.py:317: UserWarning: Warning: skipping extended tests for AES CBC KAT
    test_vectors = load_test_vectors(("Cipher", "AES"),

lib/Crypto/SelfTest/Cipher/test_OFB.py::NistOfbVectors::test_AES_OFBMCT128.rsp
lib/Crypto/SelfTest/Cipher/test_OFB.py::NistOfbVectors::test_AES_OFBMCT192.rsp
lib/Crypto/SelfTest/Cipher/test_OFB.py::NistOfbVectors::test_AES_OFBMCT256.rsp
  /home/tkloczko/rpmbuild/BUILDROOT/python-pycryptodome-3.16.0-2.fc35.x86_64/usr/lib64/python3.8/site-packages/Crypto/SelfTest/Cipher/test_CBC.py:345: UserWarning: Warning: skipping extended tests for AES CBC Montecarlo
    test_vectors = load_test_vectors(("Cipher", "AES"),

lib/Crypto/SelfTest/Cipher/test_OFB.py::NistOfbVectors::test_TDES_TOFBMMT2.rsp
lib/Crypto/SelfTest/Cipher/test_OFB.py::NistOfbVectors::test_TDES_TOFBMMT3.rsp
lib/Crypto/SelfTest/Cipher/test_OFB.py::NistOfbVectors::test_TDES_TOFBinvperm.rsp
lib/Crypto/SelfTest/Cipher/test_OFB.py::NistOfbVectors::test_TDES_TOFBpermop.rsp
lib/Crypto/SelfTest/Cipher/test_OFB.py::NistOfbVectors::test_TDES_TOFBsubtab.rsp
lib/Crypto/SelfTest/Cipher/test_OFB.py::NistOfbVectors::test_TDES_TOFBvarkey.rsp
lib/Crypto/SelfTest/Cipher/test_OFB.py::NistOfbVectors::test_TDES_TOFBvartext.rsp
  /home/tkloczko/rpmbuild/BUILDROOT/python-pycryptodome-3.16.0-2.fc35.x86_64/usr/lib64/python3.8/site-packages/Crypto/SelfTest/Cipher/test_CBC.py:380: UserWarning: Warning: skipping extended tests for TDES CBC KAT
    test_vectors = load_test_vectors(("Cipher", "TDES"),

lib/Crypto/SelfTest/Hash/test_BLAKE2.py::Blake2bOfficialTestVector::runTest
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Hash/test_BLAKE2.py:305: UserWarning: Warning: skipping extended tests for BLAKE2b
    warnings.warn("Warning: skipping extended tests for %s" % self.name,

lib/Crypto/SelfTest/Hash/test_BLAKE2.py::Blake2sOfficialTestVector::runTest
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Hash/test_BLAKE2.py:305: UserWarning: Warning: skipping extended tests for BLAKE2s
    warnings.warn("Warning: skipping extended tests for %s" % self.name,

lib/Crypto/SelfTest/Hash/test_BLAKE2.py::Blake2bTestVector1::runTest
lib/Crypto/SelfTest/Hash/test_BLAKE2.py::Blake2bTestVector2::runTest
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Hash/test_BLAKE2.py:363: UserWarning: Warning: skipping extended tests for BLAKE2b
    warnings.warn("Warning: skipping extended tests for %s" % self.name,

lib/Crypto/SelfTest/Hash/test_BLAKE2.py::Blake2sTestVector1::runTest
lib/Crypto/SelfTest/Hash/test_BLAKE2.py::Blake2sTestVector2::runTest
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Hash/test_BLAKE2.py:363: UserWarning: Warning: skipping extended tests for BLAKE2s
    warnings.warn("Warning: skipping extended tests for %s" % self.name,

lib/Crypto/SelfTest/Hash/test_CMAC.py::TestVectorsWycheproof::test_create_mac
lib/Crypto/SelfTest/Hash/test_CMAC.py::TestVectorsWycheproof::test_verify_mac
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Hash/test_CMAC.py:373: UserWarning: Warning: skipping extended tests for Wycheproof CMAC
    self.tv = load_test_vectors_wycheproof(("Hash", "wycheproof"),

lib/Crypto/SelfTest/Protocol/test_KDF.py::TestVectorsHKDFWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Protocol/test_KDF.py:670: UserWarning: Warning: skipping extended tests for Wycheproof HMAC (hkdf_sha1_test.json)
    result = load_test_vectors_wycheproof(("Protocol", "wycheproof"),

lib/Crypto/SelfTest/Protocol/test_KDF.py::TestVectorsHKDFWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Protocol/test_KDF.py:670: UserWarning: Warning: skipping extended tests for Wycheproof HMAC (hkdf_sha256_test.json)
    result = load_test_vectors_wycheproof(("Protocol", "wycheproof"),

lib/Crypto/SelfTest/Protocol/test_KDF.py::TestVectorsHKDFWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Protocol/test_KDF.py:670: UserWarning: Warning: skipping extended tests for Wycheproof HMAC (hkdf_sha384_test.json)
    result = load_test_vectors_wycheproof(("Protocol", "wycheproof"),

lib/Crypto/SelfTest/Protocol/test_KDF.py::TestVectorsHKDFWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Protocol/test_KDF.py:670: UserWarning: Warning: skipping extended tests for Wycheproof HMAC (hkdf_sha512_test.json)
    result = load_test_vectors_wycheproof(("Protocol", "wycheproof"),

lib/Crypto/SelfTest/PublicKey/test_DSA.py::DSATest::test_construct_4tuple
  /home/tkloczko/rpmbuild/BUILDROOT/python-pycryptodome-3.16.0-2.fc35.x86_64/usr/lib64/python3.8/site-packages/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:758: UserWarning: Warning: skipping extended tests for P-192 tests from point-at-infinity.org
    tv_pai = load_test_vectors(("PublicKey", "ECC"),

lib/Crypto/SelfTest/PublicKey/test_DSA.py::DSATest::test_construct_4tuple
  /home/tkloczko/rpmbuild/BUILDROOT/python-pycryptodome-3.16.0-2.fc35.x86_64/usr/lib64/python3.8/site-packages/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:779: UserWarning: Warning: skipping extended tests for P-224 tests from point-at-infinity.org
    tv_pai = load_test_vectors(("PublicKey", "ECC"),

lib/Crypto/SelfTest/PublicKey/test_DSA.py::DSATest::test_construct_4tuple
  /home/tkloczko/rpmbuild/BUILDROOT/python-pycryptodome-3.16.0-2.fc35.x86_64/usr/lib64/python3.8/site-packages/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:800: UserWarning: Warning: skipping extended tests for P-256 tests from point-at-infinity.org
    tv_pai = load_test_vectors(("PublicKey", "ECC"),

lib/Crypto/SelfTest/PublicKey/test_DSA.py::DSATest::test_construct_4tuple
  /home/tkloczko/rpmbuild/BUILDROOT/python-pycryptodome-3.16.0-2.fc35.x86_64/usr/lib64/python3.8/site-packages/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:821: UserWarning: Warning: skipping extended tests for P-384 tests from point-at-infinity.org
    tv_pai = load_test_vectors(("PublicKey", "ECC"),

lib/Crypto/SelfTest/PublicKey/test_DSA.py::DSATest::test_construct_4tuple
  /home/tkloczko/rpmbuild/BUILDROOT/python-pycryptodome-3.16.0-2.fc35.x86_64/usr/lib64/python3.8/site-packages/Crypto/SelfTest/PublicKey/test_ECC_NIST.py:842: UserWarning: Warning: skipping extended tests for P-521 tests from point-at-infinity.org
    tv_pai = load_test_vectors(("PublicKey", "ECC"),

lib/Crypto/SelfTest/PublicKey/test_ECC_25519.py::TestEccPoint_Ed25519::test_negate
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/PublicKey/test_ECC_25519.py:114: DeprecationWarning: Please use assertTrue instead.
    self.failUnless(sum.is_point_at_infinity())

lib/Crypto/SelfTest/PublicKey/test_ECC_25519.py::TestEccPoint_Ed25519::test_pai
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/PublicKey/test_ECC_25519.py:108: DeprecationWarning: Please use assertTrue instead.
    self.failUnless(pai.is_point_at_infinity())

lib/Crypto/SelfTest/PublicKey/test_ECC_448.py::TestEccPoint_Ed448::test_negate
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/PublicKey/test_ECC_448.py:114: DeprecationWarning: Please use assertTrue instead.
    self.failUnless(sum.is_point_at_infinity())

lib/Crypto/SelfTest/PublicKey/test_ECC_448.py::TestEccPoint_Ed448::test_pai
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/PublicKey/test_ECC_448.py:108: DeprecationWarning: Please use assertTrue instead.
    self.failUnless(pai.is_point_at_infinity())

lib/Crypto/SelfTest/PublicKey/test_import_ECC.py: 30 warnings
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/PublicKey/test_import_ECC.py:89: UserWarning: Warning: skipping extended tests for ECC
    key_lines = load_file("ecc_p192.txt").splitlines()

lib/Crypto/SelfTest/PublicKey/test_import_ECC.py: 30 warnings
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/PublicKey/test_import_ECC.py:102: UserWarning: Warning: skipping extended tests for ECC
    key_lines = load_file("ecc_p224.txt").splitlines()

lib/Crypto/SelfTest/PublicKey/test_import_ECC.py: 36 warnings
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/PublicKey/test_import_ECC.py:115: UserWarning: Warning: skipping extended tests for ECC
    key_lines = load_file("ecc_p256.txt").splitlines()

lib/Crypto/SelfTest/PublicKey/test_import_ECC.py: 35 warnings
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/PublicKey/test_import_ECC.py:128: UserWarning: Warning: skipping extended tests for ECC
    key_lines = load_file("ecc_p384.txt").splitlines()

lib/Crypto/SelfTest/PublicKey/test_import_ECC.py: 35 warnings
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/PublicKey/test_import_ECC.py:141: UserWarning: Warning: skipping extended tests for ECC
    key_lines = load_file("ecc_p521.txt").splitlines()

lib/Crypto/SelfTest/PublicKey/test_import_ECC.py: 24 warnings
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/PublicKey/test_import_ECC.py:153: UserWarning: Warning: skipping extended tests for ECC
    key_lines = load_file("ecc_ed25519.txt").splitlines()

lib/Crypto/SelfTest/PublicKey/test_import_ECC.py: 21 warnings
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/PublicKey/test_import_ECC.py:160: UserWarning: Warning: skipping extended tests for ECC
    key_lines = load_file("ecc_ed448.txt").splitlines()

lib/Crypto/SelfTest/PublicKey/test_import_RSA.py::TestImport_2048::test_import_openssh_private_clear
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/PublicKey/test_import_RSA.py:549: UserWarning: Warning: skipping extended tests for RSA
    key_file = load_file("rsa2048_private_openssh.pem")

lib/Crypto/SelfTest/PublicKey/test_import_RSA.py::TestImport_2048::test_import_openssh_private_clear
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/PublicKey/test_import_RSA.py:550: UserWarning: Warning: skipping extended tests for RSA
    key_file_old = load_file("rsa2048_private_openssh_old.pem")

lib/Crypto/SelfTest/PublicKey/test_import_RSA.py::TestImport_2048::test_import_openssh_private_password
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/PublicKey/test_import_RSA.py:562: UserWarning: Warning: skipping extended tests for RSA
    key_file = load_file("rsa2048_private_openssh_pwd.pem")

lib/Crypto/SelfTest/PublicKey/test_import_RSA.py::TestImport_2048::test_import_openssh_private_password
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/PublicKey/test_import_RSA.py:563: UserWarning: Warning: skipping extended tests for RSA
    key_file_old = load_file("rsa2048_private_openssh_pwd_old.pem")

lib/Crypto/SelfTest/PublicKey/test_import_RSA.py::TestImport_2048::test_import_openssh_public
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/PublicKey/test_import_RSA.py:537: UserWarning: Warning: skipping extended tests for RSA
    key_file_ref = load_file("rsa2048_private.pem")

lib/Crypto/SelfTest/PublicKey/test_import_RSA.py::TestImport_2048::test_import_openssh_public
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/PublicKey/test_import_RSA.py:538: UserWarning: Warning: skipping extended tests for RSA
    key_file = load_file("rsa2048_public_openssh.txt")

lib/Crypto/SelfTest/Signature/test_eddsa.py::TestVectorsEdDSAWycheproof::test_sign
lib/Crypto/SelfTest/Signature/test_eddsa.py::TestVectorsEdDSAWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Signature/test_eddsa.py:524: UserWarning: Warning: skipping extended tests for Wycheproof ECDSA signature (eddsa_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_eddsa.py::TestVectorsEdDSAWycheproof::test_sign
lib/Crypto/SelfTest/Signature/test_eddsa.py::TestVectorsEdDSAWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Signature/test_eddsa.py:524: UserWarning: Warning: skipping extended tests for Wycheproof ECDSA signature (ed448_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py::TestVectorsWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:293: UserWarning: Warning: skipping extended tests for Wycheproof PKCS#1v1.5 signature (rsa_sig_gen_misc_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py::TestVectorsWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:293: UserWarning: Warning: skipping extended tests for Wycheproof PKCS#1v1.5 signature (rsa_signature_2048_sha224_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py::TestVectorsWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:293: UserWarning: Warning: skipping extended tests for Wycheproof PKCS#1v1.5 signature (rsa_signature_2048_sha256_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py::TestVectorsWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:293: UserWarning: Warning: skipping extended tests for Wycheproof PKCS#1v1.5 signature (rsa_signature_2048_sha384_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py::TestVectorsWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:293: UserWarning: Warning: skipping extended tests for Wycheproof PKCS#1v1.5 signature (rsa_signature_2048_sha3_224_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py::TestVectorsWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:293: UserWarning: Warning: skipping extended tests for Wycheproof PKCS#1v1.5 signature (rsa_signature_2048_sha3_256_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py::TestVectorsWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:293: UserWarning: Warning: skipping extended tests for Wycheproof PKCS#1v1.5 signature (rsa_signature_2048_sha3_384_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py::TestVectorsWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:293: UserWarning: Warning: skipping extended tests for Wycheproof PKCS#1v1.5 signature (rsa_signature_2048_sha3_512_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py::TestVectorsWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:293: UserWarning: Warning: skipping extended tests for Wycheproof PKCS#1v1.5 signature (rsa_signature_2048_sha512_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py::TestVectorsWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:293: UserWarning: Warning: skipping extended tests for Wycheproof PKCS#1v1.5 signature (rsa_signature_2048_sha512_224_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py::TestVectorsWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:293: UserWarning: Warning: skipping extended tests for Wycheproof PKCS#1v1.5 signature (rsa_signature_2048_sha512_256_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py::TestVectorsWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:293: UserWarning: Warning: skipping extended tests for Wycheproof PKCS#1v1.5 signature (rsa_signature_3072_sha256_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py::TestVectorsWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:293: UserWarning: Warning: skipping extended tests for Wycheproof PKCS#1v1.5 signature (rsa_signature_3072_sha384_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py::TestVectorsWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:293: UserWarning: Warning: skipping extended tests for Wycheproof PKCS#1v1.5 signature (rsa_signature_3072_sha3_256_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py::TestVectorsWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:293: UserWarning: Warning: skipping extended tests for Wycheproof PKCS#1v1.5 signature (rsa_signature_3072_sha3_384_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py::TestVectorsWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:293: UserWarning: Warning: skipping extended tests for Wycheproof PKCS#1v1.5 signature (rsa_signature_3072_sha3_512_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py::TestVectorsWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:293: UserWarning: Warning: skipping extended tests for Wycheproof PKCS#1v1.5 signature (rsa_signature_3072_sha512_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py::TestVectorsWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:293: UserWarning: Warning: skipping extended tests for Wycheproof PKCS#1v1.5 signature (rsa_signature_3072_sha512_256_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py::TestVectorsWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:293: UserWarning: Warning: skipping extended tests for Wycheproof PKCS#1v1.5 signature (rsa_signature_4096_sha384_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py::TestVectorsWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:293: UserWarning: Warning: skipping extended tests for Wycheproof PKCS#1v1.5 signature (rsa_signature_4096_sha512_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py::TestVectorsWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:293: UserWarning: Warning: skipping extended tests for Wycheproof PKCS#1v1.5 signature (rsa_signature_4096_sha512_256_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pkcs1_15.py::TestVectorsWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Signature/test_pkcs1_15.py:293: UserWarning: Warning: skipping extended tests for Wycheproof PKCS#1v1.5 signature (rsa_signature_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pss.py::TestVectorsPSSWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Signature/test_pss.py:305: UserWarning: Warning: skipping extended tests for Wycheproof PSS signature (rsa_pss_2048_sha1_mgf1_20_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pss.py::TestVectorsPSSWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Signature/test_pss.py:305: UserWarning: Warning: skipping extended tests for Wycheproof PSS signature (rsa_pss_2048_sha256_mgf1_0_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pss.py::TestVectorsPSSWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Signature/test_pss.py:305: UserWarning: Warning: skipping extended tests for Wycheproof PSS signature (rsa_pss_2048_sha256_mgf1_32_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pss.py::TestVectorsPSSWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Signature/test_pss.py:305: UserWarning: Warning: skipping extended tests for Wycheproof PSS signature (rsa_pss_2048_sha512_256_mgf1_28_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pss.py::TestVectorsPSSWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Signature/test_pss.py:305: UserWarning: Warning: skipping extended tests for Wycheproof PSS signature (rsa_pss_2048_sha512_256_mgf1_32_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pss.py::TestVectorsPSSWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Signature/test_pss.py:305: UserWarning: Warning: skipping extended tests for Wycheproof PSS signature (rsa_pss_3072_sha256_mgf1_32_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pss.py::TestVectorsPSSWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Signature/test_pss.py:305: UserWarning: Warning: skipping extended tests for Wycheproof PSS signature (rsa_pss_4096_sha256_mgf1_32_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pss.py::TestVectorsPSSWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Signature/test_pss.py:305: UserWarning: Warning: skipping extended tests for Wycheproof PSS signature (rsa_pss_4096_sha512_mgf1_32_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

lib/Crypto/SelfTest/Signature/test_pss.py::TestVectorsPSSWycheproof::test_verify
  /home/tkloczko/rpmbuild/BUILD/pycryptodome-3.16.0/lib/Crypto/SelfTest/Signature/test_pss.py:305: UserWarning: Warning: skipping extended tests for Wycheproof PSS signature (rsa_pss_misc_test.json)
    result = load_test_vectors_wycheproof(("Signature", "wycheproof"),

-- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
========================================================================= short test summary info ==========================================================================
ERROR lib/Crypto/SelfTest/Cipher/test_GCM.py::TestVariableLength::runTest - TypeError: __init__() takes 1 positional argument but 2 were given
ERROR lib/Crypto/SelfTest/Cipher/test_SIV.py::TestVectorsWycheproof::test_decrypt - TypeError: __init__() takes 1 positional argument but 2 were given
ERROR lib/Crypto/SelfTest/Cipher/test_SIV.py::TestVectorsWycheproof::test_encrypt - TypeError: __init__() takes 1 positional argument but 2 were given
ERROR lib/Crypto/SelfTest/Cipher/test_SIV.py::TestVectorsWycheproof2::test_decrypt - TypeError: __init__() takes 1 positional argument but 2 were given
ERROR lib/Crypto/SelfTest/Cipher/test_SIV.py::TestVectorsWycheproof2::test_encrypt - TypeError: __init__() takes 1 positional argument but 2 were given
ERROR lib/Crypto/SelfTest/Cipher/test_pkcs1_15.py::TestVectorsWycheproof::test_decrypt - TypeError: __init__() missing 1 required positional argument: 'skip_slow_tests'
ERROR lib/Crypto/SelfTest/Cipher/test_pkcs1_oaep.py::TestVectorsWycheproof::test_decrypt - TypeError: __init__() missing 1 required positional argument: 'skip_slow_tests'
ERROR lib/Crypto/SelfTest/Math/test_Primality.py::test_probable_prime
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P192::test_import_private_pem - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P192::test_import_private_pem_encrypted - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P192::test_import_private_pkcs8_clear - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P192::test_import_private_pkcs8_encrypted_1 - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P192::test_import_private_pkcs8_encrypted_2 - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P192::test_import_private_pkcs8_in_pem_clear - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P192::test_import_public_der - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P192::test_import_public_pem - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P192::test_import_rfc5915_der - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P192::test_import_sec1_compressed - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P192::test_import_sec1_uncompressed - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P192::test_import_x509_der - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P192::test_import_x509_pem - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P224::test_import_private_pem - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p224.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P224::test_import_private_pem_encrypted - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p224.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P224::test_import_private_pkcs8_clear - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p224.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P224::test_import_private_pkcs8_encrypted_1 - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p224.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P224::test_import_private_pkcs8_encrypted_2 - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p224.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P224::test_import_private_pkcs8_in_pem_clear - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p224.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P224::test_import_public_der - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p224.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P224::test_import_public_pem - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p224.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P224::test_import_rfc5915_der - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p224.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P224::test_import_sec1_compressed - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p224.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P224::test_import_sec1_uncompressed - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p224.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P224::test_import_x509_der - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p224.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P224::test_import_x509_pem - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p224.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P256::test_import_openssh_private_clear - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P256::test_import_openssh_private_password - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P256::test_import_openssh_public - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P256::test_import_private_pem - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P256::test_import_private_pem_encrypted - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P256::test_import_private_pem_with_ecparams - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P256::test_import_private_pkcs8_clear - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P256::test_import_private_pkcs8_encrypted_1 - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P256::test_import_private_pkcs8_encrypted_2 - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P256::test_import_private_pkcs8_in_pem_clear - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P256::test_import_public_der - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P256::test_import_public_pem - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P256::test_import_rfc5915_der - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P256::test_import_sec1_compressed - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P256::test_import_sec1_uncompressed - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P256::test_import_x509_der - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P256::test_import_x509_pem - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P384::test_import_openssh_private_clear - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P384::test_import_openssh_private_password - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P384::test_import_openssh_public - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P384::test_import_private_pem - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P384::test_import_private_pem_encrypted - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P384::test_import_private_pkcs8_clear - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P384::test_import_private_pkcs8_encrypted_1 - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P384::test_import_private_pkcs8_encrypted_2 - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P384::test_import_private_pkcs8_in_pem_clear - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P384::test_import_public_der - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P384::test_import_public_pem - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P384::test_import_rfc5915_der - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P384::test_import_sec1_compressed - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P384::test_import_sec1_uncompressed - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P384::test_import_x509_der - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P384::test_import_x509_pem - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P521::test_import_openssh_private_clear - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P521::test_import_openssh_private_password - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P521::test_import_openssh_public - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P521::test_import_private_pem - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P521::test_import_private_pem_encrypted - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P521::test_import_private_pkcs8_clear - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P521::test_import_private_pkcs8_encrypted_1 - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P521::test_import_private_pkcs8_encrypted_2 - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P521::test_import_private_pkcs8_in_pem_clear - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P521::test_import_public_der - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P521::test_import_public_pem - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P521::test_import_rfc5915_der - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P521::test_import_sec1_compressed - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P521::test_import_sec1_uncompressed - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P521::test_import_x509_der - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_P521::test_import_x509_pem - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P192::test_byte_or_string_passphrase - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P192::test_compressed_curve - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P192::test_error_params1 - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P192::test_export_private_pem_clear - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P192::test_export_private_pem_encrypted - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P192::test_export_private_pkcs8_and_pem_1 - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P192::test_export_private_pkcs8_and_pem_2 - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P192::test_export_private_pkcs8_clear - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P192::test_export_private_pkcs8_encrypted - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P192::test_export_public_der_compressed - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P192::test_export_public_der_uncompressed - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P192::test_export_public_pem_compressed - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P192::test_export_public_pem_uncompressed - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P192::test_export_public_sec1_compressed - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P192::test_export_public_sec1_uncompressed - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P192::test_export_rfc5915_private_der - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P192::test_prng - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p192.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P224::test_byte_or_string_passphrase - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p224.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P224::test_compressed_curve - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p224.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P224::test_error_params1 - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p224.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P224::test_export_private_pem_clear - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p224.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P224::test_export_private_pem_encrypted - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p224.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P224::test_export_private_pkcs8_and_pem_1 - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p224.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P224::test_export_private_pkcs8_and_pem_2 - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p224.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P224::test_export_private_pkcs8_clear - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p224.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P224::test_export_private_pkcs8_encrypted - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p224.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P224::test_export_public_der_compressed - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p224.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P224::test_export_public_der_uncompressed - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p224.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P224::test_export_public_pem_compressed - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p224.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P224::test_export_public_pem_uncompressed - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p224.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P224::test_export_public_sec1_compressed - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p224.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P224::test_export_public_sec1_uncompressed - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p224.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P224::test_export_rfc5915_private_der - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p224.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P224::test_prng - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p224.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P256::test_byte_or_string_passphrase - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P256::test_compressed_curve - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P256::test_error_params1 - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P256::test_export_openssh_compressed - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P256::test_export_openssh_uncompressed - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P256::test_export_private_pem_clear - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P256::test_export_private_pem_encrypted - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P256::test_export_private_pkcs8_and_pem_1 - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P256::test_export_private_pkcs8_and_pem_2 - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P256::test_export_private_pkcs8_clear - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P256::test_export_private_pkcs8_encrypted - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P256::test_export_public_der_compressed - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P256::test_export_public_der_uncompressed - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P256::test_export_public_pem_compressed - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P256::test_export_public_pem_uncompressed - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P256::test_export_public_sec1_compressed - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P256::test_export_public_sec1_uncompressed - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P256::test_export_rfc5915_private_der - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P256::test_prng - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p256.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P384::test_byte_or_string_passphrase - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P384::test_compressed_curve - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P384::test_error_params1 - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P384::test_export_openssh_compressed - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P384::test_export_openssh_uncompressed - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P384::test_export_private_pem_clear - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P384::test_export_private_pem_encrypted - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P384::test_export_private_pkcs8_and_pem_1 - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P384::test_export_private_pkcs8_and_pem_2 - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P384::test_export_private_pkcs8_clear - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P384::test_export_private_pkcs8_encrypted - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P384::test_export_public_der_compressed - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P384::test_export_public_der_uncompressed - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P384::test_export_public_pem_compressed - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P384::test_export_public_pem_uncompressed - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P384::test_export_public_sec1_compressed - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P384::test_export_public_sec1_uncompressed - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P384::test_export_rfc5915_private_der - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P384::test_prng - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p384.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P521::test_byte_or_string_passphrase - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P521::test_compressed_curve - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P521::test_error_params1 - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P521::test_export_openssh_compressed - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P521::test_export_openssh_uncompressed - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P521::test_export_private_pem_clear - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P521::test_export_private_pem_encrypted - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P521::test_export_private_pkcs8_and_pem_1 - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P521::test_export_private_pkcs8_and_pem_2 - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P521::test_export_private_pkcs8_clear - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P521::test_export_private_pkcs8_encrypted - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P521::test_export_public_der_compressed - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P521::test_export_public_der_uncompressed - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P521::test_export_public_pem_compressed - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P521::test_export_public_pem_uncompressed - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P521::test_export_public_sec1_compressed - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P521::test_export_public_sec1_uncompressed - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P521::test_export_rfc5915_private_der - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_P521::test_prng - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_p521.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_Ed25519::test_import_openssh_private_clear - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_ed25519.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_Ed25519::test_import_openssh_private_password - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_ed25519.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_Ed25519::test_import_openssh_public - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_ed25519.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_Ed25519::test_import_pkcs8_der - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_ed25519.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_Ed25519::test_import_private_pem - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_ed25519.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_Ed25519::test_import_private_pem_encrypted - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_ed25519.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_Ed25519::test_import_private_pkcs8_encrypted_1 - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_ed25519.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_Ed25519::test_import_private_pkcs8_encrypted_2 - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_ed25519.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_Ed25519::test_import_public_der - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_ed25519.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_Ed25519::test_import_public_pem - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_ed25519.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_Ed25519::test_import_x509_der - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_ed25519.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_Ed25519::test_import_x509_pem - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_ed25519.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_Ed25519::test_byte_or_string_passphrase - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_ed25519.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_Ed25519::test_error_params1 - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_ed25519.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_Ed25519::test_export_openssh - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_ed25519.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_Ed25519::test_export_private_pem_clear - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_ed25519.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_Ed25519::test_export_private_pem_encrypted - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_ed25519.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_Ed25519::test_export_private_pkcs8_clear - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_ed25519.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_Ed25519::test_export_private_pkcs8_encrypted - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_ed25519.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_Ed25519::test_export_public_der - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_ed25519.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_Ed25519::test_export_public_pem - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_ed25519.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_Ed25519::test_export_public_sec1 - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_ed25519.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_Ed25519::test_export_raw - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_ed25519.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_Ed25519::test_prng - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_ed25519.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_Ed448::test_import_pkcs8_der - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_ed448.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_Ed448::test_import_private_pem - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_ed448.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_Ed448::test_import_private_pem_encrypted - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_ed448.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_Ed448::test_import_private_pkcs8_encrypted_1 - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_ed448.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_Ed448::test_import_private_pkcs8_encrypted_2 - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_ed448.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_Ed448::test_import_public_der - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_ed448.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_Ed448::test_import_public_pem - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_ed448.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_Ed448::test_import_x509_der - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_ed448.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestImport_Ed448::test_import_x509_pem - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_ed448.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_Ed448::test_byte_or_string_passphrase - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_ed448.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_Ed448::test_error_params1 - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_ed448.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_Ed448::test_export_openssh - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_ed448.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_Ed448::test_export_private_pem_clear - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_ed448.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_Ed448::test_export_private_pem_encrypted - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_ed448.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_Ed448::test_export_private_pkcs8_clear - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_ed448.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_Ed448::test_export_private_pkcs8_encrypted - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_ed448.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_Ed448::test_export_public_der - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_ed448.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_Ed448::test_export_public_pem - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_ed448.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_Ed448::test_export_public_sec1 - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_ed448.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_Ed448::test_export_raw - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_ed448.txt
ERROR lib/Crypto/SelfTest/PublicKey/test_import_ECC.py::TestExport_Ed448::test_prng - lib.Crypto.SelfTest.PublicKey.test_import_ECC.MissingTestVectorException: Missing ecc_ed448.txt
ERROR lib/Crypto/SelfTest/Signature/test_dss.py::TestVectorsDSAWycheproof::test_verify - TypeError: __init__() missing 1 required positional argument: 'slow_tests'
ERROR lib/Crypto/SelfTest/Signature/test_dss.py::TestVectorsECDSAWycheproof::test_verify - TypeError: __init__() missing 1 required positional argument: 'slow_tests'
FAILED lib/Crypto/SelfTest/Cipher/test_CBC.py::BlockChainingTests::test_IV_iv_attributes - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CBC.py::BlockChainingTests::test_block_size_128 - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CBC.py::BlockChainingTests::test_block_size_64 - AttributeError: 'BlockChainingTests' object has no attribute 'des3_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CBC.py::BlockChainingTests::test_bytearray - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CBC.py::BlockChainingTests::test_data_must_be_bytes - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CBC.py::BlockChainingTests::test_either_encrypt_or_decrypt - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CBC.py::BlockChainingTests::test_iv - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CBC.py::BlockChainingTests::test_iv_must_be_bytes - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CBC.py::BlockChainingTests::test_iv_with_matching_length - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CBC.py::BlockChainingTests::test_loopback_128 - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CBC.py::BlockChainingTests::test_loopback_64 - AttributeError: 'BlockChainingTests' object has no attribute 'des3_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CBC.py::BlockChainingTests::test_memoryview - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CBC.py::BlockChainingTests::test_null_encryption_decryption - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CBC.py::BlockChainingTests::test_only_one_iv - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CBC.py::BlockChainingTests::test_output_param - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CBC.py::BlockChainingTests::test_output_param_memoryview - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CBC.py::BlockChainingTests::test_output_param_neg - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CBC.py::BlockChainingTests::test_output_param_same_buffer - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CBC.py::BlockChainingTests::test_unaligned_data_128 - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CBC.py::BlockChainingTests::test_unaligned_data_64 - AttributeError: 'BlockChainingTests' object has no attribute 'des3_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CBC.py::BlockChainingTests::test_unknown_parameters - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CFB.py::BlockChainingTests::test_IV_iv_attributes - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CFB.py::BlockChainingTests::test_block_size_128 - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CFB.py::BlockChainingTests::test_block_size_64 - AttributeError: 'BlockChainingTests' object has no attribute 'des3_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CFB.py::BlockChainingTests::test_bytearray - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CFB.py::BlockChainingTests::test_data_must_be_bytes - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CFB.py::BlockChainingTests::test_either_encrypt_or_decrypt - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CFB.py::BlockChainingTests::test_iv - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CFB.py::BlockChainingTests::test_iv_must_be_bytes - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CFB.py::BlockChainingTests::test_iv_with_matching_length - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CFB.py::BlockChainingTests::test_loopback_128 - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CFB.py::BlockChainingTests::test_loopback_64 - AttributeError: 'BlockChainingTests' object has no attribute 'des3_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CFB.py::BlockChainingTests::test_memoryview - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CFB.py::BlockChainingTests::test_null_encryption_decryption - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CFB.py::BlockChainingTests::test_only_one_iv - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CFB.py::BlockChainingTests::test_output_param - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CFB.py::BlockChainingTests::test_output_param_memoryview - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CFB.py::BlockChainingTests::test_output_param_neg - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CFB.py::BlockChainingTests::test_output_param_same_buffer - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CFB.py::BlockChainingTests::test_unaligned_data_128 - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CFB.py::BlockChainingTests::test_unaligned_data_64 - AttributeError: 'BlockChainingTests' object has no attribute 'des3_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_CFB.py::BlockChainingTests::test_unknown_parameters - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OFB.py::BlockChainingTests::test_IV_iv_attributes - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OFB.py::BlockChainingTests::test_block_size_128 - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OFB.py::BlockChainingTests::test_block_size_64 - AttributeError: 'BlockChainingTests' object has no attribute 'des3_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OFB.py::BlockChainingTests::test_bytearray - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OFB.py::BlockChainingTests::test_data_must_be_bytes - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OFB.py::BlockChainingTests::test_either_encrypt_or_decrypt - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OFB.py::BlockChainingTests::test_iv - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OFB.py::BlockChainingTests::test_iv_must_be_bytes - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OFB.py::BlockChainingTests::test_iv_with_matching_length - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OFB.py::BlockChainingTests::test_loopback_128 - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OFB.py::BlockChainingTests::test_loopback_64 - AttributeError: 'BlockChainingTests' object has no attribute 'des3_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OFB.py::BlockChainingTests::test_memoryview - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OFB.py::BlockChainingTests::test_null_encryption_decryption - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OFB.py::BlockChainingTests::test_only_one_iv - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OFB.py::BlockChainingTests::test_output_param - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OFB.py::BlockChainingTests::test_output_param_memoryview - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OFB.py::BlockChainingTests::test_output_param_neg - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OFB.py::BlockChainingTests::test_output_param_same_buffer - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OFB.py::BlockChainingTests::test_unaligned_data_128 - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OFB.py::BlockChainingTests::test_unaligned_data_64 - AttributeError: 'BlockChainingTests' object has no attribute 'des3_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OFB.py::BlockChainingTests::test_unknown_parameters - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OpenPGP.py::BlockChainingTests::test_IV_iv_attributes - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OpenPGP.py::BlockChainingTests::test_block_size_128 - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OpenPGP.py::BlockChainingTests::test_block_size_64 - AttributeError: 'BlockChainingTests' object has no attribute 'des3_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OpenPGP.py::BlockChainingTests::test_bytearray - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OpenPGP.py::BlockChainingTests::test_data_must_be_bytes - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OpenPGP.py::BlockChainingTests::test_either_encrypt_or_decrypt - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OpenPGP.py::BlockChainingTests::test_iv - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OpenPGP.py::BlockChainingTests::test_iv_must_be_bytes - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OpenPGP.py::BlockChainingTests::test_iv_with_matching_length - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OpenPGP.py::BlockChainingTests::test_loopback_128 - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OpenPGP.py::BlockChainingTests::test_loopback_64 - AttributeError: 'BlockChainingTests' object has no attribute 'des3_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OpenPGP.py::BlockChainingTests::test_memoryview - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OpenPGP.py::BlockChainingTests::test_null_encryption_decryption - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OpenPGP.py::BlockChainingTests::test_only_one_iv - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OpenPGP.py::BlockChainingTests::test_output_param - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OpenPGP.py::BlockChainingTests::test_output_param_memoryview - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OpenPGP.py::BlockChainingTests::test_output_param_neg - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OpenPGP.py::BlockChainingTests::test_output_param_same_buffer - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OpenPGP.py::BlockChainingTests::test_unaligned_data_128 - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OpenPGP.py::BlockChainingTests::test_unaligned_data_64 - AttributeError: 'BlockChainingTests' object has no attribute 'des3_mode'
FAILED lib/Crypto/SelfTest/Cipher/test_OpenPGP.py::BlockChainingTests::test_unknown_parameters - AttributeError: 'BlockChainingTests' object has no attribute 'aes_mode'
FAILED lib/Crypto/SelfTest/Hash/test_BLAKE2.py::Blake2Test::test_bytearray - AttributeError: 'Blake2Test' object has no attribute 'BLAKE2'
FAILED lib/Crypto/SelfTest/Hash/test_BLAKE2.py::Blake2Test::test_default_digest_size - AttributeError: 'Blake2Test' object has no attribute 'BLAKE2'
FAILED lib/Crypto/SelfTest/Hash/test_BLAKE2.py::Blake2Test::test_digest - AttributeError: 'Blake2Test' object has no attribute 'BLAKE2'
FAILED lib/Crypto/SelfTest/Hash/test_BLAKE2.py::Blake2Test::test_hex_digest - AttributeError: 'Blake2Test' object has no attribute 'BLAKE2'
FAILED lib/Crypto/SelfTest/Hash/test_BLAKE2.py::Blake2Test::test_hexverify - AttributeError: 'Blake2Test' object has no attribute 'BLAKE2'
FAILED lib/Crypto/SelfTest/Hash/test_BLAKE2.py::Blake2Test::test_memoryview - AttributeError: 'Blake2Test' object has no attribute 'BLAKE2'
FAILED lib/Crypto/SelfTest/Hash/test_BLAKE2.py::Blake2Test::test_new_negative - AttributeError: 'Blake2Test' object has no attribute 'BLAKE2'
FAILED lib/Crypto/SelfTest/Hash/test_BLAKE2.py::Blake2Test::test_new_positive - AttributeError: 'Blake2Test' object has no attribute 'BLAKE2'
FAILED lib/Crypto/SelfTest/Hash/test_BLAKE2.py::Blake2Test::test_oid - AttributeError: 'Blake2Test' object has no attribute 'oid_variant'
FAILED lib/Crypto/SelfTest/Hash/test_BLAKE2.py::Blake2Test::test_update - AttributeError: 'Blake2Test' object has no attribute 'BLAKE2'
FAILED lib/Crypto/SelfTest/Hash/test_BLAKE2.py::Blake2Test::test_update_after_digest - AttributeError: 'Blake2Test' object has no attribute 'BLAKE2'
FAILED lib/Crypto/SelfTest/Hash/test_BLAKE2.py::Blake2Test::test_update_negative - AttributeError: 'Blake2Test' object has no attribute 'BLAKE2'
FAILED lib/Crypto/SelfTest/Hash/test_BLAKE2.py::Blake2Test::test_verify - AttributeError: 'Blake2Test' object has no attribute 'BLAKE2'
FAILED lib/Crypto/SelfTest/Hash/test_BLAKE2.py::Blake2OfficialTestVector::runTest - AttributeError: 'Blake2OfficialTestVector' object has no attribute 'name'
FAILED lib/Crypto/SelfTest/Hash/test_BLAKE2.py::Blake2TestVector1::runTest - AttributeError: 'Blake2TestVector1' object has no attribute 'name'
FAILED lib/Crypto/SelfTest/Hash/test_BLAKE2.py::Blake2TestVector2::runTest - AttributeError: 'Blake2TestVector2' object has no attribute 'name'
FAILED lib/Crypto/SelfTest/Hash/test_HMAC.py::HMAC_Module_and_Instance_Test::runTest - AttributeError: 'str' object has no attribute 'items'
FAILED lib/Crypto/SelfTest/Hash/test_KMAC.py::KMACTest::test_bytearray - AttributeError: 'KMACTest' object has no attribute 'KMAC'
FAILED lib/Crypto/SelfTest/Hash/test_KMAC.py::KMACTest::test_default_digest_size - AttributeError: 'KMACTest' object has no attribute 'KMAC'
FAILED lib/Crypto/SelfTest/Hash/test_KMAC.py::KMACTest::test_digest - AttributeError: 'KMACTest' object has no attribute 'KMAC'
FAILED lib/Crypto/SelfTest/Hash/test_KMAC.py::KMACTest::test_hex_digest - AttributeError: 'KMACTest' object has no attribute 'KMAC'
FAILED lib/Crypto/SelfTest/Hash/test_KMAC.py::KMACTest::test_hexverify - AttributeError: 'KMACTest' object has no attribute 'KMAC'
FAILED lib/Crypto/SelfTest/Hash/test_KMAC.py::KMACTest::test_memoryview - AttributeError: 'KMACTest' object has no attribute 'KMAC'
FAILED lib/Crypto/SelfTest/Hash/test_KMAC.py::KMACTest::test_new_negative - AttributeError: 'KMACTest' object has no attribute 'KMAC'
FAILED lib/Crypto/SelfTest/Hash/test_KMAC.py::KMACTest::test_new_positive - AttributeError: 'KMACTest' object has no attribute 'KMAC'
FAILED lib/Crypto/SelfTest/Hash/test_KMAC.py::KMACTest::test_oid - AttributeError: 'KMACTest' object has no attribute 'oid_variant'
FAILED lib/Crypto/SelfTest/Hash/test_KMAC.py::KMACTest::test_update - AttributeError: 'KMACTest' object has no attribute 'KMAC'
FAILED lib/Crypto/SelfTest/Hash/test_KMAC.py::KMACTest::test_update_after_digest - AttributeError: 'KMACTest' object has no attribute 'KMAC'
FAILED lib/Crypto/SelfTest/Hash/test_KMAC.py::KMACTest::test_update_negative - AttributeError: 'KMACTest' object has no attribute 'KMAC'
FAILED lib/Crypto/SelfTest/Hash/test_KMAC.py::KMACTest::test_verify - AttributeError: 'KMACTest' object has no attribute 'KMAC'
FAILED lib/Crypto/SelfTest/Hash/test_SHAKE.py::SHAKETest::test_digest - AttributeError: 'SHAKETest' object has no attribute 'shake'
FAILED lib/Crypto/SelfTest/Hash/test_SHAKE.py::SHAKETest::test_new_positive - AttributeError: 'SHAKETest' object has no attribute 'shake'
FAILED lib/Crypto/SelfTest/Hash/test_SHAKE.py::SHAKETest::test_update - AttributeError: 'SHAKETest' object has no attribute 'shake'
FAILED lib/Crypto/SelfTest/Hash/test_SHAKE.py::SHAKETest::test_update_after_read - AttributeError: 'SHAKETest' object has no attribute 'shake'
FAILED lib/Crypto/SelfTest/Hash/test_SHAKE.py::SHAKETest::test_update_negative - AttributeError: 'SHAKETest' object has no attribute 'shake'
FAILED lib/Crypto/SelfTest/Hash/test_TupleHash.py::TupleHashTest::test_bytearray - AttributeError: 'TupleHashTest' object has no attribute 'TupleHash'
FAILED lib/Crypto/SelfTest/Hash/test_TupleHash.py::TupleHashTest::test_default_digest_size - AttributeError: 'TupleHashTest' object has no attribute 'TupleHash'
FAILED lib/Crypto/SelfTest/Hash/test_TupleHash.py::TupleHashTest::test_digest - AttributeError: 'TupleHashTest' object has no attribute 'TupleHash'
FAILED lib/Crypto/SelfTest/Hash/test_TupleHash.py::TupleHashTest::test_hex_digest - AttributeError: 'TupleHashTest' object has no attribute 'TupleHash'
FAILED lib/Crypto/SelfTest/Hash/test_TupleHash.py::TupleHashTest::test_memoryview - AttributeError: 'TupleHashTest' object has no attribute 'TupleHash'
FAILED lib/Crypto/SelfTest/Hash/test_TupleHash.py::TupleHashTest::test_new_negative - AttributeError: 'TupleHashTest' object has no attribute 'TupleHash'
FAILED lib/Crypto/SelfTest/Hash/test_TupleHash.py::TupleHashTest::test_new_positive - AttributeError: 'TupleHashTest' object has no attribute 'TupleHash'
FAILED lib/Crypto/SelfTest/Hash/test_TupleHash.py::TupleHashTest::test_update - AttributeError: 'TupleHashTest' object has no attribute 'TupleHash'
FAILED lib/Crypto/SelfTest/Hash/test_TupleHash.py::TupleHashTest::test_update_after_digest - AttributeError: 'TupleHashTest' object has no attribute 'TupleHash'
FAILED lib/Crypto/SelfTest/Hash/test_TupleHash.py::TupleHashTest::test_update_negative - AttributeError: 'TupleHashTest' object has no attribute 'TupleHash'
FAILED lib/Crypto/SelfTest/Hash/test_cSHAKE.py::cSHAKETest::test_digest - AttributeError: 'cSHAKETest' object has no attribute 'cshake'
FAILED lib/Crypto/SelfTest/Hash/test_cSHAKE.py::cSHAKETest::test_new_positive - AttributeError: 'cSHAKETest' object has no attribute 'cshake'
FAILED lib/Crypto/SelfTest/Hash/test_cSHAKE.py::cSHAKETest::test_shake - AttributeError: 'cSHAKETest' object has no attribute 'cshake'
FAILED lib/Crypto/SelfTest/Hash/test_cSHAKE.py::cSHAKETest::test_update - AttributeError: 'cSHAKETest' object has no attribute 'cshake'
FAILED lib/Crypto/SelfTest/Hash/test_cSHAKE.py::cSHAKETest::test_update_after_read - AttributeError: 'cSHAKETest' object has no attribute 'cshake'
FAILED lib/Crypto/SelfTest/Hash/test_cSHAKE.py::cSHAKETest::test_update_negative - AttributeError: 'cSHAKETest' object has no attribute 'cshake'
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_abs - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_addition - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_and - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_bool - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_conversion_from_bytes - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_conversion_to_bytes - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_conversion_to_int - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_conversion_to_str - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_equality_with_ints - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_fail_if_divisible_by - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_floor_div - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_gcd - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_get_bit - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_hex - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_in_place_add - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_in_place_left_shift - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_in_place_modulus - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_in_place_mul - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_in_place_right_shift - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_in_place_sub - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_inequality - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_init_and_equality - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_inplace_exponentiation - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_inplace_inverse - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_inverse - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_is_negative - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_jacobi_symbol - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_jacobi_symbol_wikipedia - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_lcm - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_less_than - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_less_than_or_equal - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_modular_exponentiation - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_more_than - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_more_than_or_equal - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_multiplication - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_multiply_accumulate - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_odd_even - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_or - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_perfect_square - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_remainder - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_repr - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_right_shift - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_set - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_simple_exponentiation - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_size_in_bits - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_size_in_bytes - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_sqrt - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_sqrt_module - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Math/test_Numbers.py::TestIntegerBase::test_subtraction - NotImplementedError: To be implemented
FAILED lib/Crypto/SelfTest/Signature/test_eddsa.py::TestVectorsEdDSAWycheproof::test_sign - TypeError: test_sign() missing 1 required positional argument: 'tv'
FAILED lib/Crypto/SelfTest/Signature/test_eddsa.py::TestVectorsEdDSAWycheproof::test_verify - TypeError: test_verify() missing 1 required positional argument: 'tv'
================================================== 186 failed, 1348 passed, 413 warnings, 221 errors in 62.72s (0:01:02) ===================================================

And full log python-pycryptodome-pytest.txt

@kloczek
Copy link
Author

kloczek commented Nov 27, 2022

FYI: in my build procedure I've added all. those units to --deselect list too have some working baseline.

@kloczek
Copy link
Author

kloczek commented Feb 16, 2023

gentle ping .. any update? 🤔

@kloczek
Copy link
Author

kloczek commented May 19, 2023

This can be closed now as #731 provides update details.

@kloczek kloczek closed this as completed May 19, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants