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

1 2 3 4

  /external/chromium_org/third_party/openssl/openssl/crypto/modes/
ofb128.c 68 unsigned char ivec[16], int *num,
74 assert(in && out && key && ivec && num);
81 *(out++) = *(in++) ^ ivec[n];
86 if (((size_t)in|(size_t)out|(size_t)ivec)%sizeof(size_t) != 0)
90 (*block)(ivec, ivec, key);
93 *(size_t*)(in+n) ^ *(size_t*)(ivec+n);
100 (*block)(ivec, ivec, key);
102 out[n] = in[n] ^ ivec[n]
    [all...]
cfb128.c 68 unsigned char ivec[16], int *num,
74 assert(in && out && key && ivec && num);
82 *(out++) = ivec[n] ^= *(in++);
87 if (((size_t)in|(size_t)out|(size_t)ivec)%sizeof(size_t) != 0)
91 (*block)(ivec, ivec, key);
94 *(size_t*)(ivec+n) ^= *(size_t*)(in+n);
102 (*block)(ivec, ivec, key);
104 out[n] = ivec[n] ^= in[n]
    [all...]
cbc128.c 68 unsigned char ivec[16], block128_f block)
71 const unsigned char *iv = ivec;
73 assert(in && out && key && ivec);
77 ((size_t)in|(size_t)out|(size_t)ivec)%sizeof(size_t) != 0) {
112 memcpy(ivec,iv,16);
117 unsigned char ivec[16], block128_f block)
122 assert(in && out && key && ivec);
126 const unsigned char *iv = ivec;
129 ((size_t)in|(size_t)out|(size_t)ivec)%sizeof(size_t) != 0) {
151 memcpy(ivec,iv,16)
    [all...]
ctr128.c 109 * of the IV (ivec), and that the application has full control over
116 unsigned char ivec[16], unsigned char ecount_buf[16],
136 if (((size_t)in|(size_t)out|(size_t)ivec)%sizeof(size_t) != 0)
140 (*block)(ivec, ecount_buf, key);
141 ctr128_inc_aligned(ivec);
151 (*block)(ivec, ecount_buf, key);
152 ctr128_inc_aligned(ivec);
165 (*block)(ivec, ecount_buf, key);
166 ctr128_inc(ivec);
192 unsigned char ivec[16], unsigned char ecount_buf[16]
    [all...]
  /external/openssl/crypto/modes/
ofb128.c 68 unsigned char ivec[16], int *num,
74 assert(in && out && key && ivec && num);
81 *(out++) = *(in++) ^ ivec[n];
86 if (((size_t)in|(size_t)out|(size_t)ivec)%sizeof(size_t) != 0)
90 (*block)(ivec, ivec, key);
93 *(size_t*)(in+n) ^ *(size_t*)(ivec+n);
100 (*block)(ivec, ivec, key);
102 out[n] = in[n] ^ ivec[n]
    [all...]
cfb128.c 68 unsigned char ivec[16], int *num,
74 assert(in && out && key && ivec && num);
82 *(out++) = ivec[n] ^= *(in++);
87 if (((size_t)in|(size_t)out|(size_t)ivec)%sizeof(size_t) != 0)
91 (*block)(ivec, ivec, key);
94 *(size_t*)(ivec+n) ^= *(size_t*)(in+n);
102 (*block)(ivec, ivec, key);
104 out[n] = ivec[n] ^= in[n]
    [all...]
cbc128.c 68 unsigned char ivec[16], block128_f block)
71 const unsigned char *iv = ivec;
73 assert(in && out && key && ivec);
77 ((size_t)in|(size_t)out|(size_t)ivec)%sizeof(size_t) != 0) {
112 memcpy(ivec,iv,16);
117 unsigned char ivec[16], block128_f block)
122 assert(in && out && key && ivec);
126 const unsigned char *iv = ivec;
129 ((size_t)in|(size_t)out|(size_t)ivec)%sizeof(size_t) != 0) {
151 memcpy(ivec,iv,16)
    [all...]
ctr128.c 109 * of the IV (ivec), and that the application has full control over
116 unsigned char ivec[16], unsigned char ecount_buf[16],
136 if (((size_t)in|(size_t)out|(size_t)ivec)%sizeof(size_t) != 0)
140 (*block)(ivec, ecount_buf, key);
141 ctr128_inc_aligned(ivec);
151 (*block)(ivec, ecount_buf, key);
152 ctr128_inc_aligned(ivec);
165 (*block)(ivec, ecount_buf, key);
166 ctr128_inc(ivec);
192 unsigned char ivec[16], unsigned char ecount_buf[16]
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/aes/
aes_cbc.c 57 unsigned char *ivec, const int enc) {
60 CRYPTO_cbc128_encrypt(in,out,len,key,ivec,(block128_f)AES_encrypt);
62 CRYPTO_cbc128_decrypt(in,out,len,key,ivec,(block128_f)AES_decrypt);
aes_cfb.c 62 unsigned char *ivec, int *num, const int enc) {
64 CRYPTO_cfb128_encrypt(in,out,length,key,ivec,num,enc,(block128_f)AES_encrypt);
70 unsigned char *ivec, int *num, const int enc)
72 CRYPTO_cfb128_1_encrypt(in,out,length,key,ivec,num,enc,(block128_f)AES_encrypt);
77 unsigned char *ivec, int *num, const int enc)
79 CRYPTO_cfb128_8_encrypt(in,out,length,key,ivec,num,enc,(block128_f)AES_encrypt);
aes_ctr.c 57 unsigned char ivec[AES_BLOCK_SIZE],
60 CRYPTO_ctr128_encrypt(in,out,length,key,ivec,ecount_buf,num,(block128_f)AES_encrypt);
aes_ofb.c 57 unsigned char *ivec, int *num)
59 CRYPTO_ofb128_encrypt(in,out,length,key,ivec,num,(block128_f)AES_encrypt);
aes.h 107 unsigned char *ivec, const int enc);
110 unsigned char *ivec, int *num, const int enc);
113 unsigned char *ivec, int *num, const int enc);
116 unsigned char *ivec, int *num, const int enc);
119 unsigned char *ivec, int *num);
122 unsigned char ivec[AES_BLOCK_SIZE],
128 unsigned char *ivec, const int enc);
132 const AES_KEY *key2, const unsigned char *ivec,
  /external/openssl/crypto/aes/
aes_cbc.c 57 unsigned char *ivec, const int enc) {
60 CRYPTO_cbc128_encrypt(in,out,len,key,ivec,(block128_f)AES_encrypt);
62 CRYPTO_cbc128_decrypt(in,out,len,key,ivec,(block128_f)AES_decrypt);
aes_cfb.c 62 unsigned char *ivec, int *num, const int enc) {
64 CRYPTO_cfb128_encrypt(in,out,length,key,ivec,num,enc,(block128_f)AES_encrypt);
70 unsigned char *ivec, int *num, const int enc)
72 CRYPTO_cfb128_1_encrypt(in,out,length,key,ivec,num,enc,(block128_f)AES_encrypt);
77 unsigned char *ivec, int *num, const int enc)
79 CRYPTO_cfb128_8_encrypt(in,out,length,key,ivec,num,enc,(block128_f)AES_encrypt);
aes_ctr.c 57 unsigned char ivec[AES_BLOCK_SIZE],
60 CRYPTO_ctr128_encrypt(in,out,length,key,ivec,ecount_buf,num,(block128_f)AES_encrypt);
aes_ofb.c 57 unsigned char *ivec, int *num)
59 CRYPTO_ofb128_encrypt(in,out,length,key,ivec,num,(block128_f)AES_encrypt);
aes.h 107 unsigned char *ivec, const int enc);
110 unsigned char *ivec, int *num, const int enc);
113 unsigned char *ivec, int *num, const int enc);
116 unsigned char *ivec, int *num, const int enc);
119 unsigned char *ivec, int *num);
122 unsigned char ivec[AES_BLOCK_SIZE],
128 unsigned char *ivec, const int enc);
132 const AES_KEY *key2, const unsigned char *ivec,
  /external/chromium_org/third_party/openssl/openssl/include/openssl/
aes.h 107 unsigned char *ivec, const int enc);
110 unsigned char *ivec, int *num, const int enc);
113 unsigned char *ivec, int *num, const int enc);
116 unsigned char *ivec, int *num, const int enc);
119 unsigned char *ivec, int *num);
122 unsigned char ivec[AES_BLOCK_SIZE],
128 unsigned char *ivec, const int enc);
132 const AES_KEY *key2, const unsigned char *ivec,
  /external/openssl/include/openssl/
aes.h 107 unsigned char *ivec, const int enc);
110 unsigned char *ivec, int *num, const int enc);
113 unsigned char *ivec, int *num, const int enc);
116 unsigned char *ivec, int *num, const int enc);
119 unsigned char *ivec, int *num);
122 unsigned char ivec[AES_BLOCK_SIZE],
128 unsigned char *ivec, const int enc);
132 const AES_KEY *key2, const unsigned char *ivec,
  /external/chromium_org/third_party/openssl/openssl/crypto/bf/
bf_cfb64.c 68 const BF_KEY *schedule, unsigned char *ivec, int *num, int encrypt)
76 iv=(unsigned char *)ivec;
86 iv=(unsigned char *)ivec;
89 iv=(unsigned char *)ivec;
106 iv=(unsigned char *)ivec;
109 iv=(unsigned char *)ivec;
  /external/chromium_org/third_party/openssl/openssl/crypto/des/
cfb64enc.c 68 DES_cblock *ivec, int *num, int enc)
76 iv = &(*ivec)[0];
86 iv = &(*ivec)[0];
89 iv = &(*ivec)[0];
106 iv = &(*ivec)[0];
109 iv = &(*ivec)[0];
des_old.c 92 long length,des_key_schedule schedule,_ossl_old_des_cblock *ivec)
95 (DES_key_schedule *)schedule, ivec);
98 des_key_schedule schedule,_ossl_old_des_cblock *ivec,int enc)
101 length, (DES_key_schedule *)schedule, ivec, enc);
104 des_key_schedule schedule,_ossl_old_des_cblock *ivec,int enc)
107 length, (DES_key_schedule *)schedule, ivec, enc);
110 des_key_schedule schedule,_ossl_old_des_cblock *ivec,
114 length, (DES_key_schedule *)schedule, ivec, inw, outw, enc);
117 long length,des_key_schedule schedule,_ossl_old_des_cblock *ivec,int enc)
120 (DES_key_schedule *)schedule, ivec, enc)
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/rc2/
rc2cfb64.c 68 long length, RC2_KEY *schedule, unsigned char *ivec,
77 iv=(unsigned char *)ivec;
87 iv=(unsigned char *)ivec;
90 iv=(unsigned char *)ivec;
107 iv=(unsigned char *)ivec;
110 iv=(unsigned char *)ivec;
  /external/openssl/crypto/bf/
bf_cfb64.c 68 const BF_KEY *schedule, unsigned char *ivec, int *num, int encrypt)
76 iv=(unsigned char *)ivec;
86 iv=(unsigned char *)ivec;
89 iv=(unsigned char *)ivec;
106 iv=(unsigned char *)ivec;
109 iv=(unsigned char *)ivec;

Completed in 180 milliseconds

1 2 3 4