Lines Matching defs:key
36 * @param[in] key Key value.
48 size_t CRYPTO_128_wrap(void *key, const unsigned char *iv,
69 block(B, B, key);
86 * @param[in] key Key value.
99 static size_t crypto_128_unwrap_raw(void *key, unsigned char *iv,
123 block(B, B, key);
135 * @param[in] key Key value.
150 size_t CRYPTO_128_unwrap(void *key, const unsigned char *iv,
157 ret = crypto_128_unwrap_raw(key, got_iv, out, in, inlen, block);
172 * @param[in] key Key value.
183 size_t CRYPTO_128_wrap_pad(void *key, const unsigned char *icv,
188 /* n: number of 64-bit blocks in the padded key data
225 block(out, out, key);
230 ret = CRYPTO_128_wrap(key, aiv, out, out, padded_len, block);
238 * @param[in] key Key value.
251 size_t CRYPTO_128_unwrap_pad(void *key, const unsigned char *icv,
256 /* n: number of 64-bit blocks in the padded key data */
279 block(in, buff, key);
287 ret = crypto_128_unwrap_raw(key, aiv, out, in, inlen, block);