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

1 2

  /external/openssl/crypto/aes/
aes_cfb.c 64 CRYPTO_cfb128_encrypt(in,out,length,key,ivec,num,enc,(block128_f)AES_encrypt);
72 CRYPTO_cfb128_1_encrypt(in,out,length,key,ivec,num,enc,(block128_f)AES_encrypt);
79 CRYPTO_cfb128_8_encrypt(in,out,length,key,ivec,num,enc,(block128_f)AES_encrypt);
aes_cbc.c 60 CRYPTO_cbc128_encrypt(in,out,len,key,ivec,(block128_f)AES_encrypt);
aes_ctr.c 60 CRYPTO_ctr128_encrypt(in,out,length,key,ivec,ecount_buf,num,(block128_f)AES_encrypt);
aes_ofb.c 59 CRYPTO_ofb128_encrypt(in,out,length,key,ivec,num,(block128_f)AES_encrypt);
aes_ecb.c 66 assert((AES_ENCRYPT == enc)||(AES_DECRYPT == enc));
68 if (AES_ENCRYPT == enc)
69 AES_encrypt(in, out, key);
aes.h 63 #define AES_ENCRYPT 1
98 void AES_encrypt(const unsigned char *in, unsigned char *out,
aes_ige.c 87 OPENSSL_assert((AES_ENCRYPT == enc)||(AES_DECRYPT == enc));
92 if (AES_ENCRYPT == enc)
107 AES_encrypt((unsigned char *)outp->data, (unsigned char *)outp->data, key);
133 AES_encrypt((unsigned char *)tmp2.data, (unsigned char *)tmp2.data, key);
228 OPENSSL_assert((AES_ENCRYPT == enc)||(AES_DECRYPT == enc));
231 if (AES_ENCRYPT == enc)
243 AES_encrypt(out, out, key);
266 AES_encrypt(out, out, key);
aes_wrap.c 84 AES_encrypt(B, B, key);
  /external/qemu/
aes.h 18 void AES_encrypt(const unsigned char *in, unsigned char *out,
aes.c     [all...]
  /external/openssh/openbsd-compat/
openssl-compat.h 57 # define AES_encrypt(a, b, c) rijndael_encrypt(c, a, b)
  /external/openssl/include/openssl/
aes.h 63 #define AES_ENCRYPT 1
98 void AES_encrypt(const unsigned char *in, unsigned char *out,
  /external/openssh/
cipher-ctr.c 75 AES_encrypt(c->aes_counter, buf, &c->aes_ctx);
  /frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/decoder/
FwdLockFile.c 189 AES_encrypt(pData->value, pData->key, &pData->sessionRoundKeys);
196 AES_encrypt(pData->value, pData->key, &pData->sessionRoundKeys);
249 AES_encrypt(counter, pSession->keyStream, &pSession->encryptionRoundKeys);
  /external/openssl/crypto/evp/
e_aes.c 537 dat->block = (block128_f)AES_encrypt;
555 dat->block = (block128_f)AES_encrypt;
830 (block128_f)AES_encrypt);
847 CRYPTO_gcm128_init(&gctx->gcm, &gctx->ks, (block128_f)AES_encrypt);
1097 xctx->xts.block1 = (block128_f)AES_encrypt;
1107 xctx->xts.block2 = (block128_f)AES_encrypt;
    [all...]
  /external/openssl/crypto/aes/asm/
aes-armv4.s 111 @ void AES_encrypt(const unsigned char *in, unsigned char *out,
113 .global AES_encrypt
114 .type AES_encrypt,%function
116 AES_encrypt:
117 sub r3,pc,#8 @ AES_encrypt
121 sub r10,r3,#AES_encrypt-AES_Te @ Te
215 .size AES_encrypt,.-AES_encrypt
aes-armv4.pl 164 @ void AES_encrypt(const unsigned char *in, unsigned char *out,
166 .global AES_encrypt
167 .type AES_encrypt,%function
169 AES_encrypt:
170 sub r3,pc,#8 @ AES_encrypt
174 sub $tbl,r3,#AES_encrypt-AES_Te @ Te
268 .size AES_encrypt,.-AES_encrypt
aes-ia64.S 277 // void AES_encrypt (const void *in,void *out,const AES_KEY *key);
278 .global AES_encrypt#
279 .proc AES_encrypt#
281 AES_encrypt:
292 add out8=(AES_Te#-AES_encrypt#),r3 // Te0
415 .endp AES_encrypt#
449 s/AES_encrypt/AES_decrypt/g;
    [all...]
aes-sparcv9.pl 513 .globl AES_encrypt
514 AES_encrypt:
624 .type AES_encrypt,#function
625 .size AES_encrypt,(.-AES_encrypt)
aes-mips.s 256 .globl AES_encrypt
257 .ent AES_encrypt
258 AES_encrypt:
310 .end AES_encrypt
aes-mips.pl 357 .globl AES_encrypt
358 .ent AES_encrypt
359 AES_encrypt:
389 .cpsetup $pf,$zero,AES_encrypt
437 .end AES_encrypt
    [all...]
aes-s390x.pl 57 # on single-block, also hardware-assisted, AES_encrypt. "Up to" refers
237 # void AES_encrypt(const unsigned char *inp, unsigned char *out,
239 .globl AES_encrypt
240 .type AES_encrypt,\@function
241 AES_encrypt:
278 .size AES_encrypt,.-AES_encrypt
    [all...]
aes-586.s 973 .globl AES_encrypt
974 .type AES_encrypt,@function
976 AES_encrypt:
1037 .size AES_encrypt,.-.L_AES_encrypt_begin
    [all...]
  /frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/converter/
FwdLockConv.c 258 AES_encrypt(pData->value, pData->key, &pData->sessionRoundKeys);
265 AES_encrypt(pData->value, pData->key, &pData->sessionRoundKeys);
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/crypto/
crypto_openssl.c 174 void aes_encrypt(void *ctx, const u8 *plain, u8 *crypt) function
176 AES_encrypt(plain, crypt, ctx);

Completed in 283 milliseconds

1 2