5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-02-07 10:16:16 +00:00

8 lines
156 B
Go
Raw Normal View History

2022-01-31 00:27:37 +01:00
package ecc
// ECPrivateKeyable is an interface for all elliptic curve private keys.
type ECPrivateKeyable interface {
Serialize() [32]byte
Type() int
}