c: Implement the passgeny module.

This is the C implementation of the passgeny library.
This commit is contained in:
2021-11-14 09:16:34 +01:00
parent 67ec1180dd
commit f927eea9aa
5 changed files with 408 additions and 8 deletions

10
c/passgeny/meson.build Normal file
View File

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