Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-03-25 | refine documentation after report of golint | Gibheer | 1 | -3/+5 | |
2015-03-25 | fix go evt problem | Gibheer | 1 | -1/+2 | |
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-16 | add documentation | Gibheer | 1 | -8/+24 | |
2015-03-15 | make raw private key public | Gibheer | 1 | -1/+1 | |
2015-02-18 | add sign and verification to ecdsa | Gibheer | 1 | -3/+5 | |
This commit adds support to sign and verify messages using ecdsa. | |||||
2015-02-17 | add pem support to public key | Gibheer | 1 | -1/+4 | |
This adds pem support to public keys which can now be handled the same way as private keys. | |||||
2015-02-15 | initial commit for pki | Gibheer | 1 | -0/+31 | |
pki is a small library to make building some of the crypto stuff easier in go. |