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

  /device/google/contexthub/lib/include/nanohub/
aes.h 34 //basic AES block ops
40 //AES-CBC
42 struct AesContext aes; member in struct:AesCbcContext
  /libcore/luni/src/main/java/java/util/concurrent/
ExecutorCompletionService.java 79 private final AbstractExecutorService aes; field in class:ExecutorCompletionService
98 if (aes == null)
101 return aes.newTaskFor(task);
105 if (aes == null)
108 return aes.newTaskFor(task, result);
123 this.aes = (executor instanceof AbstractExecutorService) ?
146 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::__anon27473
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/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/nist/
NISTObjectIdentifiers.java 48 static final ASN1ObjectIdentifier aes = nistAlgorithm.branch("1"); field in interface:NISTObjectIdentifiers
51 static final ASN1ObjectIdentifier id_aes128_ECB = aes.branch("1");
53 static final ASN1ObjectIdentifier id_aes128_CBC = aes.branch("2");
55 static final ASN1ObjectIdentifier id_aes128_OFB = aes.branch("3");
57 static final ASN1ObjectIdentifier id_aes128_CFB = aes.branch("4");
59 static final ASN1ObjectIdentifier id_aes128_wrap = aes.branch("5");
61 static final ASN1ObjectIdentifier id_aes128_GCM = aes.branch("6");
63 static final ASN1ObjectIdentifier id_aes128_CCM = aes.branch("7");
66 static final ASN1ObjectIdentifier id_aes192_ECB = aes.branch("21");
68 static final ASN1ObjectIdentifier id_aes192_CBC = aes.branch("22");
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_parser/
fpdf_parser_encrypt.cpp 246 uint8_t* aes = FX_Alloc(uint8_t, 2048); local
263 CRYPT_AESSetKey(aes, 16, key, 16, TRUE);
264 CRYPT_AESSetIV(aes, iv);
265 CRYPT_AESEncrypt(aes, E, content.GetBuffer(), iBufLen);
294 FX_Free(aes);
353 uint8_t* aes = FX_Alloc(uint8_t, 2048); local
354 CRYPT_AESSetKey(aes, 16, digest, 32, FALSE);
357 CRYPT_AESSetIV(aes, iv);
358 CRYPT_AESDecrypt(aes, key, ekey, 32);
359 CRYPT_AESSetKey(aes, 16, key, 32, FALSE)
683 uint8_t* aes = FX_Alloc(uint8_t, 2048); local
710 uint8_t* aes = FX_Alloc(uint8_t, 2048); local
    [all...]
  /external/libvncserver/libvncclient/
rfbproto.c 853 gcry_cipher_hd_t aes = NULL; local
969 error = gcry_cipher_open(&aes, GCRY_CIPHER_AES128, GCRY_CIPHER_MODE_ECB, 0);
975 error = gcry_cipher_setkey(aes, shared, 16);
981 error = gcry_cipher_encrypt(aes, ciphertext, sizeof(ciphertext), userpass, sizeof(userpass));
1019 if (aes)
1020 gcry_cipher_close(aes);
    [all...]
  /external/tpm2/
tpm_types.h 979 TPMI_AES_KEY_BITS aes; member in union:__anon24023
996 TPMI_ALG_SYM_MODE aes; member in union:__anon24024
    [all...]
  /system/tpm/trunks/
tpm_generated.h 1226 TPMI_AES_KEY_BITS aes; member in union:trunks::TPMU_SYM_KEY_BITS
1233 TPMI_ALG_SYM_MODE aes; member in union:trunks::TPMU_SYM_MODE
    [all...]
  /prebuilts/tools/common/m2/repository/itext/itext/2.0.8/
itext-2.0.8.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
bcel.jar 
  /prebuilts/tools/common/m2/repository/backport-util-concurrent/backport-util-concurrent/3.1/
backport-util-concurrent-3.1.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/findbugs/bcel/2.0.1/
bcel-2.0.1.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/findbugs/bcel-findbugs/6.0/
bcel-findbugs-6.0.jar 
  /external/google-tv-pairing-protocol/java/jar/
bcprov-jdk15-143.jar 
  /prebuilts/tools/common/m2/repository/org/bouncycastle/bcprov-jdk16/1.46/
bcprov-jdk16-1.46.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 
  /prebuilts/tools/common/offline-m2/org/bouncycastle/bcprov-jdk15on/1.48/
bcprov-jdk15on-1.48.jar 
  /prebuilts/sdk/tools/lib/
signapk.jar 

Completed in 243 milliseconds