HomeSort by relevance Sort by last modified time
    Searched defs:aes (Results 1 - 10 of 10) sorted by null

  /libcore/luni/src/main/java/java/util/concurrent/
ExecutorCompletionService.java 80 private final AbstractExecutorService aes; field in class:ExecutorCompletionService
96 if (aes == null)
99 return aes.newTaskFor(task);
103 if (aes == null)
106 return aes.newTaskFor(task, result);
121 this.aes = (executor instanceof AbstractExecutorService) ?
144 this.aes = (executor instanceof AbstractExecutorService) ?
  /external/wpa_supplicant_8/src/crypto/
aes-ccm.c 2 * Counter with CBC-MAC (CCM) with AES
13 #include "aes.h"
28 static void aes_ccm_auth_start(void *aes, size_t M, size_t L, const u8 *nonce,
44 aes_encrypt(aes, b, x); /* X_1 = E(K, B_0) */
54 aes_encrypt(aes, aad_buf, x); /* X_2 = E(K, X_1 XOR B_1) */
59 aes_encrypt(aes, &aad_buf[AES_BLOCK_SIZE], x);
64 static void aes_ccm_auth(void *aes, const u8 *data, size_t len, u8 *x)
73 aes_encrypt(aes, x, x);
79 aes_encrypt(aes, x, x);
92 static void aes_ccm_encr(void *aes, size_t L, const u8 *in, size_t len, u8 *out
153 void *aes; local
183 void *aes; local
    [all...]
crypto_internal-cipher.c 13 #include "aes.h"
29 } aes; member in union:crypto_cipher::__anon30608
65 ctx->u.aes.ctx_enc = aes_encrypt_init(key, key_len);
66 if (ctx->u.aes.ctx_enc == NULL) {
70 ctx->u.aes.ctx_dec = aes_decrypt_init(key, key_len);
71 if (ctx->u.aes.ctx_dec == NULL) {
72 aes_encrypt_deinit(ctx->u.aes.ctx_enc);
76 os_memcpy(ctx->u.aes.cbc, iv, AES_BLOCK_SIZE);
122 ctx->u.aes.cbc[j] ^= plain[j];
123 aes_encrypt(ctx->u.aes.ctx_enc, ctx->u.aes.cbc
    [all...]
aes-gcm.c 2 * Galois/Counter Mode (GCM) and GMAC with AES
13 #include "aes.h"
143 static void aes_gctr(void *aes, const u8 *icb, const u8 *x, size_t xlen, u8 *y)
158 aes_encrypt(aes, cb, ypos);
168 aes_encrypt(aes, cb, tmp);
177 void *aes; local
179 aes = aes_encrypt_init(key, key_len);
180 if (aes == NULL)
185 aes_encrypt(aes, H, H);
188 return aes;
261 void *aes; local
295 void *aes; local
    [all...]
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/
PEMDecoder.java 12 import ch.ethz.ssh2.crypto.cipher.AES;
89 // This took me two hours until I got AES-xxx running.
252 else if (algo.equals("AES-128-CBC"))
254 AES aes = new AES(); local
255 aes.init(false, generateKeyFromPasswordSaltWithMD5(pw, salt, 16));
256 bc = new CBCMode(aes, salt, false);
258 else if (algo.equals("AES-192-CBC"))
260 AES aes = new AES() local
266 AES aes = new AES(); local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/nist/
NISTObjectIdentifiers.java 25 static final ASN1ObjectIdentifier aes = nistAlgorithm.branch("1"); field in interface:NISTObjectIdentifiers
27 static final ASN1ObjectIdentifier id_aes128_ECB = aes.branch("1");
28 static final ASN1ObjectIdentifier id_aes128_CBC = aes.branch("2");
29 static final ASN1ObjectIdentifier id_aes128_OFB = aes.branch("3");
30 static final ASN1ObjectIdentifier id_aes128_CFB = aes.branch("4");
31 static final ASN1ObjectIdentifier id_aes128_wrap = aes.branch("5");
32 static final ASN1ObjectIdentifier id_aes128_GCM = aes.branch("6");
33 static final ASN1ObjectIdentifier id_aes128_CCM = aes.branch("7");
35 static final ASN1ObjectIdentifier id_aes192_ECB = aes.branch("21");
36 static final ASN1ObjectIdentifier id_aes192_CBC = aes.branch("22");
    [all...]
  /prebuilts/tools/common/m2/internal/com/google/code/findbugs/bcel/2.0.1/
bcel-2.0.1.jar 
  /prebuilts/sdk/tools/lib/
signapk.jar 
  /prebuilts/devtools/tools/lib/
bcprov-jdk15on-1.48.jar 
  /prebuilts/tools/common/m2/repository/org/bouncycastle/bcprov-jdk15on/1.48/
bcprov-jdk15on-1.48.jar 

Completed in 904 milliseconds