| Crypto(Application) | Ericsson AB | Crypto(Application) |
NAME
Crypto Application
DESCRIPTION
Description
The purpose of the Crypto application is to provide an Erlang API to cryptographic functions, see crypto. Note that the API is on a fairly low level and there are some corresponding API functions available in public_key, on a higher abstraction level, that uses the crypto application in its implementation.
DEPENDENCIES
The current crypto implementation uses nifs to interface OpenSSLs crypto library and may work with limited functionality with as old versions as OpenSSL 0.9.8c. FIPS mode support requires at least version 1.0.1 and a FIPS capable OpenSSL installation. We recommend using a version that is officially supported by the OpenSSL project. API compatible backends like LibreSSL should also work.
The crypto app is tested daily with at least one version of each of the OpenSSL 1.0.1, 1.0.2, 1.1.0, 1.1.1 and 3.0. FIPS mode is also tested for 1.0.1, 1.0.2 and 3.0.
Using OpenSSL 3.0 with Engines is supported since OTP 26.2.
Source releases of OpenSSL can be downloaded from the OpenSSL project home page, or mirror sites listed there.
CONFIGURATION
The following configuration parameters are defined for the crypto application. See app(3) for more information about configuration parameters.
fips_mode = boolean()
rand_cache_size = integer()
CHANGE: From Erlang/OTP 29, in interactive mode, application crypto will be automatically loaded if needed when module crypto is loaded. In embedded mode, module crypto will fail to load if application crypto has not been loaded by the boot script. This is all done to make sure crypto is not initialized with incorrect configuration parameters. In Erlang/OTP 28 and earlier, no automatic loading of the application is done. If module crypto is then loaded (by a first call for example) before the application has been loaded, it will initialize with possibly incorrect configuration parameters. In particular, fips_mode will then default to false even if configured to be true.
SEE ALSO
application(3)
| 6 | crypto 5.9 |