1、linux秘钥有ssh密钥或SSL密钥,都有公钥和私钥概念,都属于PKI范畴。
私钥包含密码并用来解密,公钥用来加密。
2、ssh-keygen -t rsa会在~/.ssh生成密钥对
more id_isa就是私钥,id_isa.pub为公钥
3、more id_isa可以看到
-----BEGIN RSA PRIVATE KEY-----
4、ssh-keygen -l可以查看Show fingerprint of key file
5、用openssl察看key
openssl rsa -in key.pem -text -noout
6、SSL证书包含域名和公司信息
openssl x509 -inform PEM -in ssl.pem -noout -text