2019-03-17 18:06:59 +01:00
|
|
|
/*
|
2021-04-08 13:04:41 +01:00
|
|
|
* Copyright 2019-2021 The OpenSSL Project Authors. All Rights Reserved.
|
2019-03-17 18:06:59 +01:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
|
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <openssl/core.h>
|
|
|
|
#include "provider_local.h"
|
|
|
|
|
|
|
|
OSSL_provider_init_fn ossl_default_provider_init;
|
2020-06-11 09:08:01 +10:00
|
|
|
OSSL_provider_init_fn ossl_base_provider_init;
|
2020-04-08 12:02:34 +10:00
|
|
|
OSSL_provider_init_fn ossl_null_provider_init;
|
2021-03-09 15:26:17 +10:00
|
|
|
OSSL_provider_init_fn ossl_fips_intern_provider_init;
|
2019-08-19 08:55:53 +02:00
|
|
|
#ifdef STATIC_LEGACY
|
|
|
|
OSSL_provider_init_fn ossl_legacy_provider_init;
|
|
|
|
#endif
|
2021-03-09 15:26:17 +10:00
|
|
|
const struct predefined_providers_st ossl_predefined_providers[] = {
|
2020-04-13 22:34:56 +02:00
|
|
|
#ifdef FIPS_MODULE
|
2021-03-09 15:26:17 +10:00
|
|
|
{ "fips", ossl_fips_intern_provider_init, 1 },
|
2019-04-10 15:01:40 +01:00
|
|
|
#else
|
2019-03-17 18:06:59 +01:00
|
|
|
{ "default", ossl_default_provider_init, 1 },
|
2019-08-19 08:55:53 +02:00
|
|
|
# ifdef STATIC_LEGACY
|
|
|
|
{ "legacy", ossl_legacy_provider_init, 0 },
|
|
|
|
# endif
|
2020-06-11 09:08:01 +10:00
|
|
|
{ "base", ossl_base_provider_init, 0 },
|
2020-04-08 12:02:34 +10:00
|
|
|
{ "null", ossl_null_provider_init, 0 },
|
2019-04-10 15:01:40 +01:00
|
|
|
#endif
|
2019-03-17 18:06:59 +01:00
|
|
|
{ NULL, NULL, 0 }
|
|
|
|
};
|