aboutsummaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Version 0.5.00.5.0Rutger Broekhoff2023-12-042-3/+14
* Remove zigmod, Gyro supportRutger Broekhoff2023-11-013-23/+0
* Update for Zig 0.11.0Rutger Broekhoff2023-11-015-34/+49
* Prepare for 0.4.0 release•••With the updated Zig Ed25519 API, the API of this package has also changed a bit. The package needed to be updated for Zig 0.10.0 in the first place, and builds with Zig master (ebf9ffd) now. 0.4.0Rutger Broekhoff2022-11-021-1/+1
* Make compatible with Zig dev•••This library can be compiled again, now that ziglang/zig#13378 has been closed by ziglang/zig#13386. Rutger Broekhoff2022-11-011-7/+7
* Make compatible with Zig 0.10.0•••This does not build on unpatched Zig 0.10.0, as there is still an issue with the revamped Ed25519 implementation in the standard library. I will report an issue which should make this program buildable. There is still some cleanup work to perform. Rutger Broekhoff2022-10-312-50/+55
* Update for Zig devRutger Broekhoff2022-03-171-29/+47
* Format tool/znk.zigRutger Broekhoff2021-09-201-1/+1
* Make compatible with Zig master0.3.1Rutger Broekhoff2021-09-204-14/+17
* Prepare for 0.3.0 release•••The API for findKeySection was broken, so a minor (0.) release is in order. 0.3.0Rutger Broekhoff2021-07-021-1/+1
* Remove unused parameters and variables in znkRutger Broekhoff2021-07-021-11/+11
* Remove unused parameters and variablesRutger Broekhoff2021-07-021-6/+4
* Use `.{ ... }` for struct init where possibleRutger Broekhoff2021-05-281-7/+7
* Prepare for 0.2.1 release0.2.1Rutger Broekhoff2021-05-282-2/+2
* Fix commentRutger Broekhoff2021-05-281-1/+1
* Prevent overflow calculating Base32-decoded sizeRutger Broekhoff2021-05-281-2/+11
* Move src/lib.zig to src/main.zig, release 0.2.0•••Rationale: `zig init-lib` generates src/main.zig, not src/lib.zig. Also, libraries like hzzp (https://github.com/truemedian/hzzp) use src/main.zig instead of src/lib.zig. This is a breaking change. 0.2.0Rutger Broekhoff2021-05-264-6/+6
* Prepare for 0.1.1 release0.1.1Rutger Broekhoff2021-05-261-1/+1
* Consistent spelling of CRC-16Rutger Broekhoff2021-05-261-2/+2
* Allow generating seeds with custom entropyRutger Broekhoff2021-05-262-60/+105
* Simplify build.zigRutger Broekhoff2021-05-251-2/+2
* Prepare for 0.1.0 release0.1.0Rutger Broekhoff2021-05-256-28/+35
* Give all tests namesRutger Broekhoff2021-05-252-3/+3
* Rename build stepsRutger Broekhoff2021-05-253-6/+6
* Update formatting slightlyRutger Broekhoff2021-05-251-27/+6
* Put the znk tool into a different directoryRutger Broekhoff2021-05-253-17/+24
* Clean up a few small-ish thingsRutger Broekhoff2021-05-252-13/+11
* Clean up janky prefix byte APIRutger Broekhoff2021-05-252-131/+134
* snake_case for fields of tagged unionsRutger Broekhoff2021-05-251-16/+16
* Reorder src/nkeys.zigRutger Broekhoff2021-05-251-47/+47
* Rename tagged union fields in znkRutger Broekhoff2021-05-252-18/+30
* Write a few more testsRutger Broekhoff2021-05-252-54/+90
* Write a few more tests, rename a few functionsRutger Broekhoff2021-05-252-36/+234
* Rename things once againRutger Broekhoff2021-05-242-28/+34
* Support private keys in znkRutger Broekhoff2021-05-241-27/+27
* Add PrivateKey, use Ed25519.KeyPair in SeedKeyPairRutger Broekhoff2021-05-242-135/+160
* Validate output of parseDecorated* in testRutger Broekhoff2021-05-242-21/+23
* Remove some unnecessary codeRutger Broekhoff2021-05-242-17/+6
* Remove unnecessary call to @setEvalBranchQuotaRutger Broekhoff2021-05-241-2/+0
* Clean up more•••Clean up unnecessary error unions, generate allowed characters table for credentials file sections at compile time. Rutger Broekhoff2021-05-243-107/+88
* Run zig fmtRutger Broekhoff2021-05-221-1/+1
* Generate CRC-16 table at compile timeRutger Broekhoff2021-05-221-38/+22
* Simplify znk mainRutger Broekhoff2021-05-221-19/+4
* Clean up•••`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. Rutger Broekhoff2021-05-223-145/+151
* Add some more tests for Base32 encoder and decoderRutger Broekhoff2021-05-221-5/+15
* Document the Base32 decoderRutger Broekhoff2021-05-221-43/+67
* Rewrite Base32 decoderRutger Broekhoff2021-05-222-58/+87
* Add comments to the Base32 encoder codeRutger Broekhoff2021-05-221-13/+53
* Make Base32 encoder more like the standard libraryRutger Broekhoff2021-05-222-25/+33
* Make Base32 encoder an iteratorRutger Broekhoff2021-05-222-36/+72