Lines Matching defs:block
20 * of block length and it doesn't flip the order of the last two
30 block128_f block)
42 CRYPTO_cbc128_encrypt(in, out, len, key, ivec, block);
49 (*block) (ivec, ivec, key);
60 block128_f block)
71 CRYPTO_cbc128_encrypt(in, out, len, key, ivec, block);
81 (*block) (ivec, ivec, key);
161 block128_f block)
178 CRYPTO_cbc128_decrypt(in, out, len, key, ivec, block);
183 (*block) (in, tmp.c + 16, key);
187 (*block) (tmp.c, tmp.c, key);
204 block128_f block)
218 CRYPTO_cbc128_decrypt(in, out, len, key, ivec, block);
225 CRYPTO_cbc128_decrypt(in, out, len, key, ivec, block);
230 (*block) (in + residue, tmp.c + 16, key);
234 (*block) (tmp.c, tmp.c, key);
274 * this places in[16] at &tmp.c[16] and decrypted block at &tmp.c[0]
318 * this places in[16] at &tmp.c[16] and decrypted block at &tmp.c[0]