Searched refs:CAST5 (Results 1 – 16 of 16) sorted by relevance
/external/python/cryptography/tests/hazmat/primitives/ |
D | test_cast5.py | 21 algorithms.CAST5(b"\x00" * 16), modes.ECB() 31 lambda key, **kwargs: algorithms.CAST5(binascii.unhexlify((key))), 38 algorithms.CAST5(b"\x00" * 16), modes.CBC(b"\x00" * 8) 48 lambda key, **kwargs: algorithms.CAST5(binascii.unhexlify((key))), 55 algorithms.CAST5(b"\x00" * 16), modes.OFB(b"\x00" * 8) 65 lambda key, **kwargs: algorithms.CAST5(binascii.unhexlify((key))), 72 algorithms.CAST5(b"\x00" * 16), modes.CFB(b"\x00" * 8) 82 lambda key, **kwargs: algorithms.CAST5(binascii.unhexlify((key))),
|
D | test_ciphers.py | 17 AES, ARC4, Blowfish, CAST5, Camellia, IDEA, SEED, TripleDES 128 cipher = CAST5(binascii.unhexlify(key)) 133 CAST5(binascii.unhexlify(b"0" * 34)) 137 CAST5(u"0" * 10)
|
/external/python/cryptography/docs/development/custom-vectors/ |
D | cast5.rst | 1 CAST5 vector creation 4 This page documents the code that was used to generate the CAST5 CBC, CFB, OFB, 13 ``cryptography`` was modified to support CAST5 in CBC, CFB, and OFB modes. Then
|
/external/python/cryptography/vectors/cryptography_vectors/ciphers/CAST5/ |
D | cast5-ecb.txt | 1 # CAST5 (CAST128) ECB vectors from RFC 2144
|
D | cast5-ctr.txt | 1 # CAST5 CTR vectors built for https://github.com/pyca/cryptography
|
D | cast5-cbc.txt | 1 # CAST5 CBC vectors built for https://github.com/pyca/cryptography
|
D | cast5-ofb.txt | 1 # CAST5 CBC vectors built for https://github.com/pyca/cryptography
|
D | cast5-cfb.txt | 1 # CAST5 CBC vectors built for https://github.com/pyca/cryptography
|
/external/python/cryptography/docs/development/custom-vectors/cast5/ |
D | generate_cast5.py | 15 algorithms.CAST5(binascii.unhexlify(key)),
|
/external/python/cryptography/src/cryptography/hazmat/primitives/ciphers/ |
D | algorithms.py | 93 class CAST5(object): class
|
/external/boringssl/src/crypto/obj/ |
D | objects.txt | 145 ISO-US 113533 7 66 10 : CAST5-CBC : cast5-cbc 146 : CAST5-ECB : cast5-ecb 148 : CAST5-CFB : cast5-cfb 150 : CAST5-OFB : cast5-ofb
|
/external/python/cryptography/docs/development/ |
D | test-vectors.rst | 570 * CAST5 (ECB) from :rfc:`2144`. 571 * CAST5 (CBC, CFB, OFB) generated by this project. 623 # CAST5 CBC vectors built for https://github.com/pyca/cryptography
|
/external/scapy/scapy/layers/ |
D | ipsec.py | 460 cipher=algorithms.CAST5,
|
/external/python/cryptography/docs/hazmat/primitives/ |
D | symmetric-encryption.rst | 176 .. class:: CAST5(key) 180 CAST5 (also known as CAST-128) is a block cipher approved for use in the
|
/external/python/cryptography/src/cryptography/hazmat/backends/openssl/ |
D | backend.py | 72 AES, ARC4, Blowfish, CAST5, Camellia, ChaCha20, IDEA, SEED, TripleDES 266 [CAST5, IDEA],
|
/external/python/cryptography/ |
D | CHANGELOG.rst | 1330 * Added :class:`~cryptography.hazmat.primitives.ciphers.algorithms.CAST5`
|