type crypto.Decrypter

5 uses

	crypto (current package)
		crypto.go#L192: type Decrypter interface {

	crypto/tls
		common.go#L1107: 		if priv, ok := c.PrivateKey.(crypto.Decrypter); ok {
		handshake_server.go#L260: 	if priv, ok := hs.cert.PrivateKey.(crypto.Decrypter); ok {
		key_agreement.go#L39: 	priv, ok := cert.PrivateKey.(crypto.Decrypter)

	golang.org/x/crypto/openpgp/packet
		encrypted_key.go#L83: 		k := priv.PrivateKey.(crypto.Decrypter)