Feed data from msg into this hashing object.
(self, msg)
| 147 | return f"hmac-{self._inner.name}" |
| 148 | |
| 149 | def update(self, msg): |
| 150 | """Feed data from msg into this hashing object.""" |
| 151 | inst = self._hmac or self._inner |
| 152 | inst.update(msg) |
| 153 | |
| 154 | def copy(self): |
| 155 | """Return a separate copy of this hashing object. |
no outgoing calls