aboutsummaryrefslogtreecommitdiff
path: root/ed25519.go
AgeCommit message (Collapse)AuthorFilesLines
2017-05-12Add ToPem() to public keysGibheer1-1/+9
This was missing before from all public keys.
2017-05-12add proper pem interfaceGibheer1-1/+8
This should finally resolve the completely broken and wrong API to get a pem representation of a resource.
2015-07-12add ed25519 implementationGibheer1-0/+104
This adds the ed25519 implementation. It implements most of the API, apart from three functions. Both MarshalPem methods write the raw bytes to the channel instead of exporting it into ASN.1. Maybe this needs to be fixed. The PrivateKey() function does not return a crypto.PrivateKey at the moment, as the ed25519 private key does not implement that interface.