当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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()]。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。