1
2SODIUM_EXPORT = \
3	sodium.h \
4	sodium/core.h \
5	sodium/crypto_aead_aes256gcm.h \
6	sodium/crypto_aead_chacha20poly1305.h \
7	sodium/crypto_aead_xchacha20poly1305.h \
8	sodium/crypto_auth.h \
9	sodium/crypto_auth_hmacsha256.h \
10	sodium/crypto_auth_hmacsha512.h \
11	sodium/crypto_auth_hmacsha512256.h \
12	sodium/crypto_box.h \
13	sodium/crypto_box_curve25519xchacha20poly1305.h \
14	sodium/crypto_box_curve25519xsalsa20poly1305.h \
15	sodium/crypto_core_ed25519.h \
16	sodium/crypto_core_ristretto255.h \
17	sodium/crypto_core_hchacha20.h \
18	sodium/crypto_core_hsalsa20.h \
19	sodium/crypto_core_salsa20.h \
20	sodium/crypto_core_salsa2012.h \
21	sodium/crypto_core_salsa208.h \
22	sodium/crypto_generichash.h \
23	sodium/crypto_generichash_blake2b.h \
24	sodium/crypto_hash.h \
25	sodium/crypto_hash_sha256.h \
26	sodium/crypto_hash_sha512.h \
27	sodium/crypto_kdf.h \
28	sodium/crypto_kdf_blake2b.h \
29	sodium/crypto_kx.h \
30	sodium/crypto_onetimeauth.h \
31	sodium/crypto_onetimeauth_poly1305.h \
32	sodium/crypto_pwhash.h \
33	sodium/crypto_pwhash_argon2i.h \
34	sodium/crypto_pwhash_argon2id.h \
35	sodium/crypto_pwhash_scryptsalsa208sha256.h \
36	sodium/crypto_scalarmult.h \
37	sodium/crypto_scalarmult_curve25519.h \
38	sodium/crypto_scalarmult_ed25519.h \
39	sodium/crypto_scalarmult_ristretto255.h \
40	sodium/crypto_secretbox.h \
41	sodium/crypto_secretbox_xchacha20poly1305.h \
42	sodium/crypto_secretbox_xsalsa20poly1305.h \
43	sodium/crypto_secretstream_xchacha20poly1305.h \
44	sodium/crypto_shorthash.h \
45	sodium/crypto_shorthash_siphash24.h \
46	sodium/crypto_sign.h \
47	sodium/crypto_sign_ed25519.h \
48	sodium/crypto_sign_edwards25519sha512batch.h \
49	sodium/crypto_stream.h \
50	sodium/crypto_stream_chacha20.h \
51	sodium/crypto_stream_salsa20.h \
52	sodium/crypto_stream_salsa2012.h \
53	sodium/crypto_stream_salsa208.h \
54	sodium/crypto_stream_xchacha20.h \
55	sodium/crypto_stream_xsalsa20.h \
56	sodium/crypto_verify_16.h \
57	sodium/crypto_verify_32.h \
58	sodium/crypto_verify_64.h \
59	sodium/export.h \
60	sodium/randombytes.h \
61	sodium/randombytes_internal_random.h \
62	sodium/randombytes_sysrandom.h \
63	sodium/runtime.h \
64	sodium/utils.h
65
66EXTRA_SRC = $(SODIUM_EXPORT) \
67	sodium/version.h.in
68
69nobase_include_HEADERS = $(SODIUM_EXPORT)
70
71nobase_nodist_include_HEADERS = \
72	sodium/version.h
73