From 5938904f46ee102743027d9a9da709a7583ea5dd Mon Sep 17 00:00:00 2001 From: einsz Date: Tue, 12 Jan 2021 23:29:40 +0100 Subject: [PATCH] Fix possible numbers in base32 The readme stated is is possible to gerenate a 0 and also stated 2 and 7 are not included in the base32 character set... fixed that. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dbb7293..b40959b 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ performance-related tips. * Generate addresses with 1-2 and 7-9 digits? - Onion addresses use base32 encoding which does not include 1,2,7,8,9 + Onion addresses use base32 encoding which does not include 0,1,8,9 numbers.\ So no, that's not possible to generate these, and mkp224o tries to detect invalid filters containing them early on.