(self, msg, t="pkcs", h="sha256", mgf=None, L=None)
| 1023 | return False |
| 1024 | |
| 1025 | def encrypt(self, msg, t="pkcs", h="sha256", mgf=None, L=None): |
| 1026 | # no ECDSA *encryption* support, hence only RSA specific keywords here |
| 1027 | return self.pubkey.encrypt(msg, t=t, h=h, mgf=mgf, L=L) |
| 1028 | |
| 1029 | def verify(self, msg, sig, t="pkcs", h="sha256", mgf=None, L=None): |
| 1030 | return self.pubkey.verify(msg, sig, t=t, h=h, mgf=mgf, L=L) |
no outgoing calls
no test coverage detected