aboutsummaryrefslogtreecommitdiff
path: root/ecdsa.go
AgeCommit message (Collapse)AuthorFilesLines
2015-03-25fix go evt problemGibheer1-4/+5
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-16add more documentation to ecdsaGibheer1-10/+17
2015-03-16adjust comments on ecdsa a bitGibheer1-2/+2
2015-03-15make raw private key publicGibheer1-1/+1
2015-02-19add public key loaderGibheer1-0/+10
This adds a way to restore a public key from any data source.
2015-02-18add sign and verification to ecdsaGibheer1-4/+21
This commit adds support to sign and verify messages using ecdsa.
2015-02-17add pem support to public keyGibheer1-1/+9
This adds pem support to public keys which can now be handled the same way as private keys.
2015-02-15initial commit for pkiGibheer1-0/+69
pki is a small library to make building some of the crypto stuff easier in go.