Feed data from msg into this hashing object.
(self, msg)
| 159 | return f"hmac-{self._inner.name}" |
| 160 | |
| 161 | def update(self, msg): |
| 162 | """Feed data from msg into this hashing object.""" |
| 163 | inst = self._hmac or self._inner |
| 164 | inst.update(msg) |
| 165 | |
| 166 | def copy(self): |
| 167 | """Return a separate copy of this hashing object. |
no outgoing calls