Feed data from msg into this hashing object.
(self, msg)
| 115 | return f"hmac-{self._inner.name}" |
| 116 | |
| 117 | def update(self, msg): |
| 118 | """Feed data from msg into this hashing object.""" |
| 119 | inst = self._hmac or self._inner |
| 120 | inst.update(msg) |
| 121 | |
| 122 | def copy(self): |
| 123 | """Return a separate copy of this hashing object. |
no outgoing calls