mirror of https://github.com/acidanthera/audk.git
CryptoPkg/BaseCryptLib: add next parameter to SHA3_squeeze
Needed for openssl 3.3. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
parent
a801363249
commit
9895fe25ac
|
@ -66,7 +66,8 @@ SHA3_squeeze (
|
|||
uint64_t A[5][5],
|
||||
unsigned char *out,
|
||||
size_t len,
|
||||
size_t r
|
||||
size_t r,
|
||||
int next
|
||||
);
|
||||
|
||||
/**
|
||||
|
|
|
@ -160,7 +160,7 @@ Sha3Final (
|
|||
|
||||
(void)SHA3_absorb (Context->A, Context->buf, BlockSize, BlockSize);
|
||||
|
||||
SHA3_squeeze (Context->A, MessageDigest, Context->md_size, BlockSize);
|
||||
SHA3_squeeze (Context->A, MessageDigest, Context->md_size, BlockSize, 0);
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue