Home
last modified time | relevance | path

Searched refs:Blowfish (Results 1 – 19 of 19) sorted by relevance

/external/python/cryptography/tests/hazmat/primitives/
Dtest_blowfish.py21 algorithms.Blowfish(b"\x00" * 56), modes.ECB()
31 lambda key, **kwargs: algorithms.Blowfish(binascii.unhexlify(key)),
38 algorithms.Blowfish(b"\x00" * 56), modes.CBC(b"\x00" * 8)
48 lambda key, **kwargs: algorithms.Blowfish(binascii.unhexlify(key)),
55 algorithms.Blowfish(b"\x00" * 56), modes.OFB(b"\x00" * 8)
65 lambda key, **kwargs: algorithms.Blowfish(binascii.unhexlify(key)),
72 algorithms.Blowfish(b"\x00" * 56), modes.CFB(b"\x00" * 8)
82 lambda key, **kwargs: algorithms.Blowfish(binascii.unhexlify(key)),
Dtest_ciphers.py17 AES, ARC4, Blowfish, CAST5, Camellia, IDEA, SEED, TripleDES
111 cipher = Blowfish(binascii.unhexlify(key))
116 Blowfish(binascii.unhexlify(b"0" * 6))
120 Blowfish(u"0" * 8)
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/
DBlowfish.java17 public final class Blowfish class
19 private Blowfish() in Blowfish() method in Blowfish
75 private static final String PREFIX = Blowfish.class.getName();
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jcajce/provider/symmetric/
DBlowfish.java21 public final class Blowfish class
23 private Blowfish() in Blowfish() method in Blowfish
94 private static final String PREFIX = Blowfish.class.getName();
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/jcajce/provider/symmetric/
DBlowfish.java21 public final class Blowfish class
23 private Blowfish() in Blowfish() method in Blowfish
94 private static final String PREFIX = Blowfish.class.getName();
/external/boringssl/src/decrepit/blowfish/
Dblowfish_test.cc63 TEST(Blowfish, ECB) { in TEST() argument
99 TEST(Blowfish, CBC) { in TEST() argument
132 TEST(Blowfish, CFB) { in TEST() argument
/external/rust/crates/quiche/deps/boringssl/src/decrepit/blowfish/
Dblowfish_test.cc63 TEST(Blowfish, ECB) { in TEST() argument
99 TEST(Blowfish, CBC) { in TEST() argument
132 TEST(Blowfish, CFB) { in TEST() argument
/external/python/cryptography/docs/
Dspelling_wordlist.txt8 Blowfish
/external/python/cryptography/src/cryptography/hazmat/primitives/ciphers/
Dalgorithms.py78 class Blowfish(object): class
/external/python/cryptography/vectors/cryptography_vectors/ciphers/Blowfish/
Dbf-ecb.txt176 # Blowfish is specified for key lengths 32-448 bit
/external/python/cpython3/Doc/library/
Dcrypt.rst56 character hash based on the Blowfish cipher.
/external/python/cryptography/docs/hazmat/primitives/
Dsymmetric-encryption.rst210 .. class:: Blowfish(key)
212 Blowfish is a block cipher developed by Bruce Schneier. It is known to be
214 that users of Blowfish move to newer algorithms such as :class:`AES`.
711 "Blowfish".
/external/scapy/scapy/layers/
Dipsec.py446 cipher=algorithms.Blowfish,
/external/openssh/
DLICENCE40 - Blowfish is now external, in the OpenSSL library
/external/python/cryptography/src/cryptography/hazmat/backends/openssl/
Dbackend.py72 AES, ARC4, Blowfish, CAST5, Camellia, ChaCha20, IDEA, SEED, TripleDES
255 Blowfish,
/external/scapy/test/
Dipsec.uts252 = IPv4 / ESP - Transport - Blowfish - NULL
261 crypt_algo='Blowfish', crypt_key=b'sixteenbytes key',
529 = IPv4 / ESP - Tunnel - Blowfish - NULL
538 crypt_algo='Blowfish', crypt_key=b'sixteenbytes key',
/external/python/cpython3/Misc/NEWS.d/
D3.7.0a3.rst1126 Added support for the Blowfish hashing in the crypt module.
/external/python/cryptography/docs/development/
Dtest-vectors.rst567 * Blowfish (CBC, CFB, ECB, OFB) from `Bruce Schneier's vectors`_.
/external/python/cpython3/Doc/whatsnew/
D3.7.rst850 The :mod:`crypt` module now supports the Blowfish hashing method.