summaryrefslogtreecommitdiff
path: root/scrypt.config
blob: 3ccb4d0ebaefe2ab2092025205cce776ed4dcf12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
CONFIGURE_ARGS="\
 \
"

# unneeded directories
UNNEEDED_SOURCES="\
lib/scryptenc \
"

# unneeded files
UNNEEDED_SOURCES+="\
config.h.in \
configure \
FORMAT \
main.c \
Makefile.in \
scrypt.1 \
lib/crypto/crypto_aesctr.c \
lib/crypto/crypto_aesctr.h \
lib/crypto/crypto_scrypt-nosse.c \
lib/crypto/sha256.c \
lib/crypto/sha256.h \
lib/util/memlimit.c \
lib/util/memlimit.h \
lib/util/readpass.c \
lib/util/readpass.h \
lib/util/warn.c \
lib/util/warn.h \
"

NEEDED_SOURCES="\
config.h \
lib \
scrypt_platform.h \
"

SCRYPT_INCLUDES="\
lib/crypto \
lib/util \
"

SCRYPT_SOURCES="\
lib/crypto/crypto_scrypt-ref.c \
"

SCRYPT_SOURCES_arm="\
"

SCRYPT_SOURCES_EXCLUDES_arm="\
"

SCRYPT_SOURCES_arm_neon="\
lib/crypto/crypto_scrypt-neon.c \
"

SCRYPT_SOURCES_EXCLUDES_arm_neon="\
lib/crypto/crypto_scrypt-ref.c \
"

SCRYPT_SOURCES_mips="\
"

SCRYPT_SOURCES_EXCLUDES_mips="\
"

SCRYPT_SOURCES_x86="\
lib/crypto/crypto_scrypt-sse.c \
"

SCRYPT_SOURCES_EXCLUDES_x86="\
lib/crypto/crypto_scrypt-ref.c \
"

SCRYPT_SOURCES_x86_64="\
lib/crypto/crypto_scrypt-sse.c \
"

SCRYPT_SOURCES_EXCLUDES_x86_64="\
lib/crypto/crypto_scrypt-ref.c \
"

SCRYPT_PATCHES="\
use_openssl_pbkdf2.patch \
arm-neon.patch \
"

SCRYPT_PATCHES_use_openssl_pbkdf2_SOURCES="\
lib/crypto/crypto_scrypt-ref.c \
"

SCRYPT_PATCHES_bionic_SOURCES="\
lib/crypto/crypto_scrypt-neon.c \
lib/crypto/crypto_scrypt-neon-salsa208.h \
"