Update this hash with a ``msg`` bytes string.
(self, msg=None)
| 58 | self.update(msg) |
| 59 | |
| 60 | def update(self, msg=None): |
| 61 | """ |
| 62 | Update this hash with a ``msg`` bytes string. |
| 63 | """ |
| 64 | if msg: |
| 65 | self.binh.update(msg) |
| 66 | self.msg_len += len(msg) |
| 67 | |
| 68 | return hasher |
| 69 |
no outgoing calls
no test coverage detected