aboutsummaryrefslogtreecommitdiffstats
path: root/src/znk.zig
Commit message (Collapse)AuthorAgeFilesLines
* Put the znk tool into a different directoryLibravatar Rutger Broekhoff2021-05-251-507/+0
|
* Clean up janky prefix byte APILibravatar Rutger Broekhoff2021-05-251-18/+18
|
* snake_case for fields of tagged unionsLibravatar Rutger Broekhoff2021-05-251-16/+16
|
* Rename tagged union fields in znkLibravatar Rutger Broekhoff2021-05-251-16/+16
|
* Write a few more tests, rename a few functionsLibravatar Rutger Broekhoff2021-05-251-4/+4
|
* Rename things once againLibravatar Rutger Broekhoff2021-05-241-4/+4
|
* Support private keys in znkLibravatar Rutger Broekhoff2021-05-241-27/+27
|
* Add PrivateKey, use Ed25519.KeyPair in SeedKeyPairLibravatar Rutger Broekhoff2021-05-241-12/+12
|
* Clean up moreLibravatar Rutger Broekhoff2021-05-241-8/+11
| | | | | Clean up unnecessary error unions, generate allowed characters table for credentials file sections at compile time.
* Run zig fmtLibravatar Rutger Broekhoff2021-05-221-1/+1
|
* Simplify znk mainLibravatar Rutger Broekhoff2021-05-221-19/+4
|
* Clean upLibravatar Rutger Broekhoff2021-05-221-18/+75
| | | | | | | | | | | | | | `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.
* Initial commitLibravatar Rutger Broekhoff2021-05-211-0/+462