PrivateKey is a wrapper to make dealing with private keys easier to deal with.
| 15 | // PrivateKey is a wrapper to make dealing with private keys easier to deal |
| 16 | // with. |
| 17 | type PrivateKey interface { |
| 18 | crypto.Signer |
| 19 | |
| 20 | MarshalPrivateKey() ([]byte, error) |
| 21 | } |
| 22 | |
| 23 | type ed25519PrivateKey struct { |
| 24 | ed25519.PrivateKey |
no outgoing calls
no test coverage detected