ossl_provider_add_conf_module.pod 943 B

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