aboutsummaryrefslogtreecommitdiff
path: root/create_cert.go
AgeCommit message (Collapse)AuthorFilesLines
5 daysfix creating simple certificatesHEADmasterGibheer1-2/+2
Creating CAs requires the CALength to be set to a specific value. But with normal certificates, 99% of the use case, this is not needed. By setting it to -1 by default, the flag will become ignored for all signatures apart from CAs.
2022-08-15update import pathsGibheer1-1/+1
2018-04-19add more error checkingGibheer1-16/+18
Based on #13, we need more error checking when opening files. The CA and CSR files are now checked and return proper error messages in case something goes wrong.
2016-10-01rework program flowGibheer1-0/+195
This commit is a complete rebuild of pkictl. Before everything was all over the place and adding new commands was kind of a hassle. Now each command has its own file and can be adjusted on a command basis. Options are still used by the same name, but can now use different descriptions.