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

  /external/wpa_supplicant_8/src/crypto/
aes.h 12 #define AES_BLOCK_SIZE 16
  /external/qemu/
aes.h 5 #define AES_BLOCK_SIZE 16
  /external/chromium_org/third_party/openssl/openssl/crypto/aes/
aes.h 69 #define AES_BLOCK_SIZE 16
122 unsigned char ivec[AES_BLOCK_SIZE],
123 unsigned char ecount_buf[AES_BLOCK_SIZE],
  /external/chromium_org/third_party/openssl/openssl/include/openssl/
aes.h 69 #define AES_BLOCK_SIZE 16
122 unsigned char ivec[AES_BLOCK_SIZE],
123 unsigned char ecount_buf[AES_BLOCK_SIZE],
  /external/openssl/crypto/aes/
aes.h 69 #define AES_BLOCK_SIZE 16
122 unsigned char ivec[AES_BLOCK_SIZE],
123 unsigned char ecount_buf[AES_BLOCK_SIZE],
  /external/openssl/include/openssl/
aes.h 69 #define AES_BLOCK_SIZE 16
122 unsigned char ivec[AES_BLOCK_SIZE],
123 unsigned char ecount_buf[AES_BLOCK_SIZE],
  /external/openssh/openbsd-compat/
openssl-compat.h 56 # define AES_BLOCK_SIZE 16
  /frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/common/
FwdLockGlue.c 115 size_t padding = AES_BLOCK_SIZE - (decryptedKeyLength % AES_BLOCK_SIZE);
145 return ((plaintextKeyLength / AES_BLOCK_SIZE) + 2) * AES_BLOCK_SIZE;
155 unsigned char initVector[AES_BLOCK_SIZE];
156 if (FwdLockGlue_GetRandomNumber(initVector, AES_BLOCK_SIZE)) {
157 size_t padding = AES_BLOCK_SIZE - (plaintextKeyLength % AES_BLOCK_SIZE);
158 size_t dataLength = encryptedKeyLength - AES_BLOCK_SIZE;
161 memcpy((unsigned char *)pEncryptedKey + dataLength, initVector, AES_BLOCK_SIZE);
    [all...]
  /libcore/crypto/src/main/java/org/conscrypt/
OpenSSLCipher.java 521 private static final int AES_BLOCK_SIZE = 16;
669 return AES_BLOCK_SIZE;

Completed in 247 milliseconds