ed

package
v0.0.0-...-868bdbc Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 8, 2020 License: AGPL-3.0 Imports: 10 Imported by: 0

Documentation

Index

Constants

View Source
const (
	PrivKeyAminoRoute = "herdius/PrivKeyEd25519"
	PubKeyAminoRoute  = "herdius/PubKeyEd25519"
	// Size of an Edwards25519 signature. Namely the size of a compressed
	// Edwards25519 point, and a field element. Both of which are 32 bytes.
	SignatureSize = 64
)
View Source
const PubKeyEd25519Size = 32

PubKeyEd25519Size is the number of bytes in an Ed25519 signature.

Variables

This section is empty.

Functions

This section is empty.

Types

type PrivKeyEd25519

type PrivKeyEd25519 [64]byte

PrivKeyEd25519 implements crypto.PrivKey.

func GenPrivKey

func GenPrivKey() PrivKeyEd25519

GenPrivKey generates a new ed25519 private key. It uses OS randomness in conjunction with the current global random seed in /libs/common to generate the private key.

func GenPrivKeyFromSecret

func GenPrivKeyFromSecret(secret []byte) PrivKeyEd25519

GenPrivKeyFromSecret hashes the secret with SHA2, and uses that 32 byte output to create the private key. NOTE: secret should be the output of a KDF like bcrypt, if it's derived from user input.

func (PrivKeyEd25519) Bytes

func (privKey PrivKeyEd25519) Bytes() []byte

func (PrivKeyEd25519) Equals

func (privKey PrivKeyEd25519) Equals(other crypto.PrivKey) bool

func (PrivKeyEd25519) PubKey

func (privKey PrivKeyEd25519) PubKey() crypto.PubKey

PubKey gets the corresponding public key from the private key.

func (PrivKeyEd25519) Sign

func (privKey PrivKeyEd25519) Sign(msg []byte) ([]byte, error)

type PubKeyEd25519

type PubKeyEd25519 [PubKeyEd25519Size]byte

PubKeyEd25519 implements crypto.PubKey for the Ed25519 signature scheme.

func (PubKeyEd25519) Address

func (pubKey PubKeyEd25519) Address() crypto.Address

Address is the SHA256-20 of the raw pubkey bytes.

func (PubKeyEd25519) Bytes

func (pubKey PubKeyEd25519) Bytes() []byte

Bytes marshals the PubKey using amino encoding.

func (PubKeyEd25519) Equals

func (pubKey PubKeyEd25519) Equals(other crypto.PubKey) bool

nolint: golint

func (PubKeyEd25519) GetAddress

func (pubKey PubKeyEd25519) GetAddress() string

GetAddress will create an address prefixed with 'H' e.g. HSGB2xixYLfkvuTSEhs7HABtRFT4sAnBBD

func (PubKeyEd25519) String

func (pubKey PubKeyEd25519) String() string

func (PubKeyEd25519) VerifyBytes

func (pubKey PubKeyEd25519) VerifyBytes(msg []byte, sig []byte) bool

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL