ここに示すように、OpenSSL が必要なSoftHSMをインストールしようとしています。そのため、OpenSSL v1.0.2j をインストールしましたが、GOST サポートがバンドルされていないようです。または、少なくとも. そのため、見つけた古いバージョンの OpenSSL (v1.0.0k-2.1.x86_64) から取得し、そのフォルダーに配置しました。libgost.so
/usr/lib/openssl/engines
次に、複数のフォーラムで提案されているように、ファイル openssl.cnf を変更しました ( 内/usr/local/ssl
)。
RANDFIL = $ENV::HOME/.rnd
追加した後の行で:
openssl_conf=openssl_def
そして、ファイルの最後に:
# OpenSSL default section
[openssl_def]
engines = engine_section
# Engine section
[engine_section]
gost = gost_section
# Engine gost section
[gost_section]
engine_id = gost
dynamic_path = /usr/lib/openssl/engines/libgost.so
default_algorithms = ALL
CRYPT_PARAMS = id-Gost28147-89-CryptoPro-A-ParamSet
しかし、まだ SoftHSM インストールの構成段階で、次のエラーが表示されます。
checking for OpenSSL GOST support... Cannot GOST engine
configure: error: OpenSSL library has no GOST support
どんな助けでも大歓迎です!
このコマンドを実行すると: openssl ciphers|tr ':' '\n'|grep GOST
、出力は次のとおりです。Error configuring OpenSSL