type crypto/ed25519.PrivateKey
13 uses
crypto/ed25519 (current package)
ed25519.go#L53: type PrivateKey []byte
ed25519.go#L56: func (priv PrivateKey) Public() crypto.PublicKey {
ed25519.go#L63: func (priv PrivateKey) Equal(x crypto.PrivateKey) bool {
ed25519.go#L64: xx, ok := x.(PrivateKey)
ed25519.go#L74: func (priv PrivateKey) Seed() []byte {
ed25519.go#L85: func (priv PrivateKey) Sign(rand io.Reader, message []byte, opts crypto.SignerOpts) (signature []byte, err error) {
ed25519.go#L95: func GenerateKey(rand io.Reader) (PublicKey, PrivateKey, error) {
ed25519.go#L116: func NewKeyFromSeed(seed []byte) PrivateKey {
ed25519.go#L140: func Sign(privateKey PrivateKey, message []byte) []byte {
crypto/tls
auth.go#L258: case *ed25519.PrivateKey:
tls.go#L322: priv, ok := cert.PrivateKey.(ed25519.PrivateKey)
tls.go#L345: case *rsa.PrivateKey, *ecdsa.PrivateKey, ed25519.PrivateKey:
crypto/x509
pkcs8.go#L121: case ed25519.PrivateKey: