Lines Matching defs:block
13 * allows you to use them for any 128 bit block cipher.
41 * Input and output buffers can overlap if block function
43 * @param[in] block Block processing function.
51 block128_f block)
69 block(B, B, key);
90 * Input and output buffers can overlap if block function
94 * @param[in] block Block processing function.
102 block128_f block)
123 block(B, B, key);
132 * The first block of plaintext has to match the supplied IV, otherwise an
140 * Input and output buffers can overlap if block function
144 * @param[in] block Block processing function.
152 size_t inlen, block128_f block)
157 ret = crypto_128_unwrap_raw(key, got_iv, out, in, inlen, block);
175 * Input and output buffers can overlap if block function
179 * @param[in] block Block processing function.
186 block128_f block)
220 * the resulting 128-bit block using AES in ECB mode.
225 block(out, out, key);
230 ret = CRYPTO_128_wrap(key, aiv, out, out, padded_len, block);
241 * Input and output buffers can overlap if block function
245 * @param[in] block Block processing function.
254 block128_f block)
274 * single AES block using AES in ECB mode: AIV | P[1] = DEC(K, C[0] |
279 block(in, buff, key);
287 ret = crypto_128_unwrap_raw(key, aiv, out, in, inlen, block);