45 lines
1.1 KiB
Plaintext
45 lines
1.1 KiB
Plaintext
#
|
|
# OpenSSL example configuration file. This file will load the engine
|
|
# for all operations that the engine implements for all apps that
|
|
# have OpenSSL config support compiled into them.
|
|
#
|
|
# Adding OpenSSL config support is as simple as adding the following line to
|
|
# the app:
|
|
#
|
|
# #define OPENSSL_LOAD_CONF 1
|
|
#
|
|
openssl_conf = openssl_def
|
|
|
|
[openssl_def]
|
|
engines = engine_section
|
|
|
|
[engine_section]
|
|
ibmpkcs11 = ibmpkcs11_section
|
|
|
|
[ibmpkcs11_section]
|
|
SLOT_ID=0
|
|
dynamic_path = @LIBDIR@/libibmpkcs11.so
|
|
engine_id = ibmpkcs11
|
|
#
|
|
# The following algorithms will be enabled by these parameters
|
|
# to the default_algorithms line. Any combination of these is valid,
|
|
# with "ALL" denoting the same as all of them in a comma separated
|
|
# list.
|
|
#
|
|
# RSA
|
|
# - RSA encrypt, decrypt, sign and verify, key lengths 512-4096
|
|
#
|
|
# RAND
|
|
# - Hardware random number generation
|
|
#
|
|
# CIPHERS
|
|
# - DES-ECB, DES-CBC, DES-EDE3, DES-EDE3-CBC, AES-128-ECB, AES-128-CBC,
|
|
# AES-192-ECB, AES-192-CBC, AES-256-ECB, AES-256-CBC symmetric crypto
|
|
#
|
|
# DIGESTS
|
|
# - SHA1, SHA256 digests
|
|
#
|
|
default_algorithms = ALL
|
|
#default_algorithms = RAND,RSA,CIPHERS,DIGESTS
|
|
init = 1
|