SSHFP
ID
Algorithm
ID
Algorithm
D("example.com", REG_MY_PROVIDER, DnsProvider(DSP_MY_PROVIDER),
SSHFP("@", 1, 1, "00yourAmazingFingerprint00"),
);Last updated
SSHFP adds a SSH Public Key Fingerprint record to the domain. The record contains a fingerprint of a SSH server which can be validated before SSH clients are establishing the connection.
Algorithm (type of the key)
0
reserved
1
RSA
2
DSA
3
ECDSA
4
ED25519
Type (fingerprint format)
0
reserved
1
SHA-1
2
SHA-256
value is the fingerprint as a string.
D("example.com", REG_MY_PROVIDER, DnsProvider(DSP_MY_PROVIDER),
SSHFP("@", 1, 1, "00yourAmazingFingerprint00"),
);Last updated