mirror of
https://gitlab.gnome.org/GNOME/libsecret.git
synced 2024-12-22 12:48:51 +00:00
564874beb0
This moves low-level cryptographic functions into egg/egg-keyring1.c, to make it easy to support multiple crypto backend libraries. Signed-off-by: Daiki Ueno <dueno@src.gnome.org>
68 lines
964 B
Meson
68 lines
964 B
Meson
libegg_sources = [
|
|
'egg-hex.c',
|
|
'egg-secure-memory.c',
|
|
'egg-testing.c',
|
|
]
|
|
|
|
libegg_deps = [
|
|
glib_deps,
|
|
]
|
|
|
|
if get_option('gcrypt')
|
|
libegg_sources += [
|
|
'egg-dh.c',
|
|
'egg-hkdf.c',
|
|
'egg-keyring1.c',
|
|
'egg-libgcrypt.c',
|
|
]
|
|
|
|
libegg_deps += gcrypt_dep
|
|
endif
|
|
|
|
if get_option('tpm2')
|
|
libegg_sources += [
|
|
'egg-tpm2.c',
|
|
]
|
|
|
|
libegg_deps += tss2_deps
|
|
endif
|
|
|
|
libegg = static_library('egg',
|
|
libegg_sources,
|
|
dependencies: libegg_deps,
|
|
include_directories: [config_h_dir, build_dir],
|
|
)
|
|
|
|
# Tests
|
|
test_names = [
|
|
'test-hex',
|
|
'test-secmem',
|
|
]
|
|
|
|
if get_option('gcrypt')
|
|
test_names += [
|
|
'test-dh',
|
|
'test-hkdf',
|
|
]
|
|
endif
|
|
|
|
if get_option('tpm2')
|
|
test_names += [
|
|
'test-tpm2',
|
|
]
|
|
endif
|
|
|
|
foreach _test : test_names
|
|
|
|
test_bin = executable(_test,
|
|
'@0@.c'.format(_test),
|
|
dependencies: libegg_deps,
|
|
link_with: libegg,
|
|
include_directories: config_h_dir,
|
|
)
|
|
|
|
test(_test, test_bin,
|
|
suite: 'libegg',
|
|
)
|
|
endforeach
|