Lines Matching defs:in
6 * You may not use this file except in compliance with the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
40 * in the version.
61 static int ucrypto_common_update(crypto_ctx_t *context, uchar_t *in,
66 size_t key_len, void *iv, size_t iv_len, uchar_t *in, size_t in_len,
219 * If the mechanism is defined in this function, then it is supported.
220 * If it is supported, sets up the initialization vector in crypto_mechanism_t.
274 ucrypto_common_update(crypto_ctx_t *context, uchar_t *in, size_t in_len,
282 CRYPTO_SET_RAW_DATA(idata, in, in_len);
463 void *iv, size_t iv_len, uchar_t *in, size_t in_len,
494 (void) pkcs7_encode(in, in_len, padded, padded_len,
529 CRYPTO_SET_RAW_DATA(idata, in, in_len);
622 ucrypto_encrypt_update(crypto_ctx_t *context, uchar_t *in, size_t in_len,
632 return (update_func(context, in, in_len, out, out_len));
641 return (ucrypto_common_update(context, in, in_len, out, out_len,
668 void *iv, size_t iv_len, uchar_t *in, size_t in_len,
680 in, in_len, out, out_len));
684 return (ucrypto_atomic(mech_type, key_str, key_len, iv, iv_len, in,
698 ucrypto_decrypt_update(crypto_ctx_t *context, uchar_t *in, size_t in_len,
708 return (update_func(context, in, in_len, out, out_len));
717 return (ucrypto_common_update(context, in, in_len, out, out_len,
729 void *iv, size_t iv_len, uchar_t *in, size_t in_len,
740 in, in_len, out, out_len));
744 return (ucrypto_atomic(mech_type, key_str, key_len, iv, iv_len, in,