| 362 | } |
| 363 | |
| 364 | void Sha1::process(size_t length, const void* bytes) |
| 365 | { |
| 366 | sha_update(&handle, static_cast<const unsigned char*>(bytes), length); |
| 367 | } |
| 368 | |
| 369 | void Sha1::getHash(UCharBuffer& hash) |
| 370 | { |
nothing calls this directly
no test coverage detected