HomeSort by relevance Sort by last modified time
    Searched refs:AES (Results 26 - 50 of 134) sorted by null

12 3 4 5 6

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/
arch-10-4.l 62 [ ]*33[ ]+\# AES
66 [ ]*37[ ]+\# AES \+ AVX
x86-64-arch-2-1.l 63 [ ]*33[ ]+\# AES
67 [ ]*37[ ]+\# AES \+ AVX
x86-64-arch-2-2.l 62 [ ]*33[ ]+\# AES
66 [ ]*37[ ]+\# AES \+ AVX
aes.s 1 # Check AES new instructions.
x86-64-aes.s 1 # Check 64bit AES new instructions.
aes-intel.d 1 #source: aes.s
3 #name: i386 AES (Intel mode)
  /external/conscrypt/common/src/main/java/org/conscrypt/
KeyGeneratorImpl.java 155 public static final class AES extends KeyGeneratorImpl {
156 public AES() {
157 super("AES", 128);
OpenSSLCipher.java 664 return "AES";
669 return "aes-" + (keyLength * 8) + "-" + mode.toString().toLowerCase(Locale.US);
678 public static class AES extends AES_BASE {
679 AES(Mode mode, Padding padding) {
683 public static class CBC extends AES {
701 public static class CTR extends AES {
707 public static class ECB extends AES {
728 case 16: // AES 128
729 case 24: // AES 192
730 case 32: // AES 25
    [all...]
  /external/lzma/Asm/x86/
AesOpt.asm 1 ; AesOpt.asm -- Intel's AES.
73 ; ---------- AES-CBC Decode ----------
131 ; ---------- AES-CBC Encode ----------
168 ; ---------- AES-CTR ----------
  /prebuilts/go/darwin-x86/src/crypto/aes/
cipher_generic.go 7 package aes package
15 // implementations of AES should implement their
ctr_s390x.go 5 package aes package
32 // NewCTR returns a Stream which encrypts/decrypts using the AES block
62 // Encrypt the buffer using AES in ECB mode.
  /prebuilts/go/linux-x86/src/crypto/aes/
cipher_generic.go 7 package aes package
15 // implementations of AES should implement their
ctr_s390x.go 5 package aes package
32 // NewCTR returns a Stream which encrypts/decrypts using the AES block
62 // Encrypt the buffer using AES in ECB mode.
  /external/libchrome/crypto/
symmetric_key.h 35 AES,
  /compatibility/cdd/9_security-model/
9_9_full-disk-encryption.md 12 encryption with Advanced Encryption Standard (AES) crypto performance
55 * [C-1-5] MUST support encrypting file contents using AES with a key length
57 * [C-1-6] MUST support encrypting file name using AES with a key length of
84 * [C-1-1] MUST use AES with a key of 128-bits (or greater) and a mode
85 designed for storage (for example, AES-XTS, AES-CBC-ESSIV).
89 * [C-1-3] MUST provide the user the possibility to AES encrypt the
9_11_keys-and-credentials.md 18 * [C-1-2] MUST have implementations of RSA, AES, ECDSA and HMAC cryptographic
  /prebuilts/go/darwin-x86/src/crypto/x509/
pem_decrypt_test.go 136 DEK-Info: AES-128-CBC,D4492E793FC835CC038A728ED174F78A
161 DEK-Info: AES-192-CBC,E2C9FB02BCA23ADE1829F8D8BC5F5369
186 DEK-Info: AES-256-CBC,8E7ED5CD731902CE938957A886A5FFBD
213 DEK-Info: AES-128-CBC,74611ABC2571AF11B1BF9B69E62C89E7
229 DEK-Info: AES-128-CBC,74611ABC2571AF11B1BF9B69E62C89E7
  /prebuilts/go/linux-x86/src/crypto/x509/
pem_decrypt_test.go 136 DEK-Info: AES-128-CBC,D4492E793FC835CC038A728ED174F78A
161 DEK-Info: AES-192-CBC,E2C9FB02BCA23ADE1829F8D8BC5F5369
186 DEK-Info: AES-256-CBC,8E7ED5CD731902CE938957A886A5FFBD
213 DEK-Info: AES-128-CBC,74611ABC2571AF11B1BF9B69E62C89E7
229 DEK-Info: AES-128-CBC,74611ABC2571AF11B1BF9B69E62C89E7
  /prebuilts/go/darwin-x86/src/crypto/cipher/
example_test.go 8 "crypto/aes"
18 // The key argument should be the AES key, either 16 or 32 bytes
19 // to select AES-128 or AES-256.
23 block, err := aes.NewCipher(key)
44 // The key argument should be the AES key, either 16 or 32 bytes
45 // to select AES-128 or AES-256.
51 block, err := aes.NewCipher(key)
74 block, err := aes.NewCipher(key
    [all...]
  /prebuilts/go/linux-x86/src/crypto/cipher/
example_test.go 8 "crypto/aes"
18 // The key argument should be the AES key, either 16 or 32 bytes
19 // to select AES-128 or AES-256.
23 block, err := aes.NewCipher(key)
44 // The key argument should be the AES key, either 16 or 32 bytes
45 // to select AES-128 or AES-256.
51 block, err := aes.NewCipher(key)
74 block, err := aes.NewCipher(key
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/
AES.java 69 public final class AES
81 private AES()
243 // super("AES", null);
261 // super("Poly1305-AES", 256, new Poly1305KeyGenerator());
388 super("AES", keySize, new CipherKeyGenerator());
538 // throw new InvalidAlgorithmParameterException("No supported AlgorithmParameterSpec for AES parameter generation.");
556 // params = createParametersInstance("AES");
577 // throw new InvalidAlgorithmParameterException("No supported AlgorithmParameterSpec for AES parameter generation.");
616 // throw new InvalidAlgorithmParameterException("No supported AlgorithmParameterSpec for AES parameter generation.");
652 return "AES IV"
    [all...]
  /libcore/benchmarks/src/benchmarks/regression/
CipherBenchmark.java 30 * Cipher benchmarks. Only runs on AES currently because of the combinatorial
54 AES,
  /frameworks/base/keystore/java/android/security/keystore/
AndroidKeyStoreKeyGeneratorSpi.java 46 public static class AES extends AndroidKeyStoreKeyGeneratorSpi {
47 public AES() {
  /prebuilts/go/darwin-x86/src/crypto/ecdsa/
ecdsa.go 8 // This implementation derives the nonce from an AES-CTR CSPRNG keyed by
10 // a result of Coron; the AES-CTR stream is IRO under standard assumptions.
21 "crypto/aes"
171 // Create an AES-CTR instance to use as a CSPRNG.
172 block, err := aes.NewCipher(key)
178 // the output of the AES-CTR instance.
  /prebuilts/go/linux-x86/src/crypto/ecdsa/
ecdsa.go 8 // This implementation derives the nonce from an AES-CTR CSPRNG keyed by
10 // a result of Coron; the AES-CTR stream is IRO under standard assumptions.
21 "crypto/aes"
171 // Create an AES-CTR instance to use as a CSPRNG.
172 block, err := aes.NewCipher(key)
178 // the output of the AES-CTR instance.

Completed in 227 milliseconds

12 3 4 5 6