1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
$ORIGIN .
$TTL 1
; OK
@ SSHFP 0 0 00 ; The simplest variant
@ SSHFP 255 255 00 ; Maximal numbers
@ SSHFP 0 0 01 02 0304 ; Hex block with blank spaces between them
@ TYPE44 \# 3 000000 ; TYPE + Hexadecimal rdata
@ TYPE44 0 0 00 ; TYPE
@ sshfp 0 0 00 ; Type in lower-case
; KO
@ SSHFP
@ SSHFP ; Empty rdata
@ SSHFP \# 0 ; Hex empty rdata
@ SSHFP 256 0 00 ; Algorithm overflow
@ SSHFP 0 256 00 ; Fp type overflow
@ SSHFP 0 0 0 ; Continuous block length must be multiple of 2
@ SSHFP 0 0 00 0 ; Continuous block length must be multiple of 2
@ SSHFP 0 0 XX ; Bad hex character
@ SSHFP 0 0 ; Missing item
|