-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
basenc: implement --base58 encoding option #8751
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
d536436
to
54c12e0
Compare
GNU testsuite comparison:
|
CodSpeed Performance ReportMerging #8751 will not alter performanceComparing Summary
Footnotes
|
@cakebaker could you review these changes, I can't figure out how to fix the failing CI, like what exactly is it failing for? |
The spell error is easy to fix. Just ignore it on the top of the file. |
Add support for Base58 encoding to basenc as per GNU coreutils 9.8. Base58 uses the alphabet '123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz' which excludes visually ambiguous characters (0, O, I, l). Resolves issue uutils#8744.
54c12e0
to
1016664
Compare
GNU testsuite comparison:
|
please fix the rest of the errors :) |
Yes sorry been a little busy with class work, I'll have it done today |
Fix explicit iteration clippy warnings. Add Base58 alphabet to spell-checker ignore list to resolve cspell errors.
GNU testsuite comparison:
|
GNU testsuite comparison:
|
Add support for Base58 encoding to basenc for consistency with GNU coreutils 9.8. Base58 uses the alphabet '123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz' which excludes visually ambiguous characters (0, O, I, l).
Resolves #8744.