Skip to content

Commit 8dcea16

Browse files
committed
Update cds_scanner.php
1 parent 6ae09a8 commit 8dcea16

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

automation/cds_scanner.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -808,7 +808,7 @@ function parseDigAnswerLine(string $line): ?array {
808808
'keytag' => (int)$rdata[0],
809809
'alg' => (int)$rdata[1],
810810
'digesttype' => (int)$rdata[2],
811-
'digest' => strtolower(trim($rdata[3])),
811+
'digest' => strtolower(implode('', array_slice($rdata, 3))),
812812
],
813813
];
814814
}

0 commit comments

Comments
 (0)