|
NAMEOSSL_PROVIDER-FIPS - OpenSSL FIPS providerDESCRIPTIONThe OpenSSL FIPS provider is a special provider that conforms to the Federal Information Processing Standards (FIPS) specified in FIPS 140-2. This 'module' contains an approved set of cryptographic algorithms that is validated by an accredited testing laboratory.PropertiesThe implementations in this provider specifically have these properties defined:
It may be used in a property query string with fetching functions such as EVP_MD_fetch(3) or EVP_CIPHER_fetch(3), as well as with other functions that take a property query string, such as EVP_PKEY_CTX_new_from_name(3). It isn't mandatory to query for any of these properties, except to make sure to get implementations of this provider and none other. The "fips=yes" property can be use to make sure only FIPS approved implementations are used for crypto operations. This may also include other non-crypto support operations that are not in the fips provider, such as asymmetric key encoders, see "Asymmetric Key Management" in OSSL_PROVIDER-default(7). OPERATIONS AND ALGORITHMSThe OpenSSL FIPS provider supports these operations and algorithms:Hashing Algorithms / Message Digests
Symmetric Ciphers
Message Authentication Code (MAC)
Key Derivation Function (KDF)
Key Exchange
Asymmetric Signature
Asymmetric Cipher
Asymmetric Key Encapsulation
Asymmetric Key Management
SELF TESTINGOne of the requirements for the FIPS module is self testing. An optional callback mechanism is available to return information to the user using OSSL_SELF_TEST_set_callback(3).The parameters passed to the callback are described in OSSL_SELF_TEST_new(3) The OpenSSL FIPS module uses the following mechanism to provide information about the self tests as they run. This is useful for debugging if a self test is failing. The callback also allows forcing any self test to fail, in order to check that it operates correctly on failure. Note that all self tests run even if a self test failure occurs. The FIPS module passes the following type(s) to OSSL_SELF_TEST_onbegin().
The "Module_Integrity" self test is always run at startup. The "Install_Integrity" self test is used to check if the self tests have already been run at installation time. If they have already run then the self tests are not run on subsequent startups. All other self test categories are run once at installation time, except for the "Pairwise_Consistency_Test". There is only one instance of the "Module_Integrity" and "Install_Integrity" self tests. All other self tests may have multiple instances. The FIPS module passes the following descriptions(s) to OSSL_SELF_TEST_onbegin().
EXAMPLESA simple self test callback is shown below for illustrative purposes.#include <openssl/self_test.h> static OSSL_CALLBACK self_test_cb; static int self_test_cb(const OSSL_PARAM params[], void *arg) { int ret = 0; const OSSL_PARAM *p = NULL; const char *phase = NULL, *type = NULL, *desc = NULL; p = OSSL_PARAM_locate_const(params, OSSL_PROV_PARAM_SELF_TEST_PHASE); if (p == NULL || p->data_type != OSSL_PARAM_UTF8_STRING) goto err; phase = (const char *)p->data; p = OSSL_PARAM_locate_const(params, OSSL_PROV_PARAM_SELF_TEST_DESC); if (p == NULL || p->data_type != OSSL_PARAM_UTF8_STRING) goto err; desc = (const char *)p->data; p = OSSL_PARAM_locate_const(params, OSSL_PROV_PARAM_SELF_TEST_TYPE); if (p == NULL || p->data_type != OSSL_PARAM_UTF8_STRING) goto err; type = (const char *)p->data; /* Do some logging */ if (strcmp(phase, OSSL_SELF_TEST_PHASE_START) == 0) BIO_printf(bio_out, "%s : (%s) : ", desc, type); if (strcmp(phase, OSSL_SELF_TEST_PHASE_PASS) == 0 || strcmp(phase, OSSL_SELF_TEST_PHASE_FAIL) == 0) BIO_printf(bio_out, "%s\n", phase); /* Corrupt the SHA1 self test during the 'corrupt' phase by returning 0 */ if (strcmp(phase, OSSL_SELF_TEST_PHASE_CORRUPT) == 0 && strcmp(desc, OSSL_SELF_TEST_DESC_MD_SHA1) == 0) { BIO_printf(bio_out, "%s %s", phase, desc); return 0; } ret = 1; err: return ret; } SEE ALSOopenssl-fipsinstall(1), fips_config(5), OSSL_SELF_TEST_set_callback(3), OSSL_SELF_TEST_new(3), OSSL_PARAM(3), openssl-core.h(7), openssl-core_dispatch.h(7), provider(7)HISTORYThe type and functions described here were added in OpenSSL 3.0.COPYRIGHTCopyright 2019-2021 The OpenSSL Project Authors. All Rights Reserved.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>.
Visit the GSP FreeBSD Man Page Interface. |