Browse Source

Fix FIPS202 API memory leaks in Dilithium

undefined
Thom Wiggers 4 years ago
parent
commit
9a4e9da47e
No known key found for this signature in database GPG Key ID: 1BB0A7CE26E363
6 changed files with 6 additions and 0 deletions
  1. +1
    -0
      crypto_sign/dilithium2/avx2/sign.c
  2. +1
    -0
      crypto_sign/dilithium2/clean/sign.c
  3. +1
    -0
      crypto_sign/dilithium3/avx2/sign.c
  4. +1
    -0
      crypto_sign/dilithium3/clean/sign.c
  5. +1
    -0
      crypto_sign/dilithium4/avx2/sign.c
  6. +1
    -0
      crypto_sign/dilithium4/clean/sign.c

+ 1
- 0
crypto_sign/dilithium2/avx2/sign.c View File

@@ -95,6 +95,7 @@ void PQCLEAN_DILITHIUM2_AVX2_challenge(poly *c,
c->coeffs[b] ^= -(signs & 1) & (1 ^ (Q - 1));
signs >>= 1;
}
shake256_ctx_release(&state);
}

/*************************************************


+ 1
- 0
crypto_sign/dilithium2/clean/sign.c View File

@@ -85,6 +85,7 @@ void PQCLEAN_DILITHIUM2_CLEAN_challenge(poly *c,
c->coeffs[b] ^= -((int32_t)signs & 1) & (1 ^ (Q - 1));
signs >>= 1;
}
shake256_ctx_release(&state);
}

/*************************************************


+ 1
- 0
crypto_sign/dilithium3/avx2/sign.c View File

@@ -107,6 +107,7 @@ void PQCLEAN_DILITHIUM3_AVX2_challenge(poly *c,
c->coeffs[b] ^= -(signs & 1) & (1 ^ (Q - 1));
signs >>= 1;
}
shake256_ctx_release(&state);
}

/*************************************************


+ 1
- 0
crypto_sign/dilithium3/clean/sign.c View File

@@ -85,6 +85,7 @@ void PQCLEAN_DILITHIUM3_CLEAN_challenge(poly *c,
c->coeffs[b] ^= -((int32_t)signs & 1) & (1 ^ (Q - 1));
signs >>= 1;
}
shake256_ctx_release(&state);
}

/*************************************************


+ 1
- 0
crypto_sign/dilithium4/avx2/sign.c View File

@@ -122,6 +122,7 @@ void PQCLEAN_DILITHIUM4_AVX2_challenge(poly *c,
c->coeffs[b] ^= -(signs & 1) & (1 ^ (Q - 1));
signs >>= 1;
}
shake256_ctx_release(&state);
}

/*************************************************


+ 1
- 0
crypto_sign/dilithium4/clean/sign.c View File

@@ -85,6 +85,7 @@ void PQCLEAN_DILITHIUM4_CLEAN_challenge(poly *c,
c->coeffs[b] ^= -((int32_t)signs & 1) & (1 ^ (Q - 1));
signs >>= 1;
}
shake256_ctx_release(&state);
}

/*************************************************


Loading…
Cancel
Save