Create a HMAC object.
(self, key, msg=None)
| 1143 | """Tests for the update() method (streaming HMAC).""" |
| 1144 | |
| 1145 | def HMAC(self, key, msg=None): |
| 1146 | """Create a HMAC object.""" |
| 1147 | raise NotImplementedError |
| 1148 | |
| 1149 | @property |
| 1150 | def gil_minsize(self): |
no outgoing calls
no test coverage detected