line 67 of dnssec-key2ds/dnssec_key2ds.php $algorithm_hex = sprintf("%02d", dechex($algorithm)); If algorithm 13 is used you end-up with "00" instead of "0d" Correct by replacing line 67 to: $algorithm_hex = '0'.dechex($algorithm);
line 67 of dnssec-key2ds/dnssec_key2ds.php
$algorithm_hex = sprintf("%02d", dechex($algorithm));
If algorithm 13 is used you end-up with "00" instead of "0d"
Correct by replacing line 67 to:
$algorithm_hex = '0'.dechex($algorithm);