type crypto/internal/boring.PublicKeyRSA
9 uses
crypto/internal/boring (current package)
notboring.go#L74: type PublicKeyRSA struct{ _ int }
notboring.go#L86: func EncryptRSAOAEP(h, mgfHash hash.Hash, pub *PublicKeyRSA, msg, label []byte) ([]byte, error) {
notboring.go#L89: func EncryptRSAPKCS1(pub *PublicKeyRSA, msg []byte) ([]byte, error) {
notboring.go#L92: func EncryptRSANoPadding(pub *PublicKeyRSA, msg []byte) ([]byte, error) {
notboring.go#L101: func NewPublicKeyRSA(N, E BigInt) (*PublicKeyRSA, error) { panic("boringcrypto: not available") }
notboring.go#L108: func VerifyRSAPKCS1v15(pub *PublicKeyRSA, h crypto.Hash, hashed, sig []byte) error {
notboring.go#L111: 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#L79: var bkey *boring.PublicKeyRSA