非对称加密算法(签名算法)应用场景
算法名称 | 全名 | 应用 | 方程式 | pyhon开源实现 |
---|---|---|---|---|
dsa | Digital Signature Algorithm,数字签名算法 | openssh(linux上ssh命令及其工具) | ||
ECDSA | Elliptic Curve Digital Signature Algorith 椭圆曲线数字签名算法 | openssh、bitcoin(比特币) | y 2 ( x 3 + a ∗ x + b ) m o d p y^2(x^3+a*x+b)\ mod\ p y2(x3+a∗x+b) mod p | link |
ed25519 | 扭曲爱德华兹曲线数字签名算法 | openssh | ||
rsa | Ron Rivest、Adi Shamir、Leonard Adleman,三人首字母算法 | openssh默认签名算法 | link |