blob: 670866a9993abd653e938ca1e1221277328c16ae (
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
|
# $OpenBSD: Makefile,v 1.6 2020/11/08 12:10:20 dtucker Exp $
.include <bsd.own.mk>
# The larger ones will take many days, so if you're going to regen them run
# it in a tmux session or something. The checkpoints should make it safe
# to stop and restart.
# The sizes match those in dh.c:dh_estimate() plus some historic sizes.
DHSIZE=2048 3072 4096 6144 7680 8192
.for bits in ${DHSIZE}
MODULI_PARTS+=moduli.${bits}
all: ${MODULI_PARTS}
moduli.${bits}:
sh ${.CURDIR}/moduli-gen.sh ${.CURDIR} ${.CURDIR}/work ${bits}
.endfor
update-moduli: ${MODULI_PARTS}
( \
echo -n '# $$Open'; echo 'BSD$$'; \
echo '# Time Type Tests Tries Size Generator Modulus'; \
cat ${MODULI_PARTS} \
) > ${BSDSRCDIR}/etc/moduli
clean:
.for bits in ${DHSIZE}
rm -f ${.OBJDIR}/moduli.${bits}.sieved.gz
.endfor
|