type crypto.Decrypter

7 uses

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

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

	github.com/refraction-networking/utls
		common.go#L1406: 		if priv, ok := c.PrivateKey.(crypto.Decrypter); ok {
		handshake_server.go#L303: 	if priv, ok := hs.cert.PrivateKey.(crypto.Decrypter); ok {
		key_agreement.go#L59: 	priv, ok := cert.PrivateKey.(crypto.Decrypter)