Browse Source

fix mvsc warning

master
Leon 5 years ago
parent
commit
889a1f1e53
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      crypto_kem/ledakemlt12/clean/rng.c
  2. +1
    -1
      crypto_kem/ledakemlt32/clean/rng.c
  3. +1
    -1
      crypto_kem/ledakemlt52/clean/rng.c

+ 1
- 1
crypto_kem/ledakemlt12/clean/rng.c View File

@@ -67,7 +67,7 @@ void PQCLEAN_LEDAKEMLT12_CLEAN_seedexpander_from_trng(AES_XOF_struct *ctx,
xlen - number of bytes to return
*/
int PQCLEAN_LEDAKEMLT12_CLEAN_seedexpander(AES_XOF_struct *ctx, unsigned char *x, size_t xlen) {
uint32_t offset;
size_t offset;
aes256ctx ctx256;

if ( x == NULL ) {


+ 1
- 1
crypto_kem/ledakemlt32/clean/rng.c View File

@@ -67,7 +67,7 @@ void PQCLEAN_LEDAKEMLT32_CLEAN_seedexpander_from_trng(AES_XOF_struct *ctx,
xlen - number of bytes to return
*/
int PQCLEAN_LEDAKEMLT32_CLEAN_seedexpander(AES_XOF_struct *ctx, unsigned char *x, size_t xlen) {
uint32_t offset;
size_t offset;
aes256ctx ctx256;

if ( x == NULL ) {


+ 1
- 1
crypto_kem/ledakemlt52/clean/rng.c View File

@@ -67,7 +67,7 @@ void PQCLEAN_LEDAKEMLT52_CLEAN_seedexpander_from_trng(AES_XOF_struct *ctx,
xlen - number of bytes to return
*/
int PQCLEAN_LEDAKEMLT52_CLEAN_seedexpander(AES_XOF_struct *ctx, unsigned char *x, size_t xlen) {
uint32_t offset;
size_t offset;
aes256ctx ctx256;

if ( x == NULL ) {


Loading…
Cancel
Save