1KCAPI_MD_HMAC_SHA384(3) Programming Interface KCAPI_MD_HMAC_SHA384(3)
2
3
4
6 kcapi_md_hmac_sha384 - HMAC SHA-384 keyed message digest on one buffer
7
9 ssize_t kcapi_md_hmac_sha384(const uint8_t * key, uint32_t keylen,
10 const uint8_t * in, size_t inlen,
11 uint8_t * out, size_t outlen);
12
14 key
15 [in] buffer with HMAC key
16
17 keylen
18 [in] length of HMAC key buffer
19
20 in
21 [in] buffer with input data
22
23 inlen
24 [in] length of input buffer
25
26 out
27 [out] buffer for message digest
28
29 outlen
30 [in] length of out
31
33 With this one-shot convenience function, a keyed message digest of the
34 given buffer is generated. The output buffer must be allocated by the
35 caller and have at least the length of the message digest size for the
36 chosen keyed message digest.
37
38 return size of message digest upon success; -EIO - data cannot be
39 obtained; -ENOMEM - buffer is too small for the complete message
40 digest, the buffer is filled with the truncated message digest
41
43 Stephan Mueller <smueller@chronox.de>
44 Author.
45
47libkcapi Manual 1.4.0 July 2023 KCAPI_MD_HMAC_SHA384(3)