]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/evp/c_allkdf.c
Fix TLS/SSL PRF usages.
[thirdparty/openssl.git] / crypto / evp / c_allkdf.c
CommitLineData
d2ba8123
SL
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
13void 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);
8bbeaaa4 23 EVP_add_kdf(&x963_kdf_meth);
1aec7716
SL
24#ifndef OPENSSL_NO_CMS
25 EVP_add_kdf(&x942_kdf_meth);
26#endif
d2ba8123 27}