Searched refs:OFB (Results 1 – 25 of 56) sorted by relevance
123
/external/boringssl/src/crypto/cipher_extra/test/ |
D | cipher_tests.txt | 463 # OFB tests from OpenSSL upstream. 465 # OFB-AES128.Encrypt 466 Cipher = AES-128-OFB 473 Cipher = AES-128-OFB 480 Cipher = AES-128-OFB 487 Cipher = AES-128-OFB 494 # OFB-AES128.Decrypt 495 Cipher = AES-128-OFB 502 Cipher = AES-128-OFB 509 Cipher = AES-128-OFB [all …]
|
/external/python/cryptography/vectors/cryptography_vectors/ciphers/Camellia/ |
D | camellia-ofb.txt | 1 # Camellia OFB from OpenSSL's test vectors. 6 # OFB-CAMELLIA128 31 # OFB-CAMELLIA192 56 # OFB-CAMELLIA256
|
/external/python/cryptography/docs/development/custom-vectors/ |
D | cast5.rst | 4 This page documents the code that was used to generate the CAST5 CBC, CFB, OFB, 6 implementation. The CBC, CFB, and OFB vectors were generated using OpenSSL and 13 ``cryptography`` was modified to support CAST5 in CBC, CFB, and OFB modes. Then
|
D | idea.rst | 5 OFB test vectors as well as the code used to verify them against another 12 ``cryptography`` was modified to support IDEA in CBC, CFB, and OFB modes. Then
|
D | seed.rst | 4 This page documents the code that was used to generate the SEED CFB and OFB 12 ``cryptography`` was modified to support SEED in CFB and OFB modes. Then
|
/external/python/cryptography/tests/hazmat/primitives/ |
D | test_3des.py | 62 algorithms.TripleDES(b"\x00" * 8), modes.OFB(b"\x00" * 8) 79 lambda iv, **kwargs: modes.OFB(binascii.unhexlify(iv)), 93 lambda iv, **kwargs: modes.OFB(binascii.unhexlify(iv)),
|
D | test_seed.py | 55 algorithms.SEED(b"\x00" * 16), modes.OFB(b"\x00" * 16) 66 lambda iv, **kwargs: modes.OFB(binascii.unhexlify(iv))
|
D | test_cast5.py | 55 algorithms.CAST5(b"\x00" * 16), modes.OFB(b"\x00" * 8) 66 lambda iv, **kwargs: modes.OFB(binascii.unhexlify(iv))
|
D | test_idea.py | 55 algorithms.IDEA(b"\x00" * 16), modes.OFB(b"\x00" * 8) 66 lambda iv, **kwargs: modes.OFB(binascii.unhexlify(iv))
|
D | test_camellia.py | 61 algorithms.Camellia(b"\x00" * 16), modes.OFB(b"\x00" * 16) 72 lambda iv, **kwargs: modes.OFB(binascii.unhexlify(iv)),
|
D | test_blowfish.py | 55 algorithms.Blowfish(b"\x00" * 56), modes.OFB(b"\x00" * 8) 66 lambda iv, **kwargs: modes.OFB(binascii.unhexlify(iv)),
|
D | test_block.py | 166 modes.OFB(b"abc"), 214 modes.OFB([1] * 16)
|
D | test_aes.py | 121 algorithms.AES(b"\x00" * 16), modes.OFB(b"\x00" * 16) 148 lambda iv, **kwargs: modes.OFB(binascii.unhexlify(iv)), 483 modes.OFB(bytearray(b"\x00" * 16)),
|
/external/python/cryptography/vectors/cryptography_vectors/ciphers/SEED/ |
D | seed-ofb.txt | 1 # SEED OFB vectors built for https://github.com/pyca/cryptography 2 # Derived from the AESVS MMT test data for OFB
|
/external/python/cryptography/vectors/cryptography_vectors/ciphers/IDEA/ |
D | idea-ofb.txt | 1 # IDEA OFB vectors built for https://github.com/pyca/cryptography 2 # Derived from the AESVS MMT test data for OFB
|
/external/boringssl/src/crypto/obj/ |
D | objects.txt | 150 : CAST5-OFB : cast5-ofb 378 : RC2-OFB : rc2-ofb 389 : RC5-OFB : rc5-ofb 413 : IDEA-OFB : idea-ofb 420 : BF-OFB : bf-ofb 630 algorithm 8 : DES-OFB : des-ofb 648 : DES-EDE-OFB : des-ede-ofb 650 : DES-EDE3-OFB : des-ede3-ofb 854 aes 3 : AES-128-OFB : aes-128-ofb 865 aes 23 : AES-192-OFB : aes-192-ofb [all …]
|
/external/python/cryptography/vectors/cryptography_vectors/ciphers/AES/OFB/ |
D | OFBGFSbox256.rsp | 3 # AESVS GFSbox test data for OFB
|
D | OFBGFSbox192.rsp | 3 # AESVS GFSbox test data for OFB
|
D | OFBGFSbox128.rsp | 3 # AESVS GFSbox test data for OFB
|
D | OFBMMT192.rsp | 3 # AESVS MMT test data for OFB
|
D | OFBMMT128.rsp | 3 # AESVS MMT test data for OFB
|
/external/conscrypt/common/src/test/resources/crypto/ |
D | build_test_files.sh | 19 cat "$1"/OFB*.rsp | parse_records.py > aes-ofb.csv
|
/external/python/cryptography/docs/development/custom-vectors/seed/ |
D | generate_seed.py | 56 write_file(build_vectors(modes.OFB, OFB_PATH), "seed-ofb.txt")
|
/external/python/cryptography/docs/development/custom-vectors/idea/ |
D | generate_idea.py | 59 write_file(build_vectors(modes.OFB, OFB_PATH), "idea-ofb.txt")
|
/external/python/cryptography/docs/development/custom-vectors/cast5/ |
D | generate_cast5.py | 64 write_file(build_vectors(modes.OFB, ofb_path), "cast5-ofb.txt")
|
123