diff options
author | Claudius 'keldu' Holeksa <mail@keldu.de> | 2024-07-18 15:47:29 +0200 |
---|---|---|
committer | Claudius 'keldu' Holeksa <mail@keldu.de> | 2024-07-18 15:47:29 +0200 |
commit | f1223709e193c4513047293a1a42b55b9e8874b8 (patch) | |
tree | 874e76039ec3885e1448d69f14abd42763f4ba7b /modules/crypto/SConstruct | |
parent | e732c6efd96a22296591f3becc1c63fc80299938 (diff) |
Added argon2i as hashing alg with one test
Diffstat (limited to 'modules/crypto/SConstruct')
-rw-r--r-- | modules/crypto/SConstruct | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/modules/crypto/SConstruct b/modules/crypto/SConstruct index f71db5a..a2b6f96 100644 --- a/modules/crypto/SConstruct +++ b/modules/crypto/SConstruct @@ -46,7 +46,11 @@ env_vars.Add('prefix', env=Environment(ENV=os.environ, variables=env_vars, CPPPATH=[], CPPDEFINES=['SAW_UNIX'], CXXFLAGS=['-std=c++20','-g','-Wall','-Wextra'], - LIBS=['forstio-core']) + LIBS=[ + 'forstio-core' + ,'argon2' + ] +) env.__class__.add_source_files = add_kel_source_files env.Tool('compilation_db'); env.cdb = env.CompilationDatabase('compile_commands.json'); |