Add bytes into the SHA-224 hash */
| 327 | |
| 328 | /* Add bytes into the SHA-224 hash */ |
| 329 | void |
| 330 | SHA224_Update(SHA224_CTX * ctx, const void *in, size_t len) |
| 331 | { |
| 332 | |
| 333 | SHA256_Update((SHA256_CTX *)ctx, in, len); |
| 334 | } |
| 335 | |
| 336 | /* |
| 337 | * SHA-224 finalization. Pads the input data, exports the hash value, |
no test coverage detected