Searched defs:PublicKeyRSA (Results 1 – 2 of 2) sorted by relevance
/aosp_15_r20/prebuilts/go/linux-x86/src/crypto/internal/boring/ |
D | rsa.go | 43 type PublicKeyRSA struct { struct 45 _key *C.GO_RSA 62 func (k *PublicKeyRSA) finalize() { 66 func (k *PublicKeyRSA) withKey(f func(*C.GO_RSA) C.int) C.int { 217 func EncryptRSAOAEP(h, mgfHash hash.Hash, pub *PublicKeyRSA, msg, label []byte) ([]byte, error) { 225 func EncryptRSAPKCS1(pub *PublicKeyRSA, msg []byte) ([]byte, error) { 233 func EncryptRSANoPadding(pub *PublicKeyRSA, msg []byte) ([]byte, error) { 290 func VerifyRSAPSS(pub *PublicKeyRSA, h crypto.Hash, hashed, sig []byte, saltLen int) error { 351 func VerifyRSAPKCS1v15(pub *PublicKeyRSA, h crypto.Hash, hashed, sig []byte) error {
|
D | notboring.go | 73 type PublicKeyRSA struct{ _ int } argument 85 func EncryptRSAOAEP(h, mgfHash hash.Hash, pub *PublicKeyRSA, msg, label []byte) ([]byte, error) { 88 func EncryptRSAPKCS1(pub *PublicKeyRSA, msg []byte) ([]byte, error) { 91 func EncryptRSANoPadding(pub *PublicKeyRSA, msg []byte) ([]byte, error) { 107 func VerifyRSAPKCS1v15(pub *PublicKeyRSA, h crypto.Hash, hashed, sig []byte) error { 110 func VerifyRSAPSS(pub *PublicKeyRSA, h crypto.Hash, hashed, sig []byte, saltLen int) error {
|