fix mvsc warning

This commit is contained in:
Leon 2019-06-11 17:09:28 +02:00
parent 9c2449387a
commit 889a1f1e53
3 changed files with 3 additions and 3 deletions

View File

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

View File

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

View File

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