Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何创建 RSA 密钥,私有的和公共的。使用 md5 和强制性标准 PKCS#15?
我正在这样做:Сreate private key with md5.
openssl genrsa -out private.key 2048 -md5
创建公钥:
openssl rsa -in private.key -pubout > public.key
ps 甚至如何从关键的既定标准中找出来?