aboutsummaryrefslogtreecommitdiff
path: root/verify_signature.go
AgeCommit message (Collapse)AuthorFilesLines
2015-02-15redesign cliGibheer1-161/+0
This is a major rebuilding of the CLI. The library part is split out into pkilib and the cli handles only the communication with the user, I/O and the library. The API will still look the same, but the code should be much better to grasp. Instead of repeating everything, more will be grouped together and reused.
2015-02-04add description in each file what it doesGibheer1-0/+2
2015-01-19extend stream capabilitiesGibheer1-9/+80
With this commit, both signing and verification get stream/file support to read and write messages and signatures from and to files.
2015-01-16add signing and verifying of messagesGibheer1-0/+88
With this it is possible to sign a message with a private key and verify it with a public key. The only problem is, that it is currently not compatible with openssl yet.