| 396 | } |
| 397 | |
| 398 | void |
| 399 | SHA512_256_Update(SHA512_CTX * ctx, const void *in, size_t len) |
| 400 | { |
| 401 | |
| 402 | SHA512_Update(ctx, in, len); |
| 403 | } |
| 404 | |
| 405 | void |
| 406 | SHA512_256_Final(unsigned char digest[static SHA512_256_DIGEST_LENGTH], SHA512_CTX * ctx) |
nothing calls this directly
no test coverage detected