1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-22 08:08:10 +00:00

Update inc_common.cl

This commit is contained in:
PenguinKeeper7 2023-09-18 13:13:17 +01:00
parent 32853374b9
commit 4ea43742b9

View File

@ -2815,6 +2815,11 @@ DECLSPEC int is_valid_base58_8 (const u8 v)
if ((v > (u8) '9') && (v < (u8) 'A')) return 0; if ((v > (u8) '9') && (v < (u8) 'A')) return 0;
if ((v > (u8) 'Z') && (v < (u8) 'a')) return 0; if ((v > (u8) 'Z') && (v < (u8) 'a')) return 0;
// https://github.com/hashcat/hashcat/issues/3878
if (v == 'O') return 0;
if (v == 'I') return 0;
if (v == 'l') return 0;
return 1; return 1;
} }