aboutsummaryrefslogtreecommitdiffstats
path: root/src/base32.zig
Commit message (Collapse)AuthorAgeFilesLines
* Update for Zig 0.11.0Libravatar Rutger Broekhoff2023-11-011-7/+7
|
* Fix commentLibravatar Rutger Broekhoff2021-05-281-1/+1
|
* Prevent overflow calculating Base32-decoded sizeLibravatar Rutger Broekhoff2021-05-281-2/+11
|
* Write a few more testsLibravatar Rutger Broekhoff2021-05-251-2/+2
|
* Remove some unnecessary codeLibravatar Rutger Broekhoff2021-05-241-15/+5
|
* Clean upLibravatar Rutger Broekhoff2021-05-221-8/+6
| | | | | | | | | | | | | | `NKey` has been replaced with `Nkey` in all Zig source files, even though this capitalization is technically incorrect. The standard library also uses 'strict' camel/PascalCase everywhere, meaning that abbreviations like CRC, AES and GUID are spelled like Crc, Aes and Guid respectively. `var` has been replaced with `const` where applicable. Also, the `Key` type has been moved from src/nkeys.zig to src/znk.zig for now - it's still a little bit lacking and might not need to be included in the library.
* Add some more tests for Base32 encoder and decoderLibravatar Rutger Broekhoff2021-05-221-5/+15
|
* Document the Base32 decoderLibravatar Rutger Broekhoff2021-05-221-43/+67
|
* Rewrite Base32 decoderLibravatar Rutger Broekhoff2021-05-221-47/+82
|
* Add comments to the Base32 encoder codeLibravatar Rutger Broekhoff2021-05-221-13/+53
|
* Make Base32 encoder more like the standard libraryLibravatar Rutger Broekhoff2021-05-221-16/+24
|
* Make Base32 encoder an iteratorLibravatar Rutger Broekhoff2021-05-221-34/+71
|
* Initial commitLibravatar Rutger Broekhoff2021-05-211-0/+120