]> git.ipfire.org Git - thirdparty/openssl.git/blame - doc/man7/EVP_KDF-SS.pod
Add support for SHA256/192
[thirdparty/openssl.git] / doc / man7 / EVP_KDF-SS.pod
CommitLineData
ccd7115a
P
1=pod
2
3=head1 NAME
4
5EVP_KDF-SS - The Single Step / One Step EVP_KDF implementation
6
7=head1 DESCRIPTION
8
9The EVP_KDF-SS algorithm implements the Single Step key derivation function (SSKDF).
10SSKDF derives a key using input such as a shared secret key (that was generated
11during the execution of a key establishment scheme) and fixedinfo.
12SSKDF is also informally referred to as 'Concat KDF'.
13
14=head2 Auxiliary function
15
16The implementation uses a selectable auxiliary function H, which can be one of:
17
18=over 4
19
20=item B<H(x) = hash(x, digest=md)>
21
22=item B<H(x) = HMAC_hash(x, key=salt, digest=md)>
23
24=item B<H(x) = KMACxxx(x, key=salt, custom="KDF", outlen=mac_size)>
25
26=back
27
28Both the HMAC and KMAC implementations set the key using the 'salt' value.
29The hash and HMAC also require the digest to be set.
30
31=head2 Identity
32
33"SSKDF" is the name for this implementation; it
34can be used with the EVP_KDF_fetch() function.
35
36=head2 Supported parameters
37
38The supported parameters are:
39
40=over 4
41
0c452a51 42=item "properties" (B<OSSL_KDF_PARAM_PROPERTIES>) <UTF8 string>
ccd7115a 43
0c452a51 44=item "digest" (B<OSSL_KDF_PARAM_DIGEST>) <UTF8 string>
ccd7115a 45
e8add4d3 46This parameter is ignored for KMAC.
47
0c452a51 48=item "mac" (B<OSSL_KDF_PARAM_MAC>) <UTF8 string>
ccd7115a 49
0c452a51 50=item "maclen" (B<OSSL_KDF_PARAM_MAC_SIZE>) <unsigned integer>
ccd7115a 51
0c452a51 52=item "salt" (B<OSSL_KDF_PARAM_SALT>) <octet string>
ccd7115a
P
53
54These parameters work as described in L<EVP_KDF(3)/PARAMETERS>.
55
0c452a51 56=item "key" (B<EVP_KDF_CTRL_SET_KEY>) <octet string>
ccd7115a
P
57
58This parameter set the shared secret that is used for key derivation.
59
0c452a51 60=item "info" (B<OSSL_KDF_PARAM_INFO>) <octet string>
ccd7115a
P
61
62This parameter sets an optional value for fixedinfo, also known as otherinfo.
63
64=back
65
66=head1 NOTES
67
68A context for SSKDF can be obtained by calling:
69
70 EVP_KDF *kdf = EVP_KDF_fetch(NULL, "SSKDF", NULL);
660c5344 71 EVP_KDF_CTX *kctx = EVP_KDF_CTX_new(kdf);
ccd7115a 72
dfabee82 73The output length of an SSKDF is specified via the I<keylen>
86913ef7 74parameter to the L<EVP_KDF_derive(3)> function.
ccd7115a
P
75
76=head1 EXAMPLES
77
78This example derives 10 bytes using H(x) = SHA-256, with the secret key "secret"
79and fixedinfo value "label":
80
81 EVP_KDF *kdf;
82 EVP_KDF_CTX *kctx;
83 unsigned char out[10];
84 OSSL_PARAM params[4], *p = params;
85
86 kdf = EVP_KDF_fetch(NULL, "SSKDF", NULL);
660c5344 87 kctx = EVP_KDF_CTX_new(kdf);
ccd7115a
P
88 EVP_KDF_free(kdf);
89
90 *p++ = OSSL_PARAM_construct_utf8_string(OSSL_KDF_PARAM_DIGEST,
91 SN_sha256, strlen(SN_sha256));
92 *p++ = OSSL_PARAM_construct_octet_string(OSSL_KDF_PARAM_KEY,
93 "secret", (size_t)6);
94 *p++ = OSSL_PARAM_construct_octet_string(OSSL_KDF_PARAM_INFO,
95 "label", (size_t)5);
96 *p = OSSL_PARAM_construct_end();
6980e36a 97 if (EVP_KDF_derive(kctx, out, sizeof(out), params) <= 0) {
ccd7115a
P
98 error("EVP_KDF_derive");
99 }
100
660c5344 101 EVP_KDF_CTX_free(kctx);
ccd7115a
P
102
103This example derives 10 bytes using H(x) = HMAC(SHA-256), with the secret key "secret",
104fixedinfo value "label" and salt "salt":
105
106 EVP_KDF *kdf;
107 EVP_KDF_CTX *kctx;
108 unsigned char out[10];
109 OSSL_PARAM params[6], *p = params;
110
111 kdf = EVP_KDF_fetch(NULL, "SSKDF", NULL);
660c5344 112 kctx = EVP_KDF_CTX_new(kdf);
ccd7115a
P
113 EVP_KDF_free(kdf);
114
115 *p++ = OSSL_PARAM_construct_utf8_string(OSSL_KDF_PARAM_MAC,
116 SN_hmac, strlen(SN_hmac));
117 *p++ = OSSL_PARAM_construct_utf8_string(OSSL_KDF_PARAM_DIGEST,
118 SN_sha256, strlen(SN_sha256));
119 *p++ = OSSL_PARAM_construct_octet_string(EVP_KDF_CTRL_SET_KEY,
120 "secret", (size_t)6);
121 *p++ = OSSL_PARAM_construct_octet_string(OSSL_KDF_PARAM_INFO,
122 "label", (size_t)5);
123 *p++ = OSSL_PARAM_construct_octet_string(OSSL_KDF_PARAM_SALT,
124 "salt", (size_t)4);
125 *p = OSSL_PARAM_construct_end();
6980e36a 126 if (EVP_KDF_derive(kctx, out, sizeof(out), params) <= 0) {
ccd7115a
P
127 error("EVP_KDF_derive");
128 }
129
660c5344 130 EVP_KDF_CTX_free(kctx);
ccd7115a
P
131
132This example derives 10 bytes using H(x) = KMAC128(x,salt,outlen), with the secret key "secret"
133fixedinfo value "label", salt of "salt" and KMAC outlen of 20:
134
135 EVP_KDF *kdf;
136 EVP_KDF_CTX *kctx;
137 unsigned char out[10];
e8add4d3 138 OSSL_PARAM params[6], *p = params;
ccd7115a
P
139
140 kdf = EVP_KDF_fetch(NULL, "SSKDF", NULL);
660c5344 141 kctx = EVP_KDF_CTX_new(kdf);
ccd7115a
P
142 EVP_KDF_free(kdf);
143
144 *p++ = OSSL_PARAM_construct_utf8_string(OSSL_KDF_PARAM_MAC,
145 SN_kmac128, strlen(SN_kmac128));
ccd7115a
P
146 *p++ = OSSL_PARAM_construct_octet_string(EVP_KDF_CTRL_SET_KEY,
147 "secret", (size_t)6);
148 *p++ = OSSL_PARAM_construct_octet_string(OSSL_KDF_PARAM_INFO,
149 "label", (size_t)5);
150 *p++ = OSSL_PARAM_construct_octet_string(OSSL_KDF_PARAM_SALT,
151 "salt", (size_t)4);
152 *p++ = OSSL_PARAM_construct_size_t(OSSL_KDF_PARAM_MAC_SIZE, (size_t)20);
153 *p = OSSL_PARAM_construct_end();
6980e36a 154 if (EVP_KDF_derive(kctx, out, sizeof(out), params) <= 0) {
ccd7115a
P
155 error("EVP_KDF_derive");
156 }
157
660c5344 158 EVP_KDF_CTX_free(kctx);
ccd7115a
P
159
160=head1 CONFORMING TO
161
162NIST SP800-56Cr1.
163
164=head1 SEE ALSO
165
4c04e7b1 166L<EVP_KDF(3)>,
660c5344
MC
167L<EVP_KDF_CTX_new(3)>,
168L<EVP_KDF_CTX_free(3)>,
169L<EVP_KDF_CTX_set_params(3)>,
1ba21239 170L<EVP_KDF_CTX_get_kdf_size(3)>,
4c04e7b1 171L<EVP_KDF_derive(3)>,
ccd7115a
P
172L<EVP_KDF(3)/PARAMETERS>
173
174=head1 HISTORY
175
4741c80c 176This functionality was added in OpenSSL 3.0.
ccd7115a
P
177
178=head1 COPYRIGHT
179
8020d79b 180Copyright 2019-2021 The OpenSSL Project Authors. All Rights Reserved. Copyright
ccd7115a
P
181(c) 2019, Oracle and/or its affiliates. All rights reserved.
182
183Licensed under the Apache License 2.0 (the "License"). You may not use
184this file except in compliance with the License. You can obtain a copy
185in the file LICENSE in the source distribution or at
186L<https://www.openssl.org/source/license.html>.
187
188=cut