Verify the signature of text msg with a public/verify key. :param msg: message bytes to be signed :param sig: result signature to be compared :param key: public key to verify the signature :return: boolean
(self, msg, sig, key)
| 23 | raise NotImplementedError |
| 24 | |
| 25 | def verify(self, msg, sig, key): |
| 26 | """Verify the signature of text msg with a public/verify key. |
| 27 | |
| 28 | :param msg: message bytes to be signed |
| 29 | :param sig: result signature to be compared |
| 30 | :param key: public key to verify the signature |
| 31 | :return: boolean |
| 32 | """ |
| 33 | raise NotImplementedError |
| 34 | |
| 35 | |
| 36 | class JWSHeader(dict): |
no outgoing calls
no test coverage detected