type crypto/ed25519.PrivateKey

14 uses

	crypto/ed25519 (current package)
		ed25519.go#L56: type PrivateKey []byte
		ed25519.go#L59: func (priv PrivateKey) Public() crypto.PublicKey {
		ed25519.go#L66: func (priv PrivateKey) Equal(x crypto.PrivateKey) bool {
		ed25519.go#L67: 	xx, ok := x.(PrivateKey)
		ed25519.go#L77: func (priv PrivateKey) Seed() []byte {
		ed25519.go#L88: func (priv PrivateKey) Sign(rand io.Reader, message []byte, opts crypto.SignerOpts) (signature []byte, err error) {
		ed25519.go#L98: func GenerateKey(rand io.Reader) (PublicKey, PrivateKey, error) {
		ed25519.go#L119: func NewKeyFromSeed(seed []byte) PrivateKey {
		ed25519.go#L149: func Sign(privateKey PrivateKey, message []byte) []byte {

	crypto/tls
		auth.go#L258: 	case *ed25519.PrivateKey:
		tls.go#L353: 		priv, ok := cert.PrivateKey.(ed25519.PrivateKey)
		tls.go#L376: 		case *rsa.PrivateKey, *ecdsa.PrivateKey, ed25519.PrivateKey:

	crypto/x509
		pkcs8.go#L121: 	case ed25519.PrivateKey:

	golang.org/x/crypto/ed25519
		ed25519_go113.go#L48: type PrivateKey = ed25519.PrivateKey