type crypto/ed25519.PrivateKey

17 uses

	crypto/ed25519 (current package)
		ed25519.go#L59: type PrivateKey []byte
		ed25519.go#L62: func (priv PrivateKey) Public() crypto.PublicKey {
		ed25519.go#L69: func (priv PrivateKey) Equal(x crypto.PrivateKey) bool {
		ed25519.go#L70: 	xx, ok := x.(PrivateKey)
		ed25519.go#L80: func (priv PrivateKey) Seed() []byte {
		ed25519.go#L97: func (priv PrivateKey) Sign(rand io.Reader, message []byte, opts crypto.SignerOpts) (signature []byte, err error) {
		ed25519.go#L151: func GenerateKey(random io.Reader) (PublicKey, PrivateKey, error) {
		ed25519.go#L177: func NewKeyFromSeed(seed []byte) PrivateKey {
		ed25519.go#L195: func Sign(privateKey PrivateKey, message []byte) []byte {
		ed25519.go#L203: func sign(signature []byte, privateKey PrivateKey, message []byte) {

	crypto/tls
		auth.go#L278: 	case *ed25519.PrivateKey:
		tls.go#L349: 		priv, ok := cert.PrivateKey.(ed25519.PrivateKey)
		tls.go#L372: 		case *rsa.PrivateKey, *ecdsa.PrivateKey, ed25519.PrivateKey:

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

	github.com/refraction-networking/utls
		auth.go#L264: 	case *ed25519.PrivateKey:
		tls.go#L339: 		priv, ok := cert.PrivateKey.(ed25519.PrivateKey)
		tls.go#L362: 		case *rsa.PrivateKey, *ecdsa.PrivateKey, ed25519.PrivateKey: