/external/wpa_supplicant_8/src/crypto/ |
aes.h | 15 void aes_encrypt(void *ctx, const u8 *plain, u8 *crypt);
|
aes-ccm.c | 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); 73 aes_encrypt(aes, x, x); 79 aes_encrypt(aes, x, x); 102 aes_encrypt(aes, a, out); 109 aes_encrypt(aes, a, out); 125 aes_encrypt(aes, a, tmp); 140 aes_encrypt(aes, a, tmp);
|
aes-encblock.c | 29 aes_encrypt(ctx, in, out);
|
aes-ctr.c | 40 aes_encrypt(ctx, counter, buf);
|
aes-omac1.c | 85 aes_encrypt(ctx, cbc, cbc); 90 aes_encrypt(ctx, pad, pad); 114 aes_encrypt(ctx, pad, mac);
|
aes-gcm.c | 158 aes_encrypt(aes, cb, ypos); 168 aes_encrypt(aes, cb, tmp); 185 aes_encrypt(aes, H, H);
|
aes-cbc.c | 43 aes_encrypt(ctx, cbc, cbc);
|
aes-wrap.c | 56 aes_encrypt(ctx, b, b);
|
aes-internal-enc.c | 115 void aes_encrypt(void *ctx, const u8 *plain, u8 *crypt) function
|
crypto_gnutls.c | 110 void aes_encrypt(void *ctx, const u8 *plain, u8 *crypt) function
|
crypto_internal-cipher.c | 123 aes_encrypt(ctx->u.aes.ctx_enc, ctx->u.aes.cbc,
|
/external/syslinux/gpxe/src/crypto/ |
axtls_aes.c | 82 * Call AXTLS' AES_encrypt() or AES_decrypt() functions 96 /* AXTLS' AES_encrypt() and AES_decrypt() functions both 115 static void aes_encrypt ( void *ctx, const void *src, void *dst, function 122 aes_call_axtls ( &aes_ctx->axtls_ctx, src, dst, AES_encrypt ); 152 .encrypt = aes_encrypt,
|
/external/boringssl/src/crypto/fipsmodule/aes/ |
mode_wrappers.c | 60 (block128_f)AES_encrypt); 66 assert((AES_ENCRYPT == enc) || (AES_DECRYPT == enc)); 68 if (AES_ENCRYPT == enc) { 69 AES_encrypt(in, out, key); 81 CRYPTO_cbc128_encrypt(in, out, len, key, ivec, (block128_f)AES_encrypt); 101 (block128_f)AES_encrypt); 110 (block128_f)AES_encrypt);
|
aes_test.cc | 44 AES_encrypt(plaintext.data(), block, &aes_key); 49 AES_encrypt(block, block, &aes_key);
|
key_wrap.c | 87 AES_encrypt(A, A, key);
|
/external/boringssl/src/include/openssl/ |
aes.h | 62 #define AES_ENCRYPT 1 94 /* AES_encrypt encrypts a single block from |in| to |out| with |key|. The |in| 96 OPENSSL_EXPORT void AES_encrypt(const uint8_t *in, uint8_t *out,
|
/frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/decoder/ |
FwdLockFile.c | 192 AES_encrypt(pData->value, pData->key, &pData->sessionRoundKeys); 199 AES_encrypt(pData->value, pData->key, &pData->sessionRoundKeys); 252 AES_encrypt(counter, pSession->keyStream, &pSession->encryptionRoundKeys);
|
/external/openssh/ |
cipher-ctr.c | 73 AES_encrypt(c->aes_counter, buf, &c->aes_ctx);
|
/external/tpm2/ |
CpriSym.c | 17 #define SM4_encrypt AES_encrypt 116 AES_encrypt(iv, iv, &AesKey); 224 AES_encrypt(iv, iv, &AesKey); 279 AES_encrypt(iv, tmp, &AesKey); 334 AES_encrypt(iv, (BYTE *)tmp, &AesKey); 381 AES_encrypt(dIn, dOut, &AesKey); 474 AES_encrypt(iv, iv, &AesKey);
|
/device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/Cipher/ |
CryptAes.c | 135 AES_ecb_encrypt (Input, Output, AesKey, AES_ENCRYPT);
258 AES_cbc_encrypt (Input, Output, (UINT32) InputSize, AesKey, IvecBuffer, AES_ENCRYPT);
|
/external/boringssl/src/decrepit/xts/ |
xts.c | 189 xctx->xts.block1 = (block128_f) AES_encrypt; 197 xctx->xts.block2 = (block128_f) AES_encrypt;
|
/external/boringssl/src/crypto/fipsmodule/modes/ |
gcm_test.cc | 90 CRYPTO_gcm128_init(&ctx, &aes_key, (block128_f)AES_encrypt, 0);
|
/external/syslinux/gpxe/src/crypto/axtls/ |
crypto.h | 58 void AES_encrypt(const AES_CTX *ctx, uint32_t *data);
|
/frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/common/ |
FwdLockGlue.c | 163 initVector, AES_ENCRYPT);
|
/system/bt/stack/smp/ |
aes.h | 89 return_type aes_encrypt(const unsigned char in[N_BLOCK],
|