diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2017-09-07 19:14:25 +0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2017-09-07 07:14:25 -0400 |
commit | 2b01c55736ce9a03f3d77284ee182accaeaba282 (patch) | |
tree | e718fe0443880331cb4941256737bf58420f5250 /docs/development | |
parent | 9a8e29eda723d0406fbd727f01d83473ec6246fe (diff) | |
download | cryptography-2b01c55736ce9a03f3d77284ee182accaeaba282.tar.gz cryptography-2b01c55736ce9a03f3d77284ee182accaeaba282.tar.bz2 cryptography-2b01c55736ce9a03f3d77284ee182accaeaba282.zip |
oaep label vector (#3895)
* oaep label vector
* add count so we can use the nist vector loader
* add RSA key from the boring vectors as well
https://boringssl.googlesource.com/boringssl/+/ce3773f9fe25c3b54390bc51d72572f251c7d7e6/crypto/evp/evp_tests.txt#8
Diffstat (limited to 'docs/development')
-rw-r--r-- | docs/development/test-vectors.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/development/test-vectors.rst b/docs/development/test-vectors.rst index 1a1c5d72..7a5f8797 100644 --- a/docs/development/test-vectors.rst +++ b/docs/development/test-vectors.rst @@ -36,6 +36,7 @@ Asymmetric ciphers * `asymmetric/public/PKCS1/dsa.pub.pem`_ is a PKCS1 DSA public key from the Ruby test suite. * X25519 test vectors from :rfc:`7748`. +* RSA OAEP with custom label from the `BoringSSL evp tests`_. Custom asymmetric vectors @@ -497,6 +498,7 @@ header format (substituting the correct information): .. _`OpenSSL's test vectors`: https://github.com/openssl/openssl/blob/97cf1f6c2854a3a955fd7dd3a1f113deba00c9ef/crypto/evp/evptests.txt#L232 .. _`OpenSSL's evpciph.txt`: https://github.com/openssl/openssl/blob/5a7bc0be97dee9ac715897fe8180a08e211bc6ea/test/evpciph.txt#L2362 .. _`BoringSSL ChaCha20Poly1305 tests`: https://boringssl.googlesource.com/boringssl/+/2e2a226ac9201ac411a84b5e79ac3a7333d8e1c9/crypto/cipher_extra/test/chacha20_poly1305_tests.txt +.. _`BoringSSL evp tests`: https://boringssl.googlesource.com/boringssl/+/ce3773f9fe25c3b54390bc51d72572f251c7d7e6/crypto/evp/evp_tests.txt .. _`RIPEMD website`: https://homes.esat.kuleuven.be/~bosselae/ripemd160.html .. _`Whirlpool website`: http://www.larc.usp.br/~pbarreto/WhirlpoolPage.html .. _`draft RFC`: https://tools.ietf.org/html/draft-josefsson-scrypt-kdf-01 |