Ssl-Certificate

DER 編碼雜湊

  • April 14, 2018

根據 stunnel4 的手冊頁

此目錄中的證書應命名為 XXXXXXXX.0,其中 XXXXXXXX 是證書的 DER 編碼主題的雜湊值(MD5 雜湊的前 4 個字節,按最低有效字節順序排列)。

我怎樣才能產生這樣的東西?

我試過了,沒有成功:s:

openssl x509 -in cert.crt -inform PEM -out cert.der -outform DER

然後

openssl dgst cert.der

試試這個:

# openssl x509 -in cert.pem -noout -hash
c59f9aac

這將為您提供 OpenSSL 期望為證書目錄獲取的雜湊值。

c_rehash,openssl rehash

創建指向由雜湊值命名的文件的符號連結。

man c_rehashopenssl rehash

在某些平台上,該openssl rehash命令可用作名為c_rehash. 它們在功能上是等效的,除了 [手冊頁] 中指出的細微差別。

引用自:https://serverfault.com/questions/591090