Home
last modified time | relevance | path

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

/external/python/cryptography/docs/development/custom-vectors/
Darc4.rst1 ARC4 vector creation
4 This page documents the code that was used to generate the ARC4 test
11 ``cryptography`` was modified to support ARC4 key lengths not listed
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/
DARC4.java12 public final class ARC4 class
14 private ARC4() in ARC4() method in ARC4
90 private static final String PREFIX = ARC4.class.getName();
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jcajce/provider/symmetric/
DARC4.java16 public final class ARC4 class
18 private ARC4() in ARC4() method in ARC4
107 private static final String PREFIX = ARC4.class.getName();
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/jcajce/provider/symmetric/
DARC4.java16 public final class ARC4 class
18 private ARC4() in ARC4() method in ARC4
107 private static final String PREFIX = ARC4.class.getName();
/external/python/cryptography/tests/hazmat/primitives/
Dtest_arc4.py21 algorithms.ARC4(b"\x00" * 16), None
40 lambda key, **kwargs: algorithms.ARC4(binascii.unhexlify(key)),
Dtest_cmac.py16 AES, ARC4, TripleDES
129 ARC4(fake_key), None),
135 CMAC(ARC4(key), backend)
Dtest_ciphers.py17 AES, ARC4, Blowfish, CAST5, Camellia, IDEA, SEED, TripleDES
151 cipher = ARC4(binascii.unhexlify(key))
156 ARC4(binascii.unhexlify(b"0" * 34))
160 ARC4(u"0" * 10)
/external/conscrypt/common/src/main/java/org/conscrypt/
DKeyGeneratorImpl.java180 public static final class ARC4 extends KeyGeneratorImpl { class in KeyGeneratorImpl
181 public ARC4() { in ARC4() method in KeyGeneratorImpl.ARC4
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
DKeyGeneratorImpl.java212 public static final class ARC4 extends KeyGeneratorImpl { class in KeyGeneratorImpl
213 public ARC4() { in ARC4() method in KeyGeneratorImpl.ARC4
/external/python/cryptography/docs/development/custom-vectors/arc4/
Dgenerate_arc4.py66 algorithms.ARC4(binascii.unhexlify(key)),
/external/conscrypt/
DCAPABILITIES.md115 * `ARC4`
169 * `ARC4`
/external/scapy/scapy/layers/tls/crypto/
Dcipher_stream.py107 pc_cls = algorithms.ARC4
/external/python/cryptography/src/cryptography/hazmat/primitives/ciphers/
Dalgorithms.py107 class ARC4(object): class
/external/scapy/scapy/layers/
Ddot11.py299 algorithms.ARC4(self.iv + key.encode("utf8")),
324 algorithms.ARC4(self.iv + key.encode("utf8")),
/external/scapy/scapy/modules/krack/
Dcrypto.py19 algorithm = algorithms.ARC4(key)
/external/python/cryptography/docs/hazmat/primitives/
Dsymmetric-encryption.rst220 .. class:: ARC4(key)
222 ARC4 (Alleged RC4) is a stream cipher with serious weaknesses in its
223 initial stream output. Its use is strongly discouraged. ARC4 does not use
235 >>> algorithm = algorithms.ARC4(key)
/external/python/cryptography/docs/development/
Dtest-vectors.rst564 * ARC4 (KEY-LENGTH: 40, 56, 64, 80, 128, 192, 256) from :rfc:`6229`.
565 * ARC4 (KEY-LENGTH: 160) generated by this project.
/external/openssh/
DLICENCE39 - RC4 support has been replaced with ARC4 support from OpenSSL
/external/python/cryptography/src/cryptography/hazmat/backends/openssl/
Dbackend.py72 AES, ARC4, Blowfish, CAST5, Camellia, ChaCha20, IDEA, SEED, TripleDES
275 ARC4,