/external/python/cryptography/docs/development/custom-vectors/ |
D | arc4.rst | 1 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/ |
D | ARC4.java | 12 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/ |
D | ARC4.java | 16 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/ |
D | ARC4.java | 16 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/ |
D | test_arc4.py | 21 algorithms.ARC4(b"\x00" * 16), None 40 lambda key, **kwargs: algorithms.ARC4(binascii.unhexlify(key)),
|
D | test_cmac.py | 16 AES, ARC4, TripleDES 129 ARC4(fake_key), None), 135 CMAC(ARC4(key), backend)
|
D | test_ciphers.py | 17 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/ |
D | KeyGeneratorImpl.java | 180 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/ |
D | KeyGeneratorImpl.java | 212 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/ |
D | generate_arc4.py | 66 algorithms.ARC4(binascii.unhexlify(key)),
|
/external/conscrypt/ |
D | CAPABILITIES.md | 115 * `ARC4` 169 * `ARC4`
|
/external/scapy/scapy/layers/tls/crypto/ |
D | cipher_stream.py | 107 pc_cls = algorithms.ARC4
|
/external/python/cryptography/src/cryptography/hazmat/primitives/ciphers/ |
D | algorithms.py | 107 class ARC4(object): class
|
/external/scapy/scapy/layers/ |
D | dot11.py | 299 algorithms.ARC4(self.iv + key.encode("utf8")), 324 algorithms.ARC4(self.iv + key.encode("utf8")),
|
/external/scapy/scapy/modules/krack/ |
D | crypto.py | 19 algorithm = algorithms.ARC4(key)
|
/external/python/cryptography/docs/hazmat/primitives/ |
D | symmetric-encryption.rst | 220 .. 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/ |
D | test-vectors.rst | 564 * ARC4 (KEY-LENGTH: 40, 56, 64, 80, 128, 192, 256) from :rfc:`6229`. 565 * ARC4 (KEY-LENGTH: 160) generated by this project.
|
/external/openssh/ |
D | LICENCE | 39 - RC4 support has been replaced with ARC4 support from OpenSSL
|
/external/python/cryptography/src/cryptography/hazmat/backends/openssl/ |
D | backend.py | 72 AES, ARC4, Blowfish, CAST5, Camellia, ChaCha20, IDEA, SEED, TripleDES 275 ARC4,
|