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

/freebsd-10.0-release/crypto/openssh/
H A Dcipher-aes.c42 #define RIJNDAEL_BLOCKSIZE 16 macro
46 u_char r_iv[RIJNDAEL_BLOCKSIZE];
66 memcpy(c->r_iv, iv, RIJNDAEL_BLOCKSIZE);
75 u_char buf[RIJNDAEL_BLOCKSIZE];
77 int i, j, blocks = len / RIJNDAEL_BLOCKSIZE;
81 if (len % RIJNDAEL_BLOCKSIZE)
91 for (i = 0; i < blocks; i++, plain+=RIJNDAEL_BLOCKSIZE,
92 cnow+=RIJNDAEL_BLOCKSIZE) {
93 for (j = 0; j < RIJNDAEL_BLOCKSIZE; j++)
98 memcpy(c->r_iv, cprev, RIJNDAEL_BLOCKSIZE);
[all...]

Completed in 91 milliseconds