Home
last modified time | relevance | path

Searched refs:output_cd (Results 1 – 1 of 1) sorted by relevance

/f-stack/freebsd/contrib/openzfs/module/zfs/
H A Dhkdf.c31 crypto_data_t input_cd, output_cd; in hkdf_sha512_extract() local
50 output_cd.cd_format = CRYPTO_DATA_RAW; in hkdf_sha512_extract()
51 output_cd.cd_offset = 0; in hkdf_sha512_extract()
52 output_cd.cd_length = SHA512_DIGEST_LENGTH; in hkdf_sha512_extract()
53 output_cd.cd_raw.iov_base = (char *)out_buf; in hkdf_sha512_extract()
54 output_cd.cd_raw.iov_len = output_cd.cd_length; in hkdf_sha512_extract()
56 ret = crypto_mac(&mech, &input_cd, &key, NULL, &output_cd, NULL); in hkdf_sha512_extract()