當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


erlang signature_algs(Description, Version)用法及代碼示例


signature_algs(Description, Version) -> [signature_algs()]
OTP 26.0
類型:
Description = default | all | exclusive
Version = protocol_version()

列出與可用的 Description 對應的所有可能的簽名算法。 exclusive 選項將專門列出該協議版本的算法/方案,而 defaultall 選項列出組合列表以支持 (D)TLS-1.2(第一個支持配置的版本)中的協議範圍簽名算法,到 Version

例子:

1> ssl:signature_algs(default, 'tlsv1.3').
      [eddsa_ed25519,eddsa_ed448,ecdsa_secp521r1_sha512,
      ecdsa_secp384r1_sha384,ecdsa_secp256r1_sha256,
      rsa_pss_pss_sha512,rsa_pss_pss_sha384,rsa_pss_pss_sha256,
      rsa_pss_rsae_sha512,rsa_pss_rsae_sha384,rsa_pss_rsae_sha256,
      rsa_pkcs1_sha512,rsa_pkcs1_sha384,rsa_pkcs1_sha256,
      {sha512,ecdsa},
      {sha384,ecdsa},
      {sha256,ecdsa}]

      2>ssl:signature_algs(all, 'tlsv1.3').
      [eddsa_ed25519,eddsa_ed448,ecdsa_secp521r1_sha512,
      ecdsa_secp384r1_sha384,ecdsa_secp256r1_sha256,
      rsa_pss_pss_sha512,rsa_pss_pss_sha384,rsa_pss_pss_sha256,
      rsa_pss_rsae_sha512,rsa_pss_rsae_sha384,rsa_pss_rsae_sha256,
      rsa_pkcs1_sha512,rsa_pkcs1_sha384,rsa_pkcs1_sha256,
      {sha512,ecdsa},
      {sha384,ecdsa},
      {sha256,ecdsa},
      {sha224,ecdsa},
      {sha224,rsa},
      {sha,rsa},
      {sha,dsa}]

      3> ssl:signature_algs(exclusive, 'tlsv1.3').
      [eddsa_ed25519,eddsa_ed448,ecdsa_secp521r1_sha512,
      ecdsa_secp384r1_sha384,ecdsa_secp256r1_sha256,
      rsa_pss_pss_sha512,rsa_pss_pss_sha384,rsa_pss_pss_sha256,
      rsa_pss_rsae_sha512,rsa_pss_rsae_sha384,rsa_pss_rsae_sha256]
注意

某些 TLS-1-3 方案名稱與 TLS-1.2 algorithm-tuple-pair-names 重疊,然後將使用 TLS-1.3 名稱,例如 rsa_pkcs1_sha256 而不是 {sha256, rsa},這些是 TLS-1.3 中的舊算法,僅適用於證書簽名在此版本的協議中。

相關用法


注:本文由純淨天空篩選整理自erlang.org大神的英文原創作品 signature_algs(Description, Version) -> [signature_algs()]。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。