type crypto/internal/boring.PrivateKeyRSA

9 uses

	crypto/internal/boring (current package)
		notboring.go#L74: type PrivateKeyRSA struct{ _ int }
		notboring.go#L76: func DecryptRSAOAEP(h, mgfHash hash.Hash, priv *PrivateKeyRSA, ciphertext, label []byte) ([]byte, error) {
		notboring.go#L79: func DecryptRSAPKCS1(priv *PrivateKeyRSA, ciphertext []byte) ([]byte, error) {
		notboring.go#L82: func DecryptRSANoPadding(priv *PrivateKeyRSA, ciphertext []byte) ([]byte, error) {
		notboring.go#L97: func NewPrivateKeyRSA(N, E, D, P, Q, Dp, Dq, Qinv BigInt) (*PrivateKeyRSA, error) {
		notboring.go#L101: func SignRSAPKCS1v15(priv *PrivateKeyRSA, h crypto.Hash, hashed []byte) ([]byte, error) {
		notboring.go#L104: func SignRSAPSS(priv *PrivateKeyRSA, h crypto.Hash, hashed []byte, saltLen int) ([]byte, error) {

	crypto/rsa
		notboring.go#L14: func boringPrivateKey(*PrivateKey) (*boring.PrivateKeyRSA, error) {
		pkcs1v15.go#L192: 		var bkey *boring.PrivateKeyRSA