| 357 | } |
| 358 | |
| 359 | void |
| 360 | SHA512_224_Update(SHA512_CTX * ctx, const void *in, size_t len) |
| 361 | { |
| 362 | |
| 363 | SHA512_Update(ctx, in, len); |
| 364 | } |
| 365 | |
| 366 | void |
| 367 | SHA512_224_Final(unsigned char digest[static SHA512_224_DIGEST_LENGTH], SHA512_CTX * ctx) |
nothing calls this directly
no test coverage detected