Add bytes into the SHA-384 hash */
| 442 | |
| 443 | /* Add bytes into the SHA-384 hash */ |
| 444 | void |
| 445 | SHA384_Update(SHA384_CTX * ctx, const void *in, size_t len) |
| 446 | { |
| 447 | |
| 448 | SHA512_Update((SHA512_CTX *)ctx, in, len); |
| 449 | } |
| 450 | |
| 451 | /* |
| 452 | * SHA-384 finalization. Pads the input data, exports the hash value, |
no test coverage detected