HomeSort by relevance Sort by last modified time
    Searched defs:aes (Results 1 - 5 of 5) 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/
crypto_internal-cipher.c 19 #include "aes.h"
36 } aes; member in union:crypto_cipher::__anon14228
72 if (key_len > sizeof(ctx->u.aes.cbc)) {
76 ctx->u.aes.ctx_enc = aes_encrypt_init(key, key_len);
77 if (ctx->u.aes.ctx_enc == NULL) {
81 ctx->u.aes.ctx_dec = aes_decrypt_init(key, key_len);
82 if (ctx->u.aes.ctx_dec == NULL) {
83 aes_encrypt_deinit(ctx->u.aes.ctx_enc);
87 ctx->u.aes.block_size = key_len;
88 os_memcpy(ctx->u.aes.cbc, iv, ctx->u.aes.block_size)
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/nist/
NISTObjectIdentifiers.java 21 static final ASN1ObjectIdentifier aes = nistAlgorithm.branch("1"); field in interface:NISTObjectIdentifiers
23 static final ASN1ObjectIdentifier id_aes128_ECB = aes.branch("1");
24 static final ASN1ObjectIdentifier id_aes128_CBC = aes.branch("2");
25 static final ASN1ObjectIdentifier id_aes128_OFB = aes.branch("3");
26 static final ASN1ObjectIdentifier id_aes128_CFB = aes.branch("4");
27 static final ASN1ObjectIdentifier id_aes128_wrap = aes.branch("5");
28 static final ASN1ObjectIdentifier id_aes128_GCM = aes.branch("6");
29 static final ASN1ObjectIdentifier id_aes128_CCM = aes.branch("7");
31 static final ASN1ObjectIdentifier id_aes192_ECB = aes.branch("21");
32 static final ASN1ObjectIdentifier id_aes192_CBC = aes.branch("22");
    [all...]
  /external/wpa_supplicant/
crypto_internal.c 22 #include "aes.h"
243 } aes; member in union:crypto_cipher::__anon13847
274 if (key_len > sizeof(ctx->u.aes.cbc)) {
278 ctx->u.aes.ctx_enc = aes_encrypt_init(key, key_len);
279 if (ctx->u.aes.ctx_enc == NULL) {
283 ctx->u.aes.ctx_dec = aes_decrypt_init(key, key_len);
284 if (ctx->u.aes.ctx_dec == NULL) {
285 aes_encrypt_deinit(ctx->u.aes.ctx_enc);
289 ctx->u.aes.block_size = key_len;
290 os_memcpy(ctx->u.aes.cbc, iv, ctx->u.aes.block_size)
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/crypto/
crypto_internal.c 22 #include "aes.h"
244 } aes; member in union:crypto_cipher::__anon14013
275 if (key_len > sizeof(ctx->u.aes.cbc)) {
279 ctx->u.aes.ctx_enc = aes_encrypt_init(key, key_len);
280 if (ctx->u.aes.ctx_enc == NULL) {
284 ctx->u.aes.ctx_dec = aes_decrypt_init(key, key_len);
285 if (ctx->u.aes.ctx_dec == NULL) {
286 aes_encrypt_deinit(ctx->u.aes.ctx_enc);
290 ctx->u.aes.block_size = key_len;
291 os_memcpy(ctx->u.aes.cbc, iv, ctx->u.aes.block_size)
    [all...]

Completed in 8848 milliseconds