Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update for Zig 0.11.0 | 2023-11-01 | 1 | -7/+7 | |
| | |||||
* | Fix comment | 2021-05-28 | 1 | -1/+1 | |
| | |||||
* | Prevent overflow calculating Base32-decoded size | 2021-05-28 | 1 | -2/+11 | |
| | |||||
* | Write a few more tests | 2021-05-25 | 1 | -2/+2 | |
| | |||||
* | Remove some unnecessary code | 2021-05-24 | 1 | -15/+5 | |
| | |||||
* | Clean up | 2021-05-22 | 1 | -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 decoder | 2021-05-22 | 1 | -5/+15 | |
| | |||||
* | Document the Base32 decoder | 2021-05-22 | 1 | -43/+67 | |
| | |||||
* | Rewrite Base32 decoder | 2021-05-22 | 1 | -47/+82 | |
| | |||||
* | Add comments to the Base32 encoder code | 2021-05-22 | 1 | -13/+53 | |
| | |||||
* | Make Base32 encoder more like the standard library | 2021-05-22 | 1 | -16/+24 | |
| | |||||
* | Make Base32 encoder an iterator | 2021-05-22 | 1 | -34/+71 | |
| | |||||
* | Initial commit | 2021-05-21 | 1 | -0/+120 | |