(self, key, msg=None, digestmod=DIGESTMOD_SENTINEL)
| 175 | """Mixin delegating to _hmac.new() and _hmac.compute_digest().""" |
| 176 | |
| 177 | def hmac_new(self, key, msg=None, digestmod=DIGESTMOD_SENTINEL): |
| 178 | return _call_newobj_func(self.hmac.new, key, msg, digestmod) |
| 179 | |
| 180 | def hmac_digest(self, key, msg=None, digestmod=DIGESTMOD_SENTINEL): |
| 181 | return _call_digest_func(self.hmac.compute_digest, key, msg, digestmod) |
nothing calls this directly
no test coverage detected