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
|
## Process this file with automake to produce Makefile.in
# Copyright (C) 2007-2012 Free Software Foundation, Inc.
#
# Author: Simon Josefsson
#
# This file is part of GnuTLS.
#
# This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This file is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this file. If not, see <https://www.gnu.org/licenses/>.
SUBDIRS = srp x509
EXTRA_DIST = gnutls-http-serv
EXTRA_DIST += ca.tmpl client.tmpl proxy.tmpl server.tmpl
EXTRA_DIST += params.pem
EXTRA_DIST += srp-passwd.txt srp-tpasswd.conf
EXTRA_DIST += psk-passwd.txt
EXTRA_DIST += \
dhparams/rfc2409-group-1-768.pem \
dhparams/rfc2409-group-2-1024.pem \
dhparams/rfc3526-group-14-2048.pem \
dhparams/rfc3526-group-15-3072.pem \
dhparams/rfc3526-group-16-4096.pem \
dhparams/rfc3526-group-17-6144.pem \
dhparams/rfc3526-group-18-8192.pem \
dhparams/rfc3526-group-5-1536.pem \
dhparams/rfc5054-1024.pem \
dhparams/rfc5054-1536.pem \
dhparams/rfc5054-2048.pem \
dhparams/rfc5054-3072.pem \
dhparams/rfc5054-4096.pem \
dhparams/rfc5054-6144.pem \
dhparams/rfc5054-8192.pem \
dhparams/rfc5114-group-22-1024.pem \
dhparams/rfc5114-group-23-2048.pem \
dhparams/rfc5114-group-24-2048.pem \
dhparams/rfc7919-ffdhe2048.pem \
dhparams/rfc7919-ffdhe3072.pem \
dhparams/rfc7919-ffdhe4096.pem \
dhparams/rfc7919-ffdhe6144.pem \
dhparams/rfc7919-ffdhe8192.pem
|