2019-07-16 18:28:54 +03:00
|
|
|
crypto_ss.add(genh)
|
|
|
|
crypto_ss.add(files(
|
|
|
|
'afsplit.c',
|
2022-05-25 12:01:12 +03:00
|
|
|
'akcipher.c',
|
2019-07-16 18:28:54 +03:00
|
|
|
'block-luks.c',
|
|
|
|
'block-qcow.c',
|
|
|
|
'block.c',
|
|
|
|
'cipher.c',
|
2022-05-25 12:01:13 +03:00
|
|
|
'der.c',
|
2019-07-16 18:28:54 +03:00
|
|
|
'hash.c',
|
|
|
|
'hmac.c',
|
|
|
|
'ivgen-essiv.c',
|
|
|
|
'ivgen-plain.c',
|
|
|
|
'ivgen-plain64.c',
|
|
|
|
'ivgen.c',
|
|
|
|
'pbkdf.c',
|
|
|
|
'secret_common.c',
|
|
|
|
'secret.c',
|
|
|
|
'tlscreds.c',
|
|
|
|
'tlscredsanon.c',
|
|
|
|
'tlscredspsk.c',
|
|
|
|
'tlscredsx509.c',
|
|
|
|
'tlssession.c',
|
2022-05-25 12:01:14 +03:00
|
|
|
'rsakey.c',
|
2019-07-16 18:28:54 +03:00
|
|
|
))
|
|
|
|
|
2021-06-03 12:15:26 +03:00
|
|
|
if nettle.found()
|
|
|
|
crypto_ss.add(nettle, files('hash-nettle.c', 'hmac-nettle.c', 'pbkdf-nettle.c'))
|
2022-05-25 12:01:14 +03:00
|
|
|
if hogweed.found()
|
|
|
|
crypto_ss.add(gmp, hogweed)
|
|
|
|
endif
|
2021-07-02 19:00:32 +03:00
|
|
|
if xts == 'private'
|
|
|
|
crypto_ss.add(files('xts.c'))
|
|
|
|
endif
|
2021-06-03 12:15:26 +03:00
|
|
|
elif gcrypt.found()
|
|
|
|
crypto_ss.add(gcrypt, files('hash-gcrypt.c', 'hmac-gcrypt.c', 'pbkdf-gcrypt.c'))
|
2021-06-25 20:32:14 +03:00
|
|
|
elif gnutls_crypto.found()
|
2021-06-25 20:32:14 +03:00
|
|
|
crypto_ss.add(gnutls, files('hash-gnutls.c', 'hmac-gnutls.c', 'pbkdf-gnutls.c'))
|
2019-07-16 18:28:54 +03:00
|
|
|
else
|
2020-09-01 16:30:49 +03:00
|
|
|
crypto_ss.add(files('hash-glib.c', 'hmac-glib.c', 'pbkdf-stub.c'))
|
2019-07-16 18:28:54 +03:00
|
|
|
endif
|
|
|
|
|
2022-04-20 18:33:42 +03:00
|
|
|
if have_keyring
|
|
|
|
crypto_ss.add(files('secret_keyring.c'))
|
|
|
|
endif
|
2021-11-08 16:02:42 +03:00
|
|
|
if have_afalg
|
|
|
|
crypto_ss.add(if_true: files('afalg.c', 'cipher-afalg.c', 'hash-afalg.c'))
|
|
|
|
endif
|
2023-09-28 10:49:15 +03:00
|
|
|
|
|
|
|
system_ss.add(when: gnutls, if_true: files('tls-cipher-suites.c'))
|
2020-09-01 16:30:49 +03:00
|
|
|
|
2023-07-10 17:38:28 +03:00
|
|
|
util_ss.add(files(
|
|
|
|
'aes.c',
|
|
|
|
'clmul.c',
|
|
|
|
'init.c',
|
|
|
|
'sm4.c',
|
|
|
|
))
|
2021-06-30 19:20:02 +03:00
|
|
|
if gnutls.found()
|
|
|
|
util_ss.add(gnutls)
|
|
|
|
endif
|
2020-09-01 16:30:49 +03:00
|
|
|
|
2021-06-03 12:15:26 +03:00
|
|
|
if gcrypt.found()
|
|
|
|
util_ss.add(gcrypt, files('random-gcrypt.c'))
|
|
|
|
elif gnutls.found()
|
|
|
|
util_ss.add(gnutls, files('random-gnutls.c'))
|
2021-10-13 12:46:09 +03:00
|
|
|
elif get_option('rng_none')
|
2020-08-19 15:44:56 +03:00
|
|
|
util_ss.add(files('random-none.c'))
|
|
|
|
else
|
|
|
|
util_ss.add(files('random-platform.c'))
|
|
|
|
endif
|
2020-09-01 16:30:49 +03:00
|
|
|
|