restart
| 23 | |
| 24 | /// restart |
| 25 | void SHA3::reset() |
| 26 | { |
| 27 | for (size_t i = 0; i < StateSize; i++) |
| 28 | m_hash[i] = 0; |
| 29 | |
| 30 | m_numBytes = 0; |
| 31 | m_bufferSize = 0; |
| 32 | } |
| 33 | |
| 34 | |
| 35 | /// constants and local helper functions |
nothing calls this directly
no outgoing calls
no test coverage detected