Skip to content

Commit

Permalink
Removed leftover references to AES-CTR, not belonging here.
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabian Druschke committed Mar 20, 2024
1 parent 50bcf81 commit 87376a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/prng.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ nwipe_prng_t nwipe_twister = { "Mersenne Twister (mt19937ar-cok)", nwipe_twister
nwipe_prng_t nwipe_isaac = { "ISAAC (rand.c 20010626)", nwipe_isaac_init, nwipe_isaac_read };
nwipe_prng_t nwipe_isaac64 = { "ISAAC-64 (isaac64.c)", nwipe_isaac64_init, nwipe_isaac64_read };

/* AES-CTR-NI PRNG Structure */
/* XOROSHIRO-256 PRNG Structure */
nwipe_prng_t nwipe_xoroshiro256_prng = { "XORoshiro-256", nwipe_xoroshiro256_prng_init, nwipe_xoroshiro256_prng_read };

/* Print given number of bytes from unsigned integer number to a byte stream buffer starting with low-endian. */
Expand Down
2 changes: 1 addition & 1 deletion src/prng.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ int nwipe_isaac_read( NWIPE_PRNG_READ_SIGNATURE );
int nwipe_isaac64_init( NWIPE_PRNG_INIT_SIGNATURE );
int nwipe_isaac64_read( NWIPE_PRNG_READ_SIGNATURE );

/* AES-CTR-NI prototypes. */
/* XOROSHIRO-256 prototypes. */
int nwipe_xoroshiro256_prng_init( NWIPE_PRNG_INIT_SIGNATURE );
int nwipe_xoroshiro256_prng_read( NWIPE_PRNG_READ_SIGNATURE );

Expand Down

0 comments on commit 87376a0

Please sign in to comment.