Searched refs:AES_BLOCK_SIZE (Results 1 - 22 of 22) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/aes/
H A Daes_ige.c81 unsigned char tmp[AES_BLOCK_SIZE];
82 unsigned char tmp2[AES_BLOCK_SIZE];
83 unsigned char prev[AES_BLOCK_SIZE];
85 const unsigned char *iv2 = ivec + AES_BLOCK_SIZE;
89 OPENSSL_assert((length%AES_BLOCK_SIZE) == 0);
95 while (len >= AES_BLOCK_SIZE)
97 /* hexdump(stdout, "in", in, AES_BLOCK_SIZE); */
98 /* hexdump(stdout, "iv", iv, AES_BLOCK_SIZE); */
99 for(n=0 ; n < AES_BLOCK_SIZE ; ++n)
101 /* hexdump(stdout, "in ^ iv", out, AES_BLOCK_SIZE); */
[all...]
H A Daes_cbc.c68 unsigned char tmp[AES_BLOCK_SIZE];
75 while (len >= AES_BLOCK_SIZE) {
76 for(n=0; n < AES_BLOCK_SIZE; ++n)
80 len -= AES_BLOCK_SIZE;
81 in += AES_BLOCK_SIZE;
82 out += AES_BLOCK_SIZE;
87 for(n=len; n < AES_BLOCK_SIZE; ++n)
92 memcpy(ivec,iv,AES_BLOCK_SIZE);
94 while (len >= AES_BLOCK_SIZE) {
96 for(n=0; n < AES_BLOCK_SIZE;
[all...]
H A Daes_cfb.c142 n = (n+1) % AES_BLOCK_SIZE;
152 n = (n+1) % AES_BLOCK_SIZE;
166 unsigned char ovec[AES_BLOCK_SIZE*2];
171 memcpy(ovec,ivec,AES_BLOCK_SIZE);
177 out[n] = (ovec[AES_BLOCK_SIZE+n] = in[n] ^ ivec[n]);
180 out[n] = (ovec[AES_BLOCK_SIZE+n] = in[n]) ^ ivec[n];
185 memcpy(ivec,ovec+num,AES_BLOCK_SIZE);
187 for(n=0 ; n < AES_BLOCK_SIZE ; ++n)
H A Daes_ctr.c117 unsigned char ivec[AES_BLOCK_SIZE],
118 unsigned char ecount_buf[AES_BLOCK_SIZE],
125 assert(*num < AES_BLOCK_SIZE);
135 n = (n+1) % AES_BLOCK_SIZE;
H A Daes.h67 #define AES_BLOCK_SIZE 16 macro
118 unsigned char ivec[AES_BLOCK_SIZE],
119 unsigned char ecount_buf[AES_BLOCK_SIZE],
H A Daes_ofb.c138 n = (n+1) % AES_BLOCK_SIZE;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/aes/
H A Daes_cbc.c68 unsigned char tmp[AES_BLOCK_SIZE];
75 while (len >= AES_BLOCK_SIZE) {
76 for(n=0; n < AES_BLOCK_SIZE; ++n)
80 len -= AES_BLOCK_SIZE;
81 in += AES_BLOCK_SIZE;
82 out += AES_BLOCK_SIZE;
87 for(n=len; n < AES_BLOCK_SIZE; ++n)
92 memcpy(ivec,iv,AES_BLOCK_SIZE);
94 while (len >= AES_BLOCK_SIZE) {
96 for(n=0; n < AES_BLOCK_SIZE;
[all...]
H A Daes_cfb.c142 n = (n+1) % AES_BLOCK_SIZE;
152 n = (n+1) % AES_BLOCK_SIZE;
166 unsigned char ovec[AES_BLOCK_SIZE*2];
171 memcpy(ovec,ivec,AES_BLOCK_SIZE);
177 out[n] = (ovec[AES_BLOCK_SIZE+n] = in[n] ^ ivec[n]);
180 out[n] = (ovec[AES_BLOCK_SIZE+n] = in[n]) ^ ivec[n];
185 memcpy(ivec,ovec+num,AES_BLOCK_SIZE);
187 for(n=0 ; n < AES_BLOCK_SIZE ; ++n)
H A Daes_ctr.c117 unsigned char ivec[AES_BLOCK_SIZE],
118 unsigned char ecount_buf[AES_BLOCK_SIZE],
125 assert(*num < AES_BLOCK_SIZE);
135 n = (n+1) % AES_BLOCK_SIZE;
H A Daes.h67 #define AES_BLOCK_SIZE 16 macro
118 unsigned char ivec[AES_BLOCK_SIZE],
119 unsigned char ecount_buf[AES_BLOCK_SIZE],
H A Daes_ofb.c138 n = (n+1) % AES_BLOCK_SIZE;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/s390/crypto/
H A Daes_s390.c28 #define AES_BLOCK_SIZE 16 macro
37 u8 iv[AES_BLOCK_SIZE];
84 AES_BLOCK_SIZE);
88 AES_BLOCK_SIZE);
92 AES_BLOCK_SIZE);
104 AES_BLOCK_SIZE);
108 AES_BLOCK_SIZE);
112 AES_BLOCK_SIZE);
124 .cra_blocksize = AES_BLOCK_SIZE,
170 unsigned int n = nbytes & ~(AES_BLOCK_SIZE
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/include/openssl/
H A Daes.h67 #define AES_BLOCK_SIZE 16 macro
118 unsigned char ivec[AES_BLOCK_SIZE],
119 unsigned char ecount_buf[AES_BLOCK_SIZE],
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/engine/
H A Deng_padlock.c242 #define AES_BLOCK_SIZE 16 macro
256 unsigned char iv[AES_BLOCK_SIZE]; /* Initialization vector */
677 #define EVP_CIPHER_block_size_ECB AES_BLOCK_SIZE
678 #define EVP_CIPHER_block_size_CBC AES_BLOCK_SIZE
689 AES_BLOCK_SIZE, \
858 padlock_xcrypt_ecb(nbytes/AES_BLOCK_SIZE, cdata, out_arg, in_arg);
862 memcpy(cdata->iv, ctx->iv, AES_BLOCK_SIZE);
863 iv = padlock_xcrypt_cbc(nbytes/AES_BLOCK_SIZE, cdata, out_arg, in_arg);
864 memcpy(ctx->iv, iv, AES_BLOCK_SIZE);
868 memcpy(cdata->iv, ctx->iv, AES_BLOCK_SIZE);
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/include/openssl/
H A Daes.h67 #define AES_BLOCK_SIZE 16 macro
118 unsigned char ivec[AES_BLOCK_SIZE],
119 unsigned char ecount_buf[AES_BLOCK_SIZE],
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/crypto/
H A Dpadlock-aes.c58 #define AES_BLOCK_SIZE 16 /* ditto */ macro
460 .cra_blocksize = AES_BLOCK_SIZE,
490 nbytes / AES_BLOCK_SIZE);
491 nbytes &= AES_BLOCK_SIZE - 1;
512 nbytes / AES_BLOCK_SIZE);
513 nbytes &= AES_BLOCK_SIZE - 1;
525 .cra_blocksize = AES_BLOCK_SIZE,
557 nbytes / AES_BLOCK_SIZE);
558 memcpy(walk.iv, iv, AES_BLOCK_SIZE);
559 nbytes &= AES_BLOCK_SIZE
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/fips/aes/
H A Dfips_aesavs.c72 #define AES_BLOCK_SIZE 16 macro
336 unsigned char iv[101][AES_BLOCK_SIZE];
361 memcpy(iv[0], iVec, AES_BLOCK_SIZE);
374 OutputValue("IV",iv[i],AES_BLOCK_SIZE,rfp,0);
574 memcpy(ptext[0], ctext[j], AES_BLOCK_SIZE);
579 memcpy(iv[i+1], ctext[j], AES_BLOCK_SIZE);
580 memcpy(ptext[0], ctext[j-1], AES_BLOCK_SIZE);
600 memcpy(ctext[0], ptext[j], AES_BLOCK_SIZE);
605 memcpy(iv[i+1], ptext[j], AES_BLOCK_SIZE);
606 memcpy(ctext[0], ptext[j-1], AES_BLOCK_SIZE);
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/test/
H A Dfips_aesavs.c72 #define AES_BLOCK_SIZE 16 macro
336 unsigned char iv[101][AES_BLOCK_SIZE];
361 memcpy(iv[0], iVec, AES_BLOCK_SIZE);
374 OutputValue("IV",iv[i],AES_BLOCK_SIZE,rfp,0);
574 memcpy(ptext[0], ctext[j], AES_BLOCK_SIZE);
579 memcpy(iv[i+1], ctext[j], AES_BLOCK_SIZE);
580 memcpy(ptext[0], ctext[j-1], AES_BLOCK_SIZE);
600 memcpy(ctext[0], ptext[j], AES_BLOCK_SIZE);
605 memcpy(iv[i+1], ptext[j], AES_BLOCK_SIZE);
606 memcpy(ctext[0], ptext[j-1], AES_BLOCK_SIZE);
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/x86_64/crypto/
H A Daes.c67 #define AES_BLOCK_SIZE 16 macro
305 .cra_blocksize = AES_BLOCK_SIZE,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/i386/crypto/
H A Daes.c53 #define AES_BLOCK_SIZE 16 macro
54 #define AES_KS_LENGTH 4 * AES_BLOCK_SIZE
483 .cra_blocksize = AES_BLOCK_SIZE,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/crypto/
H A Daes.c65 #define AES_BLOCK_SIZE 16 macro
424 .cra_blocksize = AES_BLOCK_SIZE,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/test/
H A Digetest.c201 unsigned char iv[AES_BLOCK_SIZE*2];
275 unsigned char iv[AES_BLOCK_SIZE*4];
276 unsigned char saved_iv[AES_BLOCK_SIZE*4];

Completed in 140 milliseconds