Skip to content

Commit

Permalink
temporarily revert Streebog len to UINT32
Browse files Browse the repository at this point in the history
  • Loading branch information
PMheart committed Apr 6, 2024
1 parent 18dd831 commit f41844a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Include/Acidanthera/Library/OcCryptoLib.h
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ VOID
Streebog256 (
CONST UINT8 *Data,
UINT8 *Digest,
UINTN Length
UINT32 Length
);

VOID
Expand All @@ -460,7 +460,7 @@ VOID
Streebog512 (
CONST UINT8 *Data,
UINT8 *Digest,
UINTN Length
UINT32 Length
);

BOOLEAN
Expand Down
4 changes: 2 additions & 2 deletions Library/OcCryptoLib/Streebog.c
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ VOID
Streebog256 (
CONST UINT8 *Data,
UINT8 *Digest,
UINTN Length
UINT32 Length
)
{
STREEBOG_CONTEXT Context;
Expand Down Expand Up @@ -364,7 +364,7 @@ VOID
Streebog512 (
CONST UINT8 *Data,
UINT8 *Digest,
UINTN Length
UINT32 Length
)
{
STREEBOG_CONTEXT Context;
Expand Down

0 comments on commit f41844a

Please sign in to comment.