Home
last modified time | relevance | path

Searched refs:OFB (Results 1 – 25 of 56) sorted by relevance

123

/external/boringssl/src/crypto/cipher_extra/test/
Dcipher_tests.txt463 # 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/
Dcamellia-ofb.txt1 # Camellia OFB from OpenSSL's test vectors.
6 # OFB-CAMELLIA128
31 # OFB-CAMELLIA192
56 # OFB-CAMELLIA256
/external/python/cryptography/docs/development/custom-vectors/
Dcast5.rst4 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
Didea.rst5 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
Dseed.rst4 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/
Dtest_3des.py62 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)),
Dtest_seed.py55 algorithms.SEED(b"\x00" * 16), modes.OFB(b"\x00" * 16)
66 lambda iv, **kwargs: modes.OFB(binascii.unhexlify(iv))
Dtest_cast5.py55 algorithms.CAST5(b"\x00" * 16), modes.OFB(b"\x00" * 8)
66 lambda iv, **kwargs: modes.OFB(binascii.unhexlify(iv))
Dtest_idea.py55 algorithms.IDEA(b"\x00" * 16), modes.OFB(b"\x00" * 8)
66 lambda iv, **kwargs: modes.OFB(binascii.unhexlify(iv))
Dtest_camellia.py61 algorithms.Camellia(b"\x00" * 16), modes.OFB(b"\x00" * 16)
72 lambda iv, **kwargs: modes.OFB(binascii.unhexlify(iv)),
Dtest_blowfish.py55 algorithms.Blowfish(b"\x00" * 56), modes.OFB(b"\x00" * 8)
66 lambda iv, **kwargs: modes.OFB(binascii.unhexlify(iv)),
Dtest_block.py166 modes.OFB(b"abc"),
214 modes.OFB([1] * 16)
Dtest_aes.py121 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/
Dseed-ofb.txt1 # 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/
Didea-ofb.txt1 # 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/
Dobjects.txt150 : 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/
DOFBGFSbox256.rsp3 # AESVS GFSbox test data for OFB
DOFBGFSbox192.rsp3 # AESVS GFSbox test data for OFB
DOFBGFSbox128.rsp3 # AESVS GFSbox test data for OFB
DOFBMMT192.rsp3 # AESVS MMT test data for OFB
DOFBMMT128.rsp3 # AESVS MMT test data for OFB
/external/conscrypt/common/src/test/resources/crypto/
Dbuild_test_files.sh19 cat "$1"/OFB*.rsp | parse_records.py > aes-ofb.csv
/external/python/cryptography/docs/development/custom-vectors/seed/
Dgenerate_seed.py56 write_file(build_vectors(modes.OFB, OFB_PATH), "seed-ofb.txt")
/external/python/cryptography/docs/development/custom-vectors/idea/
Dgenerate_idea.py59 write_file(build_vectors(modes.OFB, OFB_PATH), "idea-ofb.txt")
/external/python/cryptography/docs/development/custom-vectors/cast5/
Dgenerate_cast5.py64 write_file(build_vectors(modes.OFB, ofb_path), "cast5-ofb.txt")

123