1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-12-22 22:58:30 +00:00

Fix rename $SN$ signature to $ASN$ for apple secure notes

This commit is contained in:
Jens Steube 2017-12-13 12:47:54 +01:00
parent 458fbcbce4
commit a71288da74

View File

@ -25,7 +25,7 @@ $sth->execute () or die $DBI::errstr;
while (my $row = $sth->fetchrow_arrayref ())
{
printf ("\$SN\$*%d*%d*%s*%s\n", $row->[0], $row->[1], unpack ("H*", $row->[2]), unpack ("H*", $row->[3]));
printf ("\$ASN\$*%d*%d*%s*%s\n", $row->[0], $row->[1], unpack ("H*", $row->[2]), unpack ("H*", $row->[3]));
}
$sth->finish;