summaryrefslogtreecommitdiffstats
path: root/vendor/go.mau.fi/libsignal/ecc/ECPrivateKey.go
blob: be3ddae55ed6a8f106b72c6890365f7df5da4fbb (plain) (blame)
1
2
3
4
5
6
7
package ecc

// ECPrivateKeyable is an interface for all elliptic curve private keys.
type ECPrivateKeyable interface {
	Serialize() [32]byte
	Type() int
}