Absorb message bytes into a SHA‐384 context (deprecated; prefer EVP_DigestUpdate).

Synopsis

Declared in <openssl/sha.h>

[[deprecated]]
int
SHA384_Update(
    SHA512_CTX* c,
    void const* data,
    size_t len);
Warning

Deprecated. Use of this entity is allowed but discouraged.

Return Value

1 on success, or 0 on failure.

Parameters

Name

Description

c

Context previously initialized with SHA384_Init().

data

Message bytes to hash.

len

Number of bytes at data.

Created with MrDocs