mirror of
https://github.com/42wim/matterbridge.git
synced 2024-11-21 10:12:00 -08:00
8 lines
156 B
Go
8 lines
156 B
Go
package ecc
|
|
|
|
// ECPrivateKeyable is an interface for all elliptic curve private keys.
|
|
type ECPrivateKeyable interface {
|
|
Serialize() [32]byte
|
|
Type() int
|
|
}
|