mirror of
https://gitlab.kit.edu/kit/scc/sys/mail/exim-encrypt-dlfunc.git
synced 2025-12-06 12:03:55 +01:00
Wrote decrypt tool for sodium_crypto_box_seal plus matching tests.
Lots of code cleanups.
This commit is contained in:
@ -16,8 +16,14 @@ shared_library('exim-encrypt-dlfunc', 'libexim-encrypt-dlfunc.c',
|
||||
dependencies : [ sodium_deps ],
|
||||
install: true)
|
||||
|
||||
dlfunc_test = find_program('test_libexim-encrypt-dlfunc.sh')
|
||||
test('libexim-encrypt-dlfunc', dlfunc_test, protocol: 'tap')
|
||||
test('libexim-encrypt-dlfunc',
|
||||
find_program('test_libexim-encrypt-dlfunc.sh'),
|
||||
protocol: 'tap')
|
||||
|
||||
decrypt_secretbox_test = find_program('test_libexim-encrypt-dlfunc-decrypt-secretbox.sh')
|
||||
test('decrypt-secretbox', decrypt_secretbox_test, protocol: 'tap')
|
||||
test('decrypt-secretbox',
|
||||
find_program('test_libexim-encrypt-dlfunc-decrypt-secretbox.sh'),
|
||||
protocol: 'tap')
|
||||
|
||||
test('decrypt-sealedbox',
|
||||
find_program('test_libexim-encrypt-dlfunc-decrypt-sealedbox.sh'),
|
||||
protocol: 'tap')
|
||||
Reference in New Issue
Block a user