diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2024-08-24 17:53:44 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2024-08-24 17:53:44 +0200 |
commit | d317fb2f19850ac18ab067bb48158e8c0c0b7e9f (patch) | |
tree | c83f6cb2b92000481d423768aad55ce5e93d0da4 /src/Common/Random.c | |
parent | 4dfe046390d467dd8572b9b4876a8e823098d3e2 (diff) | |
download | VeraCrypt-d317fb2f19850ac18ab067bb48158e8c0c0b7e9f.tar.gz VeraCrypt-d317fb2f19850ac18ab067bb48158e8c0c0b7e9f.zip |
Windows: Exclude Argon2 for System Encryption and from automatic detection
Bootloader doesn't support Argon2 yet. We don't want to add overhead to automatic detection for now.
Diffstat (limited to 'src/Common/Random.c')
-rw-r--r-- | src/Common/Random.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Common/Random.c b/src/Common/Random.c index 1cfa6fcf..18292b31 100644 --- a/src/Common/Random.c +++ b/src/Common/Random.c @@ -364,7 +364,8 @@ BOOL Randmix () break; #ifndef WOLFCRYPT_BACKEND - case BLAKE2S: + case ARGON2: // in case of Argon2, we use Blake2s + case BLAKE2S: burn (&bctx, sizeof(bctx)); break; |