c,python: Change the algorithm for hashing the master password to Argon2

This commit is contained in:
2021-11-14 09:59:51 +01:00
parent c869c79619
commit cc473f4c24
4 changed files with 21 additions and 10 deletions

View File

@ -5,6 +5,6 @@ passgeny_lib = static_library(
'passgeny',
['src/passgeny.c'],
include_directories : passgeny_inc,
dependencies: [ dependency('libcrypto'), dependency('libargon2'), phogen_dep, bhash_dep])
dependencies: [ dependency('libargon2'), phogen_dep, bhash_dep])
passgeny_dep = declare_dependency(link_with : passgeny_lib, include_directories : passgeny_inc)