HomeSort by relevance Sort by last modified time
    Searched refs:ecount_buf (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/third_party/openssl/openssl/crypto/aes/
aes_ctr.c 58 unsigned char ecount_buf[AES_BLOCK_SIZE],
60 CRYPTO_ctr128_encrypt(in,out,length,key,ivec,ecount_buf,num,(block128_f)AES_encrypt);
aes.h 123 unsigned char ecount_buf[AES_BLOCK_SIZE],
  /external/openssl/crypto/aes/
aes_ctr.c 58 unsigned char ecount_buf[AES_BLOCK_SIZE],
60 CRYPTO_ctr128_encrypt(in,out,length,key,ivec,ecount_buf,num,(block128_f)AES_encrypt);
aes.h 123 unsigned char ecount_buf[AES_BLOCK_SIZE],
  /external/chromium_org/third_party/openssl/openssl/crypto/modes/
ctr128.c 104 * encrypted counter is kept in ecount_buf. Both *num and
105 * ecount_buf must be initialised with zeros before the first
116 unsigned char ivec[16], unsigned char ecount_buf[16],
122 assert(in && out && key && ecount_buf && num);
130 *(out++) = *(in++) ^ ecount_buf[n];
140 (*block)(ivec, ecount_buf, key);
144 *(size_t *)(in+n) ^ *(size_t *)(ecount_buf+n);
151 (*block)(ivec, ecount_buf, key);
154 out[n] = in[n] ^ ecount_buf[n];
165 (*block)(ivec, ecount_buf, key)
    [all...]
  /external/openssl/crypto/modes/
ctr128.c 104 * encrypted counter is kept in ecount_buf. Both *num and
105 * ecount_buf must be initialised with zeros before the first
116 unsigned char ivec[16], unsigned char ecount_buf[16],
122 assert(in && out && key && ecount_buf && num);
130 *(out++) = *(in++) ^ ecount_buf[n];
140 (*block)(ivec, ecount_buf, key);
144 *(size_t *)(in+n) ^ *(size_t *)(ecount_buf+n);
151 (*block)(ivec, ecount_buf, key);
154 out[n] = in[n] ^ ecount_buf[n];
165 (*block)(ivec, ecount_buf, key)
    [all...]
  /external/chromium_org/crypto/
encryptor_openssl.cc 161 uint8_t ecount_buf[AES_BLOCK_SIZE] = { 0 }; local
167 input.size(), &aes_key, ivec, ecount_buf, &block_offset); local
  /external/chromium_org/third_party/openssl/openssl/include/openssl/
aes.h 123 unsigned char ecount_buf[AES_BLOCK_SIZE],
modes.h 35 unsigned char ivec[16], unsigned char ecount_buf[16],
40 unsigned char ivec[16], unsigned char ecount_buf[16],
  /external/openssl/include/openssl/
aes.h 123 unsigned char ecount_buf[AES_BLOCK_SIZE],
modes.h 35 unsigned char ivec[16], unsigned char ecount_buf[16],
40 unsigned char ivec[16], unsigned char ecount_buf[16],

Completed in 348 milliseconds