Scroll to navigation

OSSL_PROVIDER-DEFAULT(7SSL) OpenSSL OSSL_PROVIDER-DEFAULT(7SSL)

NAME

OSSL_PROVIDER-default - OpenSSL default provider

DESCRIPTION

The OpenSSL default provider supplies the majority of OpenSSL's diverse algorithm implementations. If an application doesn't specify anything else explicitly (e.g. in the application or via config), then this is the provider that will be used as fallback: It is loaded automatically the first time that an algorithm is fetched from a provider or a function acting on providers is called and no other provider has been loaded yet.

If an attempt to load a provider has already been made (whether successful or not) then the default provider won't be loaded automatically. Therefore if the default provider is to be used in conjunction with other providers then it must be loaded explicitly. Automatic loading of the default provider only occurs a maximum of once; if the default provider is explicitly unloaded then the default provider will not be automatically loaded again.

Properties

The implementations in this provider specifically have this property defined:

"provider=default"

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 this property, except to make sure to get implementations of this provider and none other.

Some implementations may define additional properties. Exact information is listed below

OPERATIONS AND ALGORITHMS

The OpenSSL default provider supports these operations and algorithms:

Hashing Algorithms / Message Digests

EVP_MD-SHA1(7)
EVP_MD-SHA2(7)
EVP_MD-SHA3(7)
EVP_MD-KECCAK(7)
EVP_MD-KECCAK-KMAC(7)
EVP_MD-SHAKE(7)
EVP_MD-BLAKE2(7)
EVP_MD-SM3(7)
EVP_MD-MD5(7)
EVP_MD-MD5-SHA1(7)
EVP_MD-RIPEMD160(7)
EVP_MD-NULL(7)

Symmetric Ciphers

EVP_CIPHER-AES(7)
EVP_CIPHER-ARIA(7)
EVP_CIPHER-CAMELLIA(7)
3DES, see EVP_CIPHER-DES(7)
EVP_CIPHER-SM4(7)
EVP_CIPHER-CHACHA(7)
EVP_CIPHER-CHACHA(7)
EVP_CIPHER-NULL(7)

Message Authentication Code (MAC)

EVP_MAC-BLAKE2(7)
EVP_MAC-CMAC(7)
EVP_MAC-GMAC(7)
EVP_MAC-HMAC(7)
EVP_MAC-KMAC(7)
EVP_MAC-Siphash(7)
EVP_MAC-Poly1305(7)

Key Derivation Function (KDF)

EVP_KDF-HKDF(7)
EVP_KDF-TLS13_KDF(7)
EVP_KDF-SS(7)
EVP_KDF-PBKDF2(7)
EVP_KDF-PKCS12KDF(7)
EVP_KDF-SSHKDF(7)
EVP_KDF-TLS1_PRF(7)
EVP_KDF-KB(7)
EVP_KDF-X942-ASN1(7)
EVP_KDF-X942-CONCAT(7)
EVP_KDF-X963(7)
EVP_KDF-SCRYPT(7)
EVP_KDF-KRB5KDF(7)
EVP_KDF-HMAC-DRBG(7)
EVP_KDF-ARGON2(7)

Key Exchange

EVP_KEYEXCH-DH(7)
EVP_KEYEXCH-ECDH(7)
EVP_KEYEXCH-X25519(7)
EVP_KEYEXCH-X448(7)

Asymmetric Signature

EVP_SIGNATURE-DSA(7)
EVP_SIGNATURE-RSA(7)
EVP_SIGNATURE-ED25519(7)
EVP_SIGNATURE-ED448(7)
EVP_SIGNATURE-ECDSA(7)
EVP_SIGNATURE-HMAC(7)
EVP_SIGNATURE-Siphash(7)
EVP_SIGNATURE-Poly1305(7)
EVP_SIGNATURE-CMAC(7)

Asymmetric Cipher

EVP_ASYM_CIPHER-RSA(7)
EVP_ASYM_CIPHER-SM2(7)

Asymmetric Key Encapsulation

EVP_KEM-RSA(7)
EVP_KEM-X25519(7)
EVP_KEM-X448(7)
EVP_KEM-EC(7)

Asymmetric Key Management

EVP_KEYMGMT-DH(7)
EVP_KEYMGMT-DHX(7)
EVP_KEYMGMT-DSA(7)
EVP_KEYMGMT-RSA(7)
EVP_KEYMGMT-EC(7)
EVP_KEYMGMT-X25519(7)
EVP_KEYMGMT-X448(7)
EVP_KEYMGMT-ED25519(7)
EVP_KEYMGMT-ED448(7)
EVP_KEYMGMT-HMAC(7)
EVP_KEYMGMT-Siphash(7)
EVP_KEYMGMT-Poly1305(7)
EVP_KEYMGMT-CMAC(7)
EVP_KEYMGMT-SM2(7)

Random Number Generation

EVP_RAND-CTR-DRBG(7)
EVP_RAND-HASH-DRBG(7)
EVP_RAND-HMAC-DRBG(7)
EVP_RAND-SEED-SRC(7)
EVP_RAND-TEST-RAND(7)

In addition to this provider, the "SEED-SRC" algorithm is also available in the base provider.

Asymmetric Key Encoder

In addition to this provider, all of these encoding algorithms are also available in the base provider. Some of these algorithms may be used in combination with the FIPS provider.

Asymmetric Key Decoder

In addition to this provider, all of these decoding algorithms are also available in the base provider. Some of these algorithms may be used in combination with the FIPS provider.

Stores

In addition to this provider, all of these store algorithms are also available in the base provider.

SEE ALSO

openssl-core.h(7), openssl-core_dispatch.h(7), provider(7), OSSL_PROVIDER-base(7)

HISTORY

The RIPEMD160 digest was added to the default provider in OpenSSL 3.0.7.

All other functionality was added in OpenSSL 3.0.

COPYRIGHT

Copyright 2020-2023 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>.

2024-02-22 3.2.2-dev