Create a HMAC object.
(self, key, msg=None)
| 1189 | """Tests for the update() method (streaming HMAC).""" |
| 1190 | |
| 1191 | def HMAC(self, key, msg=None): |
| 1192 | """Create a HMAC object.""" |
| 1193 | raise NotImplementedError |
| 1194 | |
| 1195 | @property |
| 1196 | def gil_minsize(self): |
no outgoing calls
no test coverage detected