From a06ad43e0a58efd4c03afeaf20b8e84e77b6827d Mon Sep 17 00:00:00 2001 From: No GUI Date: Sat, 7 Apr 2018 09:39:20 -0700 Subject: [PATCH] Mark SSHFP algorithm 4 as valid [RFC 7479](https://tools.ietf.org/html/rfc7479) introduces support for Ed25519 host keys for the SSHFP record. --- octodns/record.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/octodns/record.py b/octodns/record.py index 201488c..85e6d97 100644 --- a/octodns/record.py +++ b/octodns/record.py @@ -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