summaryrefslogtreecommitdiff
path: root/src/mongo/crypto/tom/SConscript
blob: 6217f442e6f44737365601d77eb9587eb91cd600 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# -*- mode: python -*-

Import("env")

env.Library('tomcrypt',
           ['crypt_argchk.c',
           'crypt_find_hash.c',
           'crypt_hash_descriptor.c',
           'crypt_hash_is_valid.c',
           'crypt_register_hash.c',
           'hash_memory.c',
           'hmac_done.c',
           'hmac_init.c',
           'hmac_memory.c',
           'hmac_process.c',
           'sha1.c',
           'zeromem.c'],
           LIBDEPS=[])