Verify signed data.
(self, msg, sig, h="sha256", **kwargs)
| 414 | |
| 415 | @crypto_validator |
| 416 | def verify(self, msg, sig, h="sha256", **kwargs): |
| 417 | """ |
| 418 | Verify signed data. |
| 419 | """ |
| 420 | raise NotImplementedError |
| 421 | |
| 422 | |
| 423 | class PubKeyRSA(PubKey, _EncryptAndVerifyRSA): |
no outgoing calls
no test coverage detected