The terms "DSA" and "DSS" are closely related but refer to slightly different things, which explains why DSA keys are referred to as DSS keys in the context of SSH.
Understanding DSA and DSS
- DSA (Digital Signature Algorithm): This is an algorithm for digital signatures, which is used to generate a pair of keys (a private key and a public key) and to sign data. It is specified in the Digital Signature Algorithm (DSA) standard.
- DSS (Digital Signature Standard): This is a federal standard for digital signatures. DSS specifies DSA as the algorithm to be used for generating and verifying digital signatures. The DSS standard was established by the National Institute of Standards and Technology (NIST).
Why SSH Uses ssh-dss
In the context of SSH (Secure Shell), the public key format identifier is defined as ssh-dss when using DSA keys. This is because SSH key type identifiers often use the name of the standard or the protocol rather than the specific algorithm. Since DSA is part of the DSS standard, the key type is referred to as ssh-dss.
Breakdown of the Naming Convention
- ssh-: This prefix is used to indicate that the key is to be used with the SSH protocol.
- dss: This part refers to the Digital Signature Standard, which specifies the use of the DSA algorithm.
Example of a DSA Public Key in SSH
When you generate a DSA key pair for SSH, the public key file begins with ssh-dss. Here’s an example of what a DSA public key might look like:
ssh-dss AAAAB3NzaC1kc3MAAACBAP... user@hostname
- ssh-dss: Indicates the type of key.
- The string starting with AAAAB3...: The actual base64-encoded key data.
- user@hostname: An optional comment that typically includes the username and host where the key was generated.
Summary
- DSA refers to the algorithm itself.
- DSS refers to the standard that specifies the use of DSA.
- In SSH, the key type identifier ssh-dss is used to signify that the key is a DSA key, as specified by the DSS standard.
This naming convention helps in maintaining consistency and clarity within the SSH protocol, aligning with the standards and specifications used to define the cryptographic algorithms.