type crypto/internal/boring.PublicKeyRSA

10 uses

	crypto/internal/boring (current package)
		notboring.go#L73: type PublicKeyRSA struct{ _ int }
		notboring.go#L85: func EncryptRSAOAEP(h, mgfHash hash.Hash, pub *PublicKeyRSA, msg, label []byte) ([]byte, error) {
		notboring.go#L88: func EncryptRSAPKCS1(pub *PublicKeyRSA, msg []byte) ([]byte, error) {
		notboring.go#L91: func EncryptRSANoPadding(pub *PublicKeyRSA, msg []byte) ([]byte, error) {
		notboring.go#L100: func NewPublicKeyRSA(N, E BigInt) (*PublicKeyRSA, error) { panic("boringcrypto: not available") }
		notboring.go#L107: func VerifyRSAPKCS1v15(pub *PublicKeyRSA, h crypto.Hash, hashed, sig []byte) error {
		notboring.go#L110: func VerifyRSAPSS(pub *PublicKeyRSA, h crypto.Hash, hashed, sig []byte, saltLen int) error {

	crypto/rsa
		notboring.go#L11: func boringPublicKey(*PublicKey) (*boring.PublicKeyRSA, error) {
		pkcs1v15.go#L73: 		var bkey *boring.PublicKeyRSA
		rsa.go#L562: 		var bkey *boring.PublicKeyRSA