aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Consistent spelling of CRC-16Rutger Broekhoff2021-05-261-2/+2
|
* Allow generating seeds with custom entropyRutger Broekhoff2021-05-262-58/+103
|
* 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-130/+133
|
* 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-20/+22
|
* Remove some unnecessary codeRutger Broekhoff2021-05-242-17/+6
|
* Remove unnecessary call to @setEvalBranchQuotaRutger Broekhoff2021-05-241-2/+0
|
* Clean up moreRutger Broekhoff2021-05-243-107/+88
| | | | | Clean up unnecessary error unions, generate allowed characters table for credentials file sections at compile time.
* 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 upRutger Broekhoff2021-05-223-145/+151
| | | | | | | | | | | | | | `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 decoderRutger Broekhoff2021-05-221-5/+15
|
* Document the Base32 decoderRutger Broekhoff2021-05-221-43/+67
|
* Rewrite Base32 decoderRutger Broekhoff2021-05-222-57/+86
|
* 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
|
* Add building instructions to README.mdRutger Broekhoff2021-05-211-0/+11
|
* Add CI status badge to README.mdRutger Broekhoff2021-05-211-0/+1
|
* Partially test parseDecoratedJwtRutger Broekhoff2021-05-211-0/+4
|
* Make creds file parsing workRutger Broekhoff2021-05-212-3/+25
|
* Actually fix GitHub Actions config this timeRutger Broekhoff2021-05-211-1/+1
|
* Fix typo in GitHub Actions configRutger Broekhoff2021-05-211-1/+1
|
* Add GitHub Actions configRutger Broekhoff2021-05-211-0/+23
|
* Fix up build.zigRutger Broekhoff2021-05-211-7/+7
|
* Update README.mdRutger Broekhoff2021-05-211-1/+1
|
* Initial commitRutger Broekhoff2021-05-218-0/+1418
47'>647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784