Browse Source

Mark SSHFP algorithm 4 as valid

[RFC 7479](https://tools.ietf.org/html/rfc7479) introduces support for Ed25519 host keys for the SSHFP record.
pull/226/head
No GUI 8 years ago
committed by GitHub
parent
commit
a06ad43e0a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      octodns/record.py

+ 1
- 1
octodns/record.py 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


Loading…
Cancel
Save