type crypto/ed25519.PrivateKey

13 uses

	crypto/ed25519 (current package)
		ed25519.go#L54: type PrivateKey []byte
		ed25519.go#L57: func (priv PrivateKey) Public() crypto.PublicKey {
		ed25519.go#L64: func (priv PrivateKey) Equal(x crypto.PrivateKey) bool {
		ed25519.go#L65: 	xx, ok := x.(PrivateKey)
		ed25519.go#L75: 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#L138: func GenerateKey(rand io.Reader) (PublicKey, PrivateKey, error) {
		ed25519.go#L159: func NewKeyFromSeed(seed []byte) PrivateKey {
		ed25519.go#L186: func Sign(privateKey PrivateKey, message []byte) []byte {

	crypto/tls
		auth.go#L262: 	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#L131: 	case ed25519.PrivateKey: