0
0
Fork 0
A small library to make management of crypto stuff easier in go.
Go to file
Gibheer 11423e25b5 fix go evt problem
Go vet reported a problem with the interface of WriteTo returning an
int.

  Line 13: method WriteTo(stream io.Writer) (int, error)
        should have signature WriteTo(io.Writer) (int64, error)

To fix that problem, the interface was changed to return io.WriterTo,
which uses int64 for return values.
2015-03-25 20:12:41 +01:00
AUTHORS add authors file 2015-02-15 21:07:44 +01:00
LICENSE add license 2015-02-15 21:06:59 +01:00
README.md initial commit for pki 2015-02-15 21:04:59 +01:00
certificate.go add more flags to certificate options 2015-03-24 21:19:44 +01:00
certificate_test.go finalize creation of a certificate 2015-03-16 16:48:42 +01:00
ecdsa.go fix go evt problem 2015-03-25 20:12:41 +01:00
pem_marshal.go fix go evt problem 2015-03-25 20:12:41 +01:00
private_key_test.go add public key loader 2015-02-19 21:48:08 +01:00
rsa.go fix go evt problem 2015-03-25 20:12:41 +01:00
types.go fix go evt problem 2015-03-25 20:12:41 +01:00

README.md

pki

This is a small library to make building private keys, public keys, signatures and most of the certificate stuff a bit easier.

For a cli you can take a look at pkictl