c_allkdf.c 700 B

123456789101112131415161718192021222324
  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. #include <openssl/evp.h>
  10. #include "internal/evp_int.h"
  11. void openssl_add_all_kdfs_int(void)
  12. {
  13. EVP_add_kdf(&pbkdf2_kdf_meth);
  14. #ifndef OPENSSL_NO_SCRYPT
  15. EVP_add_kdf(&scrypt_kdf_meth);
  16. #endif
  17. EVP_add_kdf(&tls1_prf_kdf_meth);
  18. EVP_add_kdf(&hkdf_kdf_meth);
  19. EVP_add_kdf(&sshkdf_kdf_meth);
  20. EVP_add_kdf(&ss_kdf_meth);
  21. EVP_add_kdf(&x963_kdf_meth);
  22. }