HomeSort by relevance Sort by last modified time
    Searched refs:aes (Results 1 - 25 of 114) sorted by null

1 2 3 4 5

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/nist/
NISTObjectIdentifiers.java 35 static final ASN1ObjectIdentifier aes = nistAlgorithm.branch("1"); field in interface:NISTObjectIdentifiers
38 static final ASN1ObjectIdentifier id_aes128_ECB = aes.branch("1");
40 static final ASN1ObjectIdentifier id_aes128_CBC = aes.branch("2");
42 static final ASN1ObjectIdentifier id_aes128_OFB = aes.branch("3");
44 static final ASN1ObjectIdentifier id_aes128_CFB = aes.branch("4");
46 static final ASN1ObjectIdentifier id_aes128_wrap = aes.branch("5");
48 static final ASN1ObjectIdentifier id_aes128_GCM = aes.branch("6");
50 static final ASN1ObjectIdentifier id_aes128_CCM = aes.branch("7");
53 static final ASN1ObjectIdentifier id_aes192_ECB = aes.branch("21");
55 static final ASN1ObjectIdentifier id_aes192_CBC = aes.branch("22");
    [all...]
  /external/wpa_supplicant_8/src/crypto/
Makefile 19 aes-cbc.o \
20 aes-ccm.o \
21 aes-ctr.o \
22 aes-eax.o \
23 aes-encblock.o \
24 aes-gcm.o \
25 aes-internal.o \
26 aes-internal-dec.o \
27 aes-internal-enc.o \
28 aes-omac1.o
    [all...]
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::__anon17257
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...]
  /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/ipsec-tools/src/racoon/samples/roadwarrior/client/
racoon.conf 19 encryption_algorithm aes;
30 encryption_algorithm aes;
  /external/ipsec-tools/src/racoon/samples/roadwarrior/server/
racoon.conf 17 encryption_algorithm aes;
38 encryption_algorithm aes;
  /external/openssl/crypto/aes/
aes_cbc.c 1 /* crypto/aes/aes_cbc.c -*- mode:C; c-file-style: "eay" -*- */
52 #include <openssl/aes.h>
aes_ctr.c 1 /* crypto/aes/aes_ctr.c -*- mode:C; c-file-style: "eay" -*- */
52 #include <openssl/aes.h>
aes_ofb.c 1 /* crypto/aes/aes_ofb.c -*- mode:C; c-file-style: "eay" -*- */
52 #include <openssl/aes.h>
aes_ecb.c 1 /* crypto/aes/aes_ecb.c -*- mode:C; c-file-style: "eay" -*- */
59 #include <openssl/aes.h>
aes_misc.c 1 /* crypto/aes/aes_misc.c -*- mode:C; c-file-style: "eay" -*- */
54 #include <openssl/aes.h>
57 const char AES_version[]="AES" OPENSSL_VERSION_PTEXT;
61 return "aes(full)";
63 return "aes(partial)";
67 /* FIPS wrapper functions to block low level AES calls in FIPS mode */
73 fips_cipher_abort(AES);
82 fips_cipher_abort(AES);
aes_cfb.c 1 /* crypto/aes/aes_cfb.c -*- mode:C; c-file-style: "eay" -*- */
52 #include <openssl/aes.h>
  /frameworks/av/drm/mediadrm/plugins/clearkey/
ClearKeyTypes.h 21 #include <openssl/aes.h>
AesCtrDecryptor.cpp 21 #include <openssl/aes.h>
  /external/openssl/
import_openssl.sh 516 gen_asm_arm crypto/aes/asm/aes-armv4.pl
517 gen_asm_arm crypto/aes/asm/aesv8-armx.pl
518 gen_asm_arm crypto/aes/asm/bsaes-armv7.pl
528 gen_asm_arm64 crypto/aes/asm/aesv8-armx.pl crypto/aes/asm/aesv8-armx-64.S
535 gen_asm_mips crypto/aes/asm/aes-mips.pl
543 gen_asm_x86 crypto/aes/asm/aes-586.p
    [all...]
Crypto-config-host.mk 22 crypto/aes/aes_cbc.c \
23 crypto/aes/aes_cfb.c \
24 crypto/aes/aes_core.c \
25 crypto/aes/aes_ctr.c \
26 crypto/aes/aes_ecb.c \
27 crypto/aes/aes_misc.c \
28 crypto/aes/aes_ofb.c \
29 crypto/aes/aes_wrap.c \
557 crypto/aes/asm/aes-armv4.S
    [all...]
Crypto-config-target.mk 22 crypto/aes/aes_cbc.c \
23 crypto/aes/aes_cfb.c \
24 crypto/aes/aes_core.c \
25 crypto/aes/aes_ctr.c \
26 crypto/aes/aes_ecb.c \
27 crypto/aes/aes_misc.c \
28 crypto/aes/aes_ofb.c \
29 crypto/aes/aes_wrap.c \
557 crypto/aes/asm/aes-armv4.S
    [all...]
  /external/openssl/crypto/aes/asm/
aesni-x86_64.pl 10 # This module implements support for Intel AES-NI extension. In
12 # drop-in replacement for crypto/aes/asm/aes-x86_64.pl [see below for
17 # Given aes(enc|dec) instructions' latency asymptotic performance for
35 # that otherwise used 'openssl speed -evp aes-128-??? -engine aesni
39 # Encryption Standard (AES) New Instruction Set" White Paper Revision
51 # the result back to AES unit the way it's done in CBC mode. There is
84 # While Westmere processor features 6 cycles latency for aes[enc|dec]
113 # can be obtained by dividing above mentioned numbers by AES
120 # execute up to 8 AES instructions at a time, so how does varyin
    [all...]
  /external/chromium_org/third_party/tlslite/tlslite/utils/
pycrypto_aes.py 4 """PyCrypto AES implementation."""
7 from .aes import *
10 import Crypto.Cipher.AES
15 class PyCrypto_AES(AES):
18 AES.__init__(self, key, mode, IV, "pycrypto")
21 self.context = Crypto.Cipher.AES.new(key, mode, IV)
openssl_aes.py 4 """OpenSSL/M2Crypto AES implementation."""
7 from .aes import *
14 class OpenSSL_AES(AES):
17 AES.__init__(self, key, mode, IV, "openssl")
33 AES.encrypt(self, plaintext)
41 AES.decrypt(self, ciphertext)
  /external/chromium_org/third_party/boringssl/src/crypto/aes/asm/
aesni-x86_64.pl 10 # This module implements support for Intel AES-NI extension. In
12 # drop-in replacement for crypto/aes/asm/aes-x86_64.pl [see below for
17 # Given aes(enc|dec) instructions' latency asymptotic performance for
35 # that otherwise used 'openssl speed -evp aes-128-??? -engine aesni
39 # Encryption Standard (AES) New Instruction Set" White Paper Revision
51 # the result back to AES unit the way it's done in CBC mode. There is
84 # While Westmere processor features 6 cycles latency for aes[enc|dec]
113 # can be obtained by dividing above mentioned numbers by AES
120 # execute up to 8 AES instructions at a time, so how does varyin
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_parser/
fpdf_parser_encrypt.cpp 239 FX_LPBYTE aes = FX_Alloc(FX_BYTE, 2048); local
256 CRYPT_AESSetKey(aes, 16, key, 16, TRUE);
257 CRYPT_AESSetIV(aes, iv);
258 CRYPT_AESEncrypt(aes, E, content.GetBuffer(), iBufLen);
287 FX_Free(aes);
338 FX_BYTE* aes = FX_Alloc(FX_BYTE, 2048); local
339 CRYPT_AESSetKey(aes, 16, digest, 32, FALSE);
342 CRYPT_AESSetIV(aes, iv);
343 CRYPT_AESDecrypt(aes, key, ekey, 32);
344 CRYPT_AESSetKey(aes, 16, key, 32, FALSE);
627 FX_BYTE* aes = FX_Alloc(FX_BYTE, 2048); local
652 FX_BYTE* aes = FX_Alloc(FX_BYTE, 2048); local
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
nmake.mak 69 $(OBJDIR)\aes-cbc.obj \
70 $(OBJDIR)\aes-ctr.obj \
71 $(OBJDIR)\aes-eax.obj \
72 $(OBJDIR)\aes-encblock.obj \
73 $(OBJDIR)\aes-omac1.obj \
74 $(OBJDIR)\aes-unwrap.obj \
75 $(OBJDIR)\aes-wrap.obj \

Completed in 1770 milliseconds

1 2 3 4 5