Merge pull request #361 from adiaholic/bugFix

Correct ALPHABET in `BASE32.java`
This commit is contained in:
Florian Schmaus 2020-02-20 15:22:48 +01:00 committed by GitHub
commit 80e9bcf496
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ public class Base32 {
}
};
private static final String ALPHABET = "ABCDEFGHIJKLMNOPQRSTUVWXYZ2345678";
private static final String ALPHABET = "ABCDEFGHIJKLMNOPQRSTUVWXYZ234567";
public static StringEncoder<String> getStringEncoder() {
return base32Stringencoder;