Added X963KDF API
[openssl.git] / crypto / evp / c_allkdf.c
1 /*
2  * Copyright 2019 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the Apache License 2.0 (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9
10 #include <openssl/evp.h>
11 #include "internal/evp_int.h"
12
13 void openssl_add_all_kdfs_int(void)
14 {
15     EVP_add_kdf(&pbkdf2_kdf_meth);
16 #ifndef OPENSSL_NO_SCRYPT
17     EVP_add_kdf(&scrypt_kdf_meth);
18 #endif
19     EVP_add_kdf(&tls1_prf_kdf_meth);
20     EVP_add_kdf(&hkdf_kdf_meth);
21     EVP_add_kdf(&sshkdf_kdf_meth);
22     EVP_add_kdf(&ss_kdf_meth);
23     EVP_add_kdf(&x963_kdf_meth);
24 }