Home
last modified time | relevance | path

Searched refs:CAST5 (Results 1 – 16 of 16) sorted by relevance

/external/python/cryptography/tests/hazmat/primitives/
Dtest_cast5.py21 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))),
Dtest_ciphers.py17 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/
Dcast5.rst1 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/
Dcast5-ecb.txt1 # CAST5 (CAST128) ECB vectors from RFC 2144
Dcast5-ctr.txt1 # CAST5 CTR vectors built for https://github.com/pyca/cryptography
Dcast5-cbc.txt1 # CAST5 CBC vectors built for https://github.com/pyca/cryptography
Dcast5-ofb.txt1 # CAST5 CBC vectors built for https://github.com/pyca/cryptography
Dcast5-cfb.txt1 # CAST5 CBC vectors built for https://github.com/pyca/cryptography
/external/python/cryptography/docs/development/custom-vectors/cast5/
Dgenerate_cast5.py15 algorithms.CAST5(binascii.unhexlify(key)),
/external/python/cryptography/src/cryptography/hazmat/primitives/ciphers/
Dalgorithms.py93 class CAST5(object): class
/external/boringssl/src/crypto/obj/
Dobjects.txt145 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/
Dtest-vectors.rst570 * 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/
Dipsec.py460 cipher=algorithms.CAST5,
/external/python/cryptography/docs/hazmat/primitives/
Dsymmetric-encryption.rst176 .. 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/
Dbackend.py72 AES, ARC4, Blowfish, CAST5, Camellia, ChaCha20, IDEA, SEED, TripleDES
266 [CAST5, IDEA],
/external/python/cryptography/
DCHANGELOG.rst1330 * Added :class:`~cryptography.hazmat.primitives.ciphers.algorithms.CAST5`