Mon Mar 19 09:01:46 2018 UTC ()
py-cryptography[_vectors]: updated to 2.2

2.2:
BACKWARDS INCOMPATIBLE: Support for Python 2.6 has been dropped.
Resolved a bug in HKDF that incorrectly constrained output size.
Added :class:~cryptography.hazmat.primitives.asymmetric.ec.BrainpoolP256R1, :class:~cryptography.hazmat.primitives.asymmetric.ec.BrainpoolP384R1, and :class:~cryptography.hazmat.primitives.asymmetric.ec.BrainpoolP512R1 to support inter-operating with systems like German smart meters.
Added token rotation support to :doc:Fernet </fernet> with :meth:~cryptography.fernet.MultiFernet.rotate.
Fixed a memory leak in :func:~cryptography.hazmat.primitives.asymmetric.ec.derive_private_key.
Added support for AES key wrapping with padding via :func:~cryptography.hazmat.primitives.keywrap.aes_key_wrap_with_padding and :func:~cryptography.hazmat.primitives.keywrap.aes_key_unwrap_with_padding .
Allow loading DSA keys with 224 bit q.


(adam)
diff -r1.63 -r1.64 pkgsrc/security/py-cryptography/Makefile
diff -r1.49 -r1.50 pkgsrc/security/py-cryptography/distinfo
diff -r1.11 -r1.12 pkgsrc/security/py-cryptography_vectors/Makefile
diff -r1.11 -r1.12 pkgsrc/security/py-cryptography_vectors/distinfo
diff -r1.5 -r1.6 pkgsrc/security/py-cryptography_vectors/PLIST

cvs diff -r1.63 -r1.64 pkgsrc/security/py-cryptography/Makefile (expand / switch to unified diff)

--- pkgsrc/security/py-cryptography/Makefile 2017/11/30 08:23:27 1.63
+++ pkgsrc/security/py-cryptography/Makefile 2018/03/19 09:01:46 1.64
@@ -1,16 +1,16 @@ @@ -1,16 +1,16 @@
1# $NetBSD: Makefile,v 1.63 2017/11/30 08:23:27 adam Exp $ 1# $NetBSD: Makefile,v 1.64 2018/03/19 09:01:46 adam Exp $
2 2
3DISTNAME= cryptography-2.1.4 3DISTNAME= cryptography-2.2
4PKGNAME= ${PYPKGPREFIX}-${DISTNAME} 4PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
5CATEGORIES= security python 5CATEGORIES= security python
6MASTER_SITES= ${MASTER_SITE_PYPI:=c/cryptography/} 6MASTER_SITES= ${MASTER_SITE_PYPI:=c/cryptography/}
7 7
8MAINTAINER= pkgsrc-users@NetBSD.org 8MAINTAINER= pkgsrc-users@NetBSD.org
9HOMEPAGE= https://pypi.python.org/pypi/cryptography/ 9HOMEPAGE= https://pypi.python.org/pypi/cryptography/
10COMMENT= Cryptographic recipes and primitives for Python 10COMMENT= Cryptographic recipes and primitives for Python
11LICENSE= apache-2.0 OR modified-bsd 11LICENSE= apache-2.0 OR modified-bsd
12 12
13DEPENDS+= ${PYPKGPREFIX}-asn1crypto-[0-9]*:../../security/py-asn1crypto 13DEPENDS+= ${PYPKGPREFIX}-asn1crypto-[0-9]*:../../security/py-asn1crypto
14DEPENDS+= ${PYPKGPREFIX}-cffi>=1.8.2:../../devel/py-cffi 14DEPENDS+= ${PYPKGPREFIX}-cffi>=1.8.2:../../devel/py-cffi
15DEPENDS+= ${PYPKGPREFIX}-cparser>=2.10:../../devel/py-cparser 15DEPENDS+= ${PYPKGPREFIX}-cparser>=2.10:../../devel/py-cparser
16DEPENDS+= ${PYPKGPREFIX}-idna-[0-9]*:../../www/py-idna 16DEPENDS+= ${PYPKGPREFIX}-idna-[0-9]*:../../www/py-idna

cvs diff -r1.49 -r1.50 pkgsrc/security/py-cryptography/distinfo (expand / switch to unified diff)

--- pkgsrc/security/py-cryptography/distinfo 2017/11/30 08:23:27 1.49
+++ pkgsrc/security/py-cryptography/distinfo 2018/03/19 09:01:46 1.50
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1$NetBSD: distinfo,v 1.49 2017/11/30 08:23:27 adam Exp $ 1$NetBSD: distinfo,v 1.50 2018/03/19 09:01:46 adam Exp $
2 2
3SHA1 (cryptography-2.1.4.tar.gz) = 0c4d8104c78e6e3e94ca8bdb1d99a365f29673e7 3SHA1 (cryptography-2.2.tar.gz) = 629bd599c009aa902f9ec49f9e84964ef7d084b8
4RMD160 (cryptography-2.1.4.tar.gz) = f3fc128c3e62fd71a34d1d180bda79ef0e13ffe0 4RMD160 (cryptography-2.2.tar.gz) = 0404ccbebeb8d7d5235fdf633440ab2156645958
5SHA512 (cryptography-2.1.4.tar.gz) = f749cb4384badc174a842514e5a4fee2ed01ab9c716799d8d9d5301f6d2d97b6c41deb9e425f48928b639fa34bef8c05529ed7e5b777ef5ca75c244f8fda8fd4 5SHA512 (cryptography-2.2.tar.gz) = 93fdde2461f7682521c94696c8de66d73793d972c230731cf48fba00d0adcae8880473ff221519cc7208cdf841eb9a86a54a98d5c270dbd2935045cff8403928
6Size (cryptography-2.1.4.tar.gz) = 441557 bytes 6Size (cryptography-2.2.tar.gz) = 443546 bytes

cvs diff -r1.11 -r1.12 pkgsrc/security/py-cryptography_vectors/Makefile (expand / switch to unified diff)

--- pkgsrc/security/py-cryptography_vectors/Makefile 2017/11/30 08:23:27 1.11
+++ pkgsrc/security/py-cryptography_vectors/Makefile 2018/03/19 09:01:46 1.12
@@ -1,16 +1,16 @@ @@ -1,16 +1,16 @@
1# $NetBSD: Makefile,v 1.11 2017/11/30 08:23:27 adam Exp $ 1# $NetBSD: Makefile,v 1.12 2018/03/19 09:01:46 adam Exp $
2 2
3DISTNAME= cryptography_vectors-2.1.4 3DISTNAME= cryptography_vectors-2.2
4PKGNAME= ${PYPKGPREFIX}-${DISTNAME} 4PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
5CATEGORIES= security python 5CATEGORIES= security python
6MASTER_SITES= ${MASTER_SITE_PYPI:=c/cryptography_vectors/} 6MASTER_SITES= ${MASTER_SITE_PYPI:=c/cryptography_vectors/}
7 7
8MAINTAINER= pkgsrc-users@NetBSD.org 8MAINTAINER= pkgsrc-users@NetBSD.org
9HOMEPAGE= https://github.com/pyca/cryptography/ 9HOMEPAGE= https://github.com/pyca/cryptography/
10COMMENT= Cryptographic test vectors 10COMMENT= Cryptographic test vectors
11LICENSE= apache-2.0 OR modified-bsd 11LICENSE= apache-2.0 OR modified-bsd
12 12
13USE_LANGUAGES= # none 13USE_LANGUAGES= # none
14 14
15.include "../../lang/python/egg.mk" 15.include "../../lang/python/egg.mk"
16.include "../../mk/bsd.pkg.mk" 16.include "../../mk/bsd.pkg.mk"

cvs diff -r1.11 -r1.12 pkgsrc/security/py-cryptography_vectors/distinfo (expand / switch to unified diff)

--- pkgsrc/security/py-cryptography_vectors/distinfo 2017/11/30 08:23:27 1.11
+++ pkgsrc/security/py-cryptography_vectors/distinfo 2018/03/19 09:01:46 1.12
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1$NetBSD: distinfo,v 1.11 2017/11/30 08:23:27 adam Exp $ 1$NetBSD: distinfo,v 1.12 2018/03/19 09:01:46 adam Exp $
2 2
3SHA1 (cryptography_vectors-2.1.4.tar.gz) = 27b850b8e4cead25beef4c4548ec7819698ab515 3SHA1 (cryptography_vectors-2.2.tar.gz) = 5558018b3fc64dc648a7dc6a91a6af675a7cb6af
4RMD160 (cryptography_vectors-2.1.4.tar.gz) = de097b6d989c103cb8f342596667ab2f30f6aa28 4RMD160 (cryptography_vectors-2.2.tar.gz) = 521aa6d5ea5100143347535ec13a3b1391bf5111
5SHA512 (cryptography_vectors-2.1.4.tar.gz) = 74c2c1e3924f848488a3b5abdabda1a0089ae7d070b94e65f9fa2bf2da057ad27a37e46f90de4f2c3e9f1cc96c1c179cb5dbf0f50d5166a02846923e3bceb165 5SHA512 (cryptography_vectors-2.2.tar.gz) = f65eeccbe75e4a2966cfb32dbde61c02456f181f1c2821d442601bfa308333fa7ea4aaf60ed6662d391ce0aa86668fa43428f779eb5fcd687e23a8bd798da0e9
6Size (cryptography_vectors-2.1.4.tar.gz) = 27255711 bytes 6Size (cryptography_vectors-2.2.tar.gz) = 27255052 bytes

cvs diff -r1.5 -r1.6 pkgsrc/security/py-cryptography_vectors/PLIST (expand / switch to unified diff)

--- pkgsrc/security/py-cryptography_vectors/PLIST 2017/10/12 08:28:40 1.5
+++ pkgsrc/security/py-cryptography_vectors/PLIST 2018/03/19 09:01:46 1.6
@@ -1,31 +1,32 @@ @@ -1,31 +1,32 @@
1@comment $NetBSD: PLIST,v 1.5 2017/10/12 08:28:40 adam Exp $ 1@comment $NetBSD: PLIST,v 1.6 2018/03/19 09:01:46 adam Exp $
2${PYSITELIB}/${EGG_INFODIR}/PKG-INFO 2${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
3${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt 3${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
4${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt 4${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
5${PYSITELIB}/${EGG_INFODIR}/not-zip-safe 5${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
6${PYSITELIB}/${EGG_INFODIR}/top_level.txt 6${PYSITELIB}/${EGG_INFODIR}/top_level.txt
7${PYSITELIB}/cryptography_vectors/CMAC/nist-800-38b-3des.txt 7${PYSITELIB}/cryptography_vectors/CMAC/nist-800-38b-3des.txt
8${PYSITELIB}/cryptography_vectors/CMAC/nist-800-38b-aes128.txt 8${PYSITELIB}/cryptography_vectors/CMAC/nist-800-38b-aes128.txt
9${PYSITELIB}/cryptography_vectors/CMAC/nist-800-38b-aes192.txt 9${PYSITELIB}/cryptography_vectors/CMAC/nist-800-38b-aes192.txt
10${PYSITELIB}/cryptography_vectors/CMAC/nist-800-38b-aes256.txt 10${PYSITELIB}/cryptography_vectors/CMAC/nist-800-38b-aes256.txt
11${PYSITELIB}/cryptography_vectors/HMAC/rfc-2202-md5.txt 11${PYSITELIB}/cryptography_vectors/HMAC/rfc-2202-md5.txt
12${PYSITELIB}/cryptography_vectors/HMAC/rfc-2202-sha1.txt 12${PYSITELIB}/cryptography_vectors/HMAC/rfc-2202-sha1.txt
13${PYSITELIB}/cryptography_vectors/HMAC/rfc-2286-ripemd160.txt 13${PYSITELIB}/cryptography_vectors/HMAC/rfc-2286-ripemd160.txt
14${PYSITELIB}/cryptography_vectors/HMAC/rfc-4231-sha224.txt 14${PYSITELIB}/cryptography_vectors/HMAC/rfc-4231-sha224.txt
15${PYSITELIB}/cryptography_vectors/HMAC/rfc-4231-sha256.txt 15${PYSITELIB}/cryptography_vectors/HMAC/rfc-4231-sha256.txt
16${PYSITELIB}/cryptography_vectors/HMAC/rfc-4231-sha384.txt 16${PYSITELIB}/cryptography_vectors/HMAC/rfc-4231-sha384.txt
17${PYSITELIB}/cryptography_vectors/HMAC/rfc-4231-sha512.txt 17${PYSITELIB}/cryptography_vectors/HMAC/rfc-4231-sha512.txt
18${PYSITELIB}/cryptography_vectors/KDF/ansx963_2001.txt 18${PYSITELIB}/cryptography_vectors/KDF/ansx963_2001.txt
 19${PYSITELIB}/cryptography_vectors/KDF/hkdf-generated.txt
19${PYSITELIB}/cryptography_vectors/KDF/nist-800-108-KBKDF-CTR.txt 20${PYSITELIB}/cryptography_vectors/KDF/nist-800-108-KBKDF-CTR.txt
20${PYSITELIB}/cryptography_vectors/KDF/rfc-5869-HKDF-SHA1.txt 21${PYSITELIB}/cryptography_vectors/KDF/rfc-5869-HKDF-SHA1.txt
21${PYSITELIB}/cryptography_vectors/KDF/rfc-5869-HKDF-SHA256.txt 22${PYSITELIB}/cryptography_vectors/KDF/rfc-5869-HKDF-SHA256.txt
22${PYSITELIB}/cryptography_vectors/KDF/rfc-6070-PBKDF2-SHA1.txt 23${PYSITELIB}/cryptography_vectors/KDF/rfc-6070-PBKDF2-SHA1.txt
23${PYSITELIB}/cryptography_vectors/KDF/scrypt.txt 24${PYSITELIB}/cryptography_vectors/KDF/scrypt.txt
24${PYSITELIB}/cryptography_vectors/__about__.py 25${PYSITELIB}/cryptography_vectors/__about__.py
25${PYSITELIB}/cryptography_vectors/__about__.pyc 26${PYSITELIB}/cryptography_vectors/__about__.pyc
26${PYSITELIB}/cryptography_vectors/__about__.pyo 27${PYSITELIB}/cryptography_vectors/__about__.pyo
27${PYSITELIB}/cryptography_vectors/__init__.py 28${PYSITELIB}/cryptography_vectors/__init__.py
28${PYSITELIB}/cryptography_vectors/__init__.pyc 29${PYSITELIB}/cryptography_vectors/__init__.pyc
29${PYSITELIB}/cryptography_vectors/__init__.pyo 30${PYSITELIB}/cryptography_vectors/__init__.pyo
30${PYSITELIB}/cryptography_vectors/asymmetric/DER_Serialization/dsa.1024.der 31${PYSITELIB}/cryptography_vectors/asymmetric/DER_Serialization/dsa.1024.der
31${PYSITELIB}/cryptography_vectors/asymmetric/DER_Serialization/dsa.2048.der 32${PYSITELIB}/cryptography_vectors/asymmetric/DER_Serialization/dsa.2048.der
@@ -72,26 +73,27 @@ ${PYSITELIB}/cryptography_vectors/asymme @@ -72,26 +73,27 @@ ${PYSITELIB}/cryptography_vectors/asymme
72${PYSITELIB}/cryptography_vectors/asymmetric/DSA/FIPS_186-2/SigVer.rsp 73${PYSITELIB}/cryptography_vectors/asymmetric/DSA/FIPS_186-2/SigVer.rsp
73${PYSITELIB}/cryptography_vectors/asymmetric/DSA/FIPS_186-3/KeyPair.rsp 74${PYSITELIB}/cryptography_vectors/asymmetric/DSA/FIPS_186-3/KeyPair.rsp
74${PYSITELIB}/cryptography_vectors/asymmetric/DSA/FIPS_186-3/PQGGen.rsp 75${PYSITELIB}/cryptography_vectors/asymmetric/DSA/FIPS_186-3/PQGGen.rsp
75${PYSITELIB}/cryptography_vectors/asymmetric/DSA/FIPS_186-3/PQGGen.txt 76${PYSITELIB}/cryptography_vectors/asymmetric/DSA/FIPS_186-3/PQGGen.txt
76${PYSITELIB}/cryptography_vectors/asymmetric/DSA/FIPS_186-3/PQGVer.rsp 77${PYSITELIB}/cryptography_vectors/asymmetric/DSA/FIPS_186-3/PQGVer.rsp
77${PYSITELIB}/cryptography_vectors/asymmetric/DSA/FIPS_186-3/Readme.txt 78${PYSITELIB}/cryptography_vectors/asymmetric/DSA/FIPS_186-3/Readme.txt
78${PYSITELIB}/cryptography_vectors/asymmetric/DSA/FIPS_186-3/SigGen.rsp 79${PYSITELIB}/cryptography_vectors/asymmetric/DSA/FIPS_186-3/SigGen.rsp
79${PYSITELIB}/cryptography_vectors/asymmetric/DSA/FIPS_186-3/SigGen.txt 80${PYSITELIB}/cryptography_vectors/asymmetric/DSA/FIPS_186-3/SigGen.txt
80${PYSITELIB}/cryptography_vectors/asymmetric/DSA/FIPS_186-3/SigVer.rsp 81${PYSITELIB}/cryptography_vectors/asymmetric/DSA/FIPS_186-3/SigVer.rsp
81${PYSITELIB}/cryptography_vectors/asymmetric/ECDH/KASValidityTest_ECCStaticUnified_KDFConcat_NOKC_init.fax 82${PYSITELIB}/cryptography_vectors/asymmetric/ECDH/KASValidityTest_ECCStaticUnified_KDFConcat_NOKC_init.fax
82${PYSITELIB}/cryptography_vectors/asymmetric/ECDH/KASValidityTest_ECCStaticUnified_KDFConcat_NOKC_resp.fax 83${PYSITELIB}/cryptography_vectors/asymmetric/ECDH/KASValidityTest_ECCStaticUnified_KDFConcat_NOKC_resp.fax
83${PYSITELIB}/cryptography_vectors/asymmetric/ECDH/KASValidityTest_ECCStaticUnified_NOKC_ZZOnly_init.fax 84${PYSITELIB}/cryptography_vectors/asymmetric/ECDH/KASValidityTest_ECCStaticUnified_NOKC_ZZOnly_init.fax
84${PYSITELIB}/cryptography_vectors/asymmetric/ECDH/KASValidityTest_ECCStaticUnified_NOKC_ZZOnly_resp.fax 85${PYSITELIB}/cryptography_vectors/asymmetric/ECDH/KASValidityTest_ECCStaticUnified_NOKC_ZZOnly_resp.fax
 86${PYSITELIB}/cryptography_vectors/asymmetric/ECDH/brainpool.txt
85${PYSITELIB}/cryptography_vectors/asymmetric/ECDSA/FIPS_186-2/KeyPair.rsp 87${PYSITELIB}/cryptography_vectors/asymmetric/ECDSA/FIPS_186-2/KeyPair.rsp
86${PYSITELIB}/cryptography_vectors/asymmetric/ECDSA/FIPS_186-2/PKV.rsp 88${PYSITELIB}/cryptography_vectors/asymmetric/ECDSA/FIPS_186-2/PKV.rsp
87${PYSITELIB}/cryptography_vectors/asymmetric/ECDSA/FIPS_186-2/Readme.txt 89${PYSITELIB}/cryptography_vectors/asymmetric/ECDSA/FIPS_186-2/Readme.txt
88${PYSITELIB}/cryptography_vectors/asymmetric/ECDSA/FIPS_186-2/SigGen.rsp 90${PYSITELIB}/cryptography_vectors/asymmetric/ECDSA/FIPS_186-2/SigGen.rsp
89${PYSITELIB}/cryptography_vectors/asymmetric/ECDSA/FIPS_186-2/SigGen.txt 91${PYSITELIB}/cryptography_vectors/asymmetric/ECDSA/FIPS_186-2/SigGen.txt
90${PYSITELIB}/cryptography_vectors/asymmetric/ECDSA/FIPS_186-2/SigVer.rsp 92${PYSITELIB}/cryptography_vectors/asymmetric/ECDSA/FIPS_186-2/SigVer.rsp
91${PYSITELIB}/cryptography_vectors/asymmetric/ECDSA/FIPS_186-3/KeyPair.rsp 93${PYSITELIB}/cryptography_vectors/asymmetric/ECDSA/FIPS_186-3/KeyPair.rsp
92${PYSITELIB}/cryptography_vectors/asymmetric/ECDSA/FIPS_186-3/PKV.rsp 94${PYSITELIB}/cryptography_vectors/asymmetric/ECDSA/FIPS_186-3/PKV.rsp
93${PYSITELIB}/cryptography_vectors/asymmetric/ECDSA/FIPS_186-3/Readme.txt 95${PYSITELIB}/cryptography_vectors/asymmetric/ECDSA/FIPS_186-3/Readme.txt
94${PYSITELIB}/cryptography_vectors/asymmetric/ECDSA/FIPS_186-3/SigGen.rsp 96${PYSITELIB}/cryptography_vectors/asymmetric/ECDSA/FIPS_186-3/SigGen.rsp
95${PYSITELIB}/cryptography_vectors/asymmetric/ECDSA/FIPS_186-3/SigGen.txt 97${PYSITELIB}/cryptography_vectors/asymmetric/ECDSA/FIPS_186-3/SigGen.txt
96${PYSITELIB}/cryptography_vectors/asymmetric/ECDSA/FIPS_186-3/SigVer.rsp 98${PYSITELIB}/cryptography_vectors/asymmetric/ECDSA/FIPS_186-3/SigVer.rsp
97${PYSITELIB}/cryptography_vectors/asymmetric/ECDSA/SECP256K1/SigGen.txt 99${PYSITELIB}/cryptography_vectors/asymmetric/ECDSA/SECP256K1/SigGen.txt
@@ -451,27 +453,26 @@ ${PYSITELIB}/cryptography_vectors/hashes @@ -451,27 +453,26 @@ ${PYSITELIB}/cryptography_vectors/hashes
451${PYSITELIB}/cryptography_vectors/hashes/SHA2/SHA256Monte.txt 453${PYSITELIB}/cryptography_vectors/hashes/SHA2/SHA256Monte.txt
452${PYSITELIB}/cryptography_vectors/hashes/SHA2/SHA256ShortMsg.rsp 454${PYSITELIB}/cryptography_vectors/hashes/SHA2/SHA256ShortMsg.rsp
453${PYSITELIB}/cryptography_vectors/hashes/SHA2/SHA384LongMsg.rsp 455${PYSITELIB}/cryptography_vectors/hashes/SHA2/SHA384LongMsg.rsp
454${PYSITELIB}/cryptography_vectors/hashes/SHA2/SHA384Monte.rsp 456${PYSITELIB}/cryptography_vectors/hashes/SHA2/SHA384Monte.rsp
455${PYSITELIB}/cryptography_vectors/hashes/SHA2/SHA384Monte.txt 457${PYSITELIB}/cryptography_vectors/hashes/SHA2/SHA384Monte.txt
456${PYSITELIB}/cryptography_vectors/hashes/SHA2/SHA384ShortMsg.rsp 458${PYSITELIB}/cryptography_vectors/hashes/SHA2/SHA384ShortMsg.rsp
457${PYSITELIB}/cryptography_vectors/hashes/SHA2/SHA512LongMsg.rsp 459${PYSITELIB}/cryptography_vectors/hashes/SHA2/SHA512LongMsg.rsp
458${PYSITELIB}/cryptography_vectors/hashes/SHA2/SHA512Monte.rsp 460${PYSITELIB}/cryptography_vectors/hashes/SHA2/SHA512Monte.rsp
459${PYSITELIB}/cryptography_vectors/hashes/SHA2/SHA512Monte.txt 461${PYSITELIB}/cryptography_vectors/hashes/SHA2/SHA512Monte.txt
460${PYSITELIB}/cryptography_vectors/hashes/SHA2/SHA512ShortMsg.rsp 462${PYSITELIB}/cryptography_vectors/hashes/SHA2/SHA512ShortMsg.rsp
461${PYSITELIB}/cryptography_vectors/hashes/blake2/blake2b.txt 463${PYSITELIB}/cryptography_vectors/hashes/blake2/blake2b.txt
462${PYSITELIB}/cryptography_vectors/hashes/blake2/blake2s.txt 464${PYSITELIB}/cryptography_vectors/hashes/blake2/blake2s.txt
463${PYSITELIB}/cryptography_vectors/hashes/ripemd160/ripevectors.txt 465${PYSITELIB}/cryptography_vectors/hashes/ripemd160/ripevectors.txt
464${PYSITELIB}/cryptography_vectors/hashes/whirlpool/iso-test-vectors.txt 
465${PYSITELIB}/cryptography_vectors/keywrap/kwtestvectors/KWP_AD_128.txt 466${PYSITELIB}/cryptography_vectors/keywrap/kwtestvectors/KWP_AD_128.txt
466${PYSITELIB}/cryptography_vectors/keywrap/kwtestvectors/KWP_AD_128_inv.txt 467${PYSITELIB}/cryptography_vectors/keywrap/kwtestvectors/KWP_AD_128_inv.txt
467${PYSITELIB}/cryptography_vectors/keywrap/kwtestvectors/KWP_AD_192.txt 468${PYSITELIB}/cryptography_vectors/keywrap/kwtestvectors/KWP_AD_192.txt
468${PYSITELIB}/cryptography_vectors/keywrap/kwtestvectors/KWP_AD_192_inv.txt 469${PYSITELIB}/cryptography_vectors/keywrap/kwtestvectors/KWP_AD_192_inv.txt
469${PYSITELIB}/cryptography_vectors/keywrap/kwtestvectors/KWP_AD_256.txt 470${PYSITELIB}/cryptography_vectors/keywrap/kwtestvectors/KWP_AD_256.txt
470${PYSITELIB}/cryptography_vectors/keywrap/kwtestvectors/KWP_AD_256_inv.txt 471${PYSITELIB}/cryptography_vectors/keywrap/kwtestvectors/KWP_AD_256_inv.txt
471${PYSITELIB}/cryptography_vectors/keywrap/kwtestvectors/KWP_AE_128.txt 472${PYSITELIB}/cryptography_vectors/keywrap/kwtestvectors/KWP_AE_128.txt
472${PYSITELIB}/cryptography_vectors/keywrap/kwtestvectors/KWP_AE_128_inv.txt 473${PYSITELIB}/cryptography_vectors/keywrap/kwtestvectors/KWP_AE_128_inv.txt
473${PYSITELIB}/cryptography_vectors/keywrap/kwtestvectors/KWP_AE_192.txt 474${PYSITELIB}/cryptography_vectors/keywrap/kwtestvectors/KWP_AE_192.txt
474${PYSITELIB}/cryptography_vectors/keywrap/kwtestvectors/KWP_AE_192_inv.txt 475${PYSITELIB}/cryptography_vectors/keywrap/kwtestvectors/KWP_AE_192_inv.txt
475${PYSITELIB}/cryptography_vectors/keywrap/kwtestvectors/KWP_AE_256.txt 476${PYSITELIB}/cryptography_vectors/keywrap/kwtestvectors/KWP_AE_256.txt
476${PYSITELIB}/cryptography_vectors/keywrap/kwtestvectors/KWP_AE_256_inv.txt 477${PYSITELIB}/cryptography_vectors/keywrap/kwtestvectors/KWP_AE_256_inv.txt
477${PYSITELIB}/cryptography_vectors/keywrap/kwtestvectors/KW_AD_128.txt 478${PYSITELIB}/cryptography_vectors/keywrap/kwtestvectors/KW_AD_128.txt