| Commit message (Expand) | Author | Age | Files | Lines |
* | Make compatible with Zig master0.3.1 |  Rutger Broekhoff | 2021-09-20 | 4 | -14/+17 |
* | Prepare for 0.3.0 release•••The API for findKeySection was broken, so a minor (0.) release is in
order.
0.3.0 |  Rutger Broekhoff | 2021-07-02 | 1 | -1/+1 |
* | Remove unused parameters and variables in znk |  Rutger Broekhoff | 2021-07-02 | 1 | -11/+11 |
* | Remove unused parameters and variables |  Rutger Broekhoff | 2021-07-02 | 1 | -6/+4 |
* | Use `.{ ... }` for struct init where possible |  Rutger Broekhoff | 2021-05-28 | 1 | -7/+7 |
* | Prepare for 0.2.1 release0.2.1 |  Rutger Broekhoff | 2021-05-28 | 2 | -2/+2 |
* | Fix comment |  Rutger Broekhoff | 2021-05-28 | 1 | -1/+1 |
* | Prevent overflow calculating Base32-decoded size |  Rutger Broekhoff | 2021-05-28 | 1 | -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.0 |  Rutger Broekhoff | 2021-05-26 | 4 | -6/+6 |
* | Prepare for 0.1.1 release0.1.1 |  Rutger Broekhoff | 2021-05-26 | 1 | -1/+1 |
* | Consistent spelling of CRC-16 |  Rutger Broekhoff | 2021-05-26 | 1 | -2/+2 |
* | Allow generating seeds with custom entropy |  Rutger Broekhoff | 2021-05-26 | 2 | -60/+105 |
* | Simplify build.zig |  Rutger Broekhoff | 2021-05-25 | 1 | -2/+2 |
* | Prepare for 0.1.0 release0.1.0 |  Rutger Broekhoff | 2021-05-25 | 6 | -28/+35 |
* | Give all tests names |  Rutger Broekhoff | 2021-05-25 | 2 | -3/+3 |
* | Rename build steps |  Rutger Broekhoff | 2021-05-25 | 3 | -6/+6 |
* | Update formatting slightly |  Rutger Broekhoff | 2021-05-25 | 1 | -27/+6 |
* | Put the znk tool into a different directory |  Rutger Broekhoff | 2021-05-25 | 3 | -17/+24 |
* | Clean up a few small-ish things |  Rutger Broekhoff | 2021-05-25 | 2 | -13/+11 |
* | Clean up janky prefix byte API |  Rutger Broekhoff | 2021-05-25 | 2 | -131/+134 |
* | snake_case for fields of tagged unions |  Rutger Broekhoff | 2021-05-25 | 1 | -16/+16 |
* | Reorder src/nkeys.zig |  Rutger Broekhoff | 2021-05-25 | 1 | -47/+47 |
* | Rename tagged union fields in znk |  Rutger Broekhoff | 2021-05-25 | 2 | -18/+30 |
* | Write a few more tests |  Rutger Broekhoff | 2021-05-25 | 2 | -54/+90 |
* | Write a few more tests, rename a few functions |  Rutger Broekhoff | 2021-05-25 | 2 | -36/+234 |
* | Rename things once again |  Rutger Broekhoff | 2021-05-24 | 2 | -28/+34 |
* | Support private keys in znk |  Rutger Broekhoff | 2021-05-24 | 1 | -27/+27 |
* | Add PrivateKey, use Ed25519.KeyPair in SeedKeyPair |  Rutger Broekhoff | 2021-05-24 | 2 | -135/+160 |
* | Validate output of parseDecorated* in test |  Rutger Broekhoff | 2021-05-24 | 2 | -21/+23 |
* | Remove some unnecessary code |  Rutger Broekhoff | 2021-05-24 | 2 | -17/+6 |
* | Remove unnecessary call to @setEvalBranchQuota |  Rutger Broekhoff | 2021-05-24 | 1 | -2/+0 |
* | Clean up more•••Clean up unnecessary error unions, generate allowed characters table
for credentials file sections at compile time.
|  Rutger Broekhoff | 2021-05-24 | 3 | -107/+88 |
* | Run zig fmt |  Rutger Broekhoff | 2021-05-22 | 1 | -1/+1 |
* | Generate CRC-16 table at compile time |  Rutger Broekhoff | 2021-05-22 | 1 | -38/+22 |
* | Simplify znk main |  Rutger Broekhoff | 2021-05-22 | 1 | -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 Broekhoff | 2021-05-22 | 3 | -145/+151 |
* | Add some more tests for Base32 encoder and decoder |  Rutger Broekhoff | 2021-05-22 | 1 | -5/+15 |
* | Document the Base32 decoder |  Rutger Broekhoff | 2021-05-22 | 1 | -43/+67 |
* | Rewrite Base32 decoder |  Rutger Broekhoff | 2021-05-22 | 2 | -58/+87 |
* | Add comments to the Base32 encoder code |  Rutger Broekhoff | 2021-05-22 | 1 | -13/+53 |
* | Make Base32 encoder more like the standard library |  Rutger Broekhoff | 2021-05-22 | 2 | -25/+33 |
* | Make Base32 encoder an iterator |  Rutger Broekhoff | 2021-05-22 | 2 | -36/+72 |
* | Add building instructions to README.md |  Rutger Broekhoff | 2021-05-21 | 1 | -0/+11 |
* | Add CI status badge to README.md |  Rutger Broekhoff | 2021-05-21 | 1 | -0/+1 |
* | Partially test parseDecoratedJwt |  Rutger Broekhoff | 2021-05-21 | 1 | -0/+4 |
* | Make creds file parsing work |  Rutger Broekhoff | 2021-05-21 | 2 | -3/+25 |
* | Actually fix GitHub Actions config this time |  Rutger Broekhoff | 2021-05-21 | 1 | -1/+1 |
* | Fix typo in GitHub Actions config |  Rutger Broekhoff | 2021-05-21 | 1 | -1/+1 |
* | Add GitHub Actions config |  Rutger Broekhoff | 2021-05-21 | 1 | -0/+23 |
* | Fix up build.zig |  Rutger Broekhoff | 2021-05-21 | 1 | -7/+7 |