Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ISigner ¶
type ISigner interface { Type() string Sign(data []byte) (signature []byte, err error) Verify(data []byte, signature []byte) (passed bool, err error) RawKeyPair() (kp interface{}) KeyPairData() (keyData []byte) PublicKeyString() (key string) PrivateKeyString() (key string) PublicKeyBytes() (key []byte) PrivateKeyBytes() (key []byte) PublicKeyCompare(k interface{}) (equal bool) }
Click to show internal directories.
Click to hide internal directories.