Security

驗證證書的 HASH 值

  • November 26, 2014

如何驗證從使用 openssl 的網站獲得的證書的雜湊值?比如說或facebook.com

如果我沒記錯的話應該這樣做。你確實要求雜湊而不是模數。

echo "" | openssl s_client -connect google.com:443 | openssl x509 -noout -hash

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