1
0
mirror of https://github.com/github/octodns.git synced 2024-05-11 05:55:00 +00:00

Mark SSHFP algorithm 4 as valid

[RFC 7479](https://tools.ietf.org/html/rfc7479) introduces support for Ed25519 host keys for the SSHFP record.
This commit is contained in:
No GUI
2018-04-07 09:39:20 -07:00
committed by GitHub
parent 94b8c57557
commit a06ad43e0a

View File

@@ -722,7 +722,7 @@ class PtrRecord(_ValueMixin, Record):
class SshfpValue(object):
VALID_ALGORITHMS = (1, 2, 3)
VALID_ALGORITHMS = (1, 2, 3, 4)
VALID_FINGERPRINT_TYPES = (1, 2)
@classmethod