ossl_random_add_conf_module.pod 1015 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. =pod
  2. =head1 NAME
  3. ossl_random_add_conf_module - internal random configuration module
  4. =head1 SYNOPSIS
  5. #include "crypto/rand.h"
  6. /* Configuration */
  7. void ossl_random_add_conf_module(void);
  8. =head1 DESCRIPTION
  9. ossl_random_add_conf_module() adds the random configuration module
  10. for providers.
  11. This allows the type and parameters of the standard setup of random number
  12. generators to be configured with an OpenSSL L<config(5)> file.
  13. =head1 RETURN VALUES
  14. ossl_random_add_conf_module() doesn't return any value.
  15. =head1 SEE ALSO
  16. L<OSSL_PROVIDER(3)>, L<ossl_provider_new(3)>, L<provider-rand(7)>
  17. =head1 HISTORY
  18. The functions described here were all added in OpenSSL 3.0.
  19. =head1 COPYRIGHT
  20. Copyright 2020-2022 The OpenSSL Project Authors. All Rights Reserved.
  21. Licensed under the Apache License 2.0 (the "License"). You may not use
  22. this file except in compliance with the License. You can obtain a copy
  23. in the file LICENSE in the source distribution or at
  24. L<https://www.openssl.org/source/license.html>.
  25. =cut