=pod =head1 NAME EVP_KDF-HMAC-DRBG - The HMAC DRBG DETERMINISTIC EVP_KDF implementation =head1 DESCRIPTION Support for a deterministic HMAC DRBG using the B API. This is similar to L, but uses fixed values for its entropy and nonce values. This is used to generate deterministic nonce value required by ECDSA and DSA (as defined in RFC 6979). =head2 Identity "HMAC-DRBG-KDF" is the name for this implementation; it can be used with the EVP_KDF_fetch() function. =head2 Supported parameters The supported parameters are: =over 4 =item "digest" (B) =item "properties" (B) These parameters work as described in L. =item "entropy" (B) Sets the entropy bytes supplied to the HMAC-DRBG. =item "nonce" (B) Sets the nonce bytes supplied to the HMAC-DRBG. =back =head1 NOTES A context for KDF HMAC DRBG can be obtained by calling: EVP_KDF *kdf = EVP_KDF_fetch(NULL, "HMAC-DRBG-KDF", NULL); EVP_KDF_CTX *kdf_ctx = EVP_KDF_CTX_new(kdf, NULL); =head1 CONFORMING TO RFC 6979 =head1 SEE ALSO L, L =head1 HISTORY The EVP_KDF-HMAC-DRBG functionality was added in OpenSSL 3.2. =head1 COPYRIGHT Copyright 2022 The OpenSSL Project Authors. All Rights Reserved. Licensed under the Apache License 2.0 (the "License"). You may not use this file except in compliance with the License. You can obtain a copy in the file LICENSE in the source distribution or at L. =cut