Skip to content

Commit

Permalink
Separate keccak for flex
Browse files Browse the repository at this point in the history
  • Loading branch information
MoneroOcean committed Jun 1, 2024
1 parent db4f89e commit 91bad8a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/crypto/flex/flex_keccak.h
Original file line number Diff line number Diff line change
Expand Up @@ -92,22 +92,22 @@ typedef struct {
/**
* Type for a Keccak-224 context (identical to the common context).
*/
typedef flex_keccak_context sph_keccak224_context;
typedef sph_keccak_context sph_keccak224_context;

/**
* Type for a Keccak-256 context (identical to the common context).
*/
typedef flex_keccak_context sph_keccak256_context;
typedef sph_keccak_context sph_keccak256_context;

/**
* Type for a Keccak-384 context (identical to the common context).
*/
typedef flex_keccak_context sph_keccak384_context;
typedef sph_keccak_context sph_keccak384_context;

/**
* Type for a Keccak-512 context (identical to the common context).
*/
typedef flex_keccak_context sph_keccak512_context;
typedef sph_keccak_context sph_keccak512_context;

/**
* Initialize a Keccak-224 context. This process performs no memory allocation.
Expand Down

0 comments on commit 91bad8a

Please sign in to comment.