Lines Matching defs:input
127 const unsigned char *input, size_t in_len,
160 memmove(output + KW_SEMIBLOCK_LENGTH, input, in_len);
186 memcpy(output + KW_SEMIBLOCK_LENGTH, input, in_len);
252 * 2. The input buffer is of size semiblocks * KW_SEMIBLOCK_LENGTH.
254 * 4. A is a buffer to hold the first semiblock of the input buffer.
257 const unsigned char *input, size_t semiblocks,
274 memcpy(A, input, KW_SEMIBLOCK_LENGTH);
275 memmove(output, input + KW_SEMIBLOCK_LENGTH, (semiblocks - 1) * KW_SEMIBLOCK_LENGTH);
321 const unsigned char *input, size_t in_len,
347 ret = unwrap(ctx, input, in_len / KW_SEMIBLOCK_LENGTH,
379 input, 16, outbuff, &olen);
390 ret = unwrap(ctx, input, in_len / KW_SEMIBLOCK_LENGTH,
407 * Plen is the length of the plaintext, when the input is valid.