| 33 | } |
| 34 | |
| 35 | void MD2::Init() |
| 36 | { |
| 37 | memset(X_.get_buffer(), 0, X_SIZE); |
| 38 | memset(C_.get_buffer(), 0, BLOCK_SIZE); |
| 39 | memset(buffer_.get_buffer(), 0, BLOCK_SIZE); |
| 40 | count_ = 0; |
| 41 | } |
| 42 | |
| 43 | |
| 44 | void MD2::Update(const byte* data, word32 len) |
no test coverage detected