公開鍵暗号
共通鍵暗号とは異なり、暗号化と復号とに異なる鍵(手順)を用い、暗号化用の鍵は公開できるようにした暗号方式。 Public key authentication works as follows: The scheme is based on public-key cryptography, using cryptosystems where encryption and decryption are done using separate keys, and it is unfeasible to derive the decryption key from the encryption key.
公開鍵認証は、公開鍵暗号を基にした方法です。この方法は暗号化と復号化に別々の鍵を用いる暗号体系で、復号鍵から暗号鍵を得られるようなことはありません。
The idea is that each user creates a public/private key pair for authentication purposes. The server knows the public key, and only the user knows the private key. implements public key authentication protocol automatically, using one of the DSA,ECDSA, Ed25519 or RSA algorithms. The HISTORY section of ssl(8)contains a brief discussion of the DSA and RSA algorithms.
重要なのは、公開鍵と秘密鍵をそれぞれのユーザーが認証目的で作成し、サーバーは公開鍵を知っていて、ユーザーだけが秘密鍵を知っているということにあります。