View | Details | Raw Unified | Return to bug 234882 | Differences between
and this patch

Collapse All | Expand All

(-)Makefile (-2 / +3 lines)
Lines 2-8 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	strongswan
4
PORTNAME=	strongswan
5
PORTVERSION=	5.7.1
5
PORTVERSION=	5.7.2
6
CATEGORIES=	security
6
CATEGORIES=	security
7
MASTER_SITES=	http://download.strongswan.org/ \
7
MASTER_SITES=	http://download.strongswan.org/ \
8
		http://download2.strongswan.org/
8
		http://download2.strongswan.org/
Lines 15-22 LICENSE_FILE= ${WRKSRC}/LICENSE Link Here
15
15
16
USES=		cpe libtool:keepla pkgconfig tar:bzip2 ssl
16
USES=		cpe libtool:keepla pkgconfig tar:bzip2 ssl
17
USE_RC_SUBR=	strongswan
17
USE_RC_SUBR=	strongswan
18
GNU_CONFIGURE=	yes
19
USE_LDCONFIG=	${PREFIX}/lib/ipsec
18
USE_LDCONFIG=	${PREFIX}/lib/ipsec
19
20
GNU_CONFIGURE=	yes
20
INSTALL_TARGET=	install-strip
21
INSTALL_TARGET=	install-strip
21
22
22
CONFIGURE_ARGS=	--enable-kernel-pfkey \
23
CONFIGURE_ARGS=	--enable-kernel-pfkey \
(-)distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1538413648
1
TIMESTAMP = 1545909109
2
SHA256 (strongswan-5.7.1.tar.bz2) = 006f9c9126e2a2f4e7a874b5e1bd2abec1bbbb193c8b3b3a4c6ccd8c2d454bec
2
SHA256 (strongswan-5.7.2.tar.bz2) = 308e3ba76e2ce2da070e48fcebbe1fa923a27cc71e43bf63917e6f2a889ecc70
3
SIZE (strongswan-5.7.1.tar.bz2) = 4967533
3
SIZE (strongswan-5.7.2.tar.bz2) = 4997818
(-)files/patch-conf_Makefile.in (-2 / +2 lines)
Lines 1-6 Link Here
1
--- conf/Makefile.in.orig	2016-10-20 09:09:55 UTC
1
--- conf/Makefile.in.orig	2018-12-27 09:46:13 UTC
2
+++ conf/Makefile.in
2
+++ conf/Makefile.in
3
@@ -883,15 +883,15 @@ install-data-local: $(plugins_install_sr
3
@@ -899,15 +899,15 @@ install-data-local: $(plugins_install_src)
4
 	test -e "$(DESTDIR)${strongswanconfdir}" || $(INSTALL) -d "$(DESTDIR)$(strongswanconfdir)" || true
4
 	test -e "$(DESTDIR)${strongswanconfdir}" || $(INSTALL) -d "$(DESTDIR)$(strongswanconfdir)" || true
5
 	test -e "$(DESTDIR)${strongswanddir}" || $(INSTALL) -d "$(DESTDIR)$(strongswanddir)" || true
5
 	test -e "$(DESTDIR)${strongswanddir}" || $(INSTALL) -d "$(DESTDIR)$(strongswanddir)" || true
6
 	test -e "$(DESTDIR)${charonconfdir}" || $(INSTALL) -d "$(DESTDIR)$(charonconfdir)" || true
6
 	test -e "$(DESTDIR)${charonconfdir}" || $(INSTALL) -d "$(DESTDIR)$(charonconfdir)" || true
(-)files/patch-src_charon_charon.c (+11 lines)
Added Link Here
1
--- src/charon/charon.c.orig	2019-01-12 00:15:48 UTC
2
+++ src/charon/charon.c
3
@@ -377,7 +377,7 @@ int main(int argc, char *argv[])
4
 				status = 0;
5
 				goto deinit;
6
 			case 'v':
7
-				printf("Linux strongSwan %s\n", VERSION);
8
+				printf("FreeBSD strongSwan %s\n", VERSION);
9
 				status = 0;
10
 				goto deinit;
11
 			case 'l':
(-)files/patch-src_libcharon_plugins_smp_smp.c (-6 / +6 lines)
Lines 1-6 Link Here
1
--- src/libcharon/plugins/smp/smp.c.orig	2016-04-22 20:01:35 UTC
1
--- src/libcharon/plugins/smp/smp.c.orig	2018-10-23 17:03:28 UTC
2
+++ src/libcharon/plugins/smp/smp.c
2
+++ src/libcharon/plugins/smp/smp.c
3
@@ -737,7 +737,7 @@ METHOD(plugin_t, destroy, void,
3
@@ -740,7 +740,7 @@ METHOD(plugin_t, destroy, void,
4
  */
4
  */
5
 plugin_t *smp_plugin_create()
5
 plugin_t *smp_plugin_create()
6
 {
6
 {
Lines 9-23 Link Here
9
 	private_smp_t *this;
9
 	private_smp_t *this;
10
 	mode_t old;
10
 	mode_t old;
11
 
11
 
12
@@ -766,6 +766,11 @@ plugin_t *smp_plugin_create()
12
@@ -768,6 +768,11 @@ plugin_t *smp_plugin_create()
13
 		free(this);
13
 		return NULL;
14
 		return NULL;
14
 	}
15
 	}
15
 
16
+
16
+	strlcpy(unix_addr.sun_path, IPSEC_PIDDIR "/charon.xml",
17
+	strlcpy(unix_addr.sun_path, IPSEC_PIDDIR "/charon.xml",
17
+	    sizeof(unix_addr.sun_path));
18
+	    sizeof(unix_addr.sun_path));
18
+	unix_addr.sun_len = sizeof(unix_addr);
19
+	unix_addr.sun_len = sizeof(unix_addr);
19
+	unix_addr.sun_family = PF_LOCAL;
20
+	unix_addr.sun_family = PF_LOCAL;
20
+
21
 
21
 	unlink(unix_addr.sun_path);
22
 	unlink(unix_addr.sun_path);
22
 	old = umask(S_IRWXO);
23
 	old = umask(S_IRWXO);
23
 	if (bind(this->socket, (struct sockaddr *)&unix_addr, sizeof(unix_addr)) < 0)
(-)files/patch-src_libstrongswan_plugins_openssl_openssl__plugin.c (-2 / +2 lines)
Lines 1-6 Link Here
1
--- src/libstrongswan/plugins/openssl/openssl_plugin.c.orig	2016-10-08 12:17:09 UTC
1
--- src/libstrongswan/plugins/openssl/openssl_plugin.c.orig	2018-12-14 15:48:24 UTC
2
+++ src/libstrongswan/plugins/openssl/openssl_plugin.c
2
+++ src/libstrongswan/plugins/openssl/openssl_plugin.c
3
@@ -623,7 +623,7 @@ plugin_t *openssl_plugin_create()
3
@@ -810,7 +810,7 @@ plugin_t *openssl_plugin_create()
4
 		},
4
 		},
5
 	);
5
 	);
6
 
6
 
(-)files/patch-src_libstrongswan_utils_utils_byteorder.h (-1 / +1 lines)
Lines 1-4 Link Here
1
--- src/libstrongswan/utils/utils/byteorder.h.orig	2016-08-16 15:24:34 UTC
1
--- src/libstrongswan/utils/utils/byteorder.h.orig	2018-10-03 21:35:17 UTC
2
+++ src/libstrongswan/utils/utils/byteorder.h
2
+++ src/libstrongswan/utils/utils/byteorder.h
3
@@ -22,6 +22,10 @@
3
@@ -22,6 +22,10 @@
4
 #ifndef BYTEORDER_H_
4
 #ifndef BYTEORDER_H_
(-)files/patch-src_starter_Makefile.in (-2 / +2 lines)
Lines 1-6 Link Here
1
--- src/starter/Makefile.in.orig	2016-10-20 09:10:06 UTC
1
--- src/starter/Makefile.in.orig	2018-12-27 09:46:22 UTC
2
+++ src/starter/Makefile.in
2
+++ src/starter/Makefile.in
3
@@ -1003,8 +1003,8 @@ install-exec-local :
3
@@ -1018,8 +1018,8 @@ install-exec-local :
4
 		test -e "$(DESTDIR)${sysconfdir}/ipsec.d/crls" || $(INSTALL) -d "$(DESTDIR)$(sysconfdir)/ipsec.d/crls" || true
4
 		test -e "$(DESTDIR)${sysconfdir}/ipsec.d/crls" || $(INSTALL) -d "$(DESTDIR)$(sysconfdir)/ipsec.d/crls" || true
5
 		test -e "$(DESTDIR)${sysconfdir}/ipsec.d/reqs" || $(INSTALL) -d "$(DESTDIR)$(sysconfdir)/ipsec.d/reqs" || true
5
 		test -e "$(DESTDIR)${sysconfdir}/ipsec.d/reqs" || $(INSTALL) -d "$(DESTDIR)$(sysconfdir)/ipsec.d/reqs" || true
6
 		test -e "$(DESTDIR)${sysconfdir}/ipsec.d/private" || $(INSTALL) -d -m 750 "$(DESTDIR)$(sysconfdir)/ipsec.d/private" || true
6
 		test -e "$(DESTDIR)${sysconfdir}/ipsec.d/private" || $(INSTALL) -d -m 750 "$(DESTDIR)$(sysconfdir)/ipsec.d/private" || true
(-)pkg-plist (-217 / +217 lines)
Lines 1-20 Link Here
1
%%PKI%%bin/pki
2
%%TPM%%bin/tpm_extendpcr
3
@sample etc/ipsec.conf.sample
4
@sample etc/ipsec.secrets.sample
5
@sample %%ETCDIR%%.conf.sample
6
@sample %%ETCDIR%%.d/charon-logging.conf.sample
7
@sample %%ETCDIR%%.d/charon.conf.sample
8
@sample %%ETCDIR%%.d/charon/addrblock.conf.sample
9
@sample %%ETCDIR%%.d/charon/aes.conf.sample
10
%%SQL%%@sample %%ETCDIR%%.d/charon/attr-sql.conf.sample
11
@sample %%ETCDIR%%.d/charon/attr.conf.sample
12
@sample %%ETCDIR%%.d/charon/blowfish.conf.sample
13
@sample %%ETCDIR%%.d/charon/cmac.conf.sample
14
@sample %%ETCDIR%%.d/charon/constraints.conf.sample
15
@sample %%ETCDIR%%.d/charon/counters.conf.sample
16
%%CURL%%@sample %%ETCDIR%%.d/charon/curl.conf.sample
17
@sample %%ETCDIR%%.d/charon/curve25519.conf.sample
18
@sample %%ETCDIR%%.d/charon/des.conf.sample
19
@sample %%ETCDIR%%.d/charon/dnskey.conf.sample
20
%%EAPAKA3GPP2%%@sample %%ETCDIR%%.d/charon/eap-aka-3gpp2.conf.sample
21
%%EAPAKA3GPP2%%@sample %%ETCDIR%%.d/charon/eap-aka.conf.sample
22
%%EAPDYNAMIC%%@sample %%ETCDIR%%.d/charon/eap-dynamic.conf.sample
23
@sample %%ETCDIR%%.d/charon/eap-identity.conf.sample
24
@sample %%ETCDIR%%.d/charon/eap-md5.conf.sample
25
@sample %%ETCDIR%%.d/charon/eap-mschapv2.conf.sample
26
@sample %%ETCDIR%%.d/charon/eap-peap.conf.sample
27
%%EAPRADIUS%%@sample %%ETCDIR%%.d/charon/eap-radius.conf.sample
28
%%EAPSIMFILE%%@sample %%ETCDIR%%.d/charon/eap-sim-file.conf.sample
29
%%EAPSIMFILE%%@sample %%ETCDIR%%.d/charon/eap-sim.conf.sample
30
@sample %%ETCDIR%%.d/charon/eap-tls.conf.sample
31
@sample %%ETCDIR%%.d/charon/eap-ttls.conf.sample
32
@sample %%ETCDIR%%.d/charon/fips-prf.conf.sample
33
%%GCM%%@sample %%ETCDIR%%.d/charon/gcm.conf.sample
34
%%EAPAKA3GPP2%%@sample %%ETCDIR%%.d/charon/gmp.conf.sample
35
@sample %%ETCDIR%%.d/charon/hmac.conf.sample
36
%%IPSECKEY%%@sample %%ETCDIR%%.d/charon/ipseckey.conf.sample
37
%%KERNELLIBIPSEC%%@sample %%ETCDIR%%.d/charon/kernel-libipsec.conf.sample
38
@sample %%ETCDIR%%.d/charon/kernel-pfkey.conf.sample
39
@sample %%ETCDIR%%.d/charon/kernel-pfroute.conf.sample
40
%%LDAP%%@sample %%ETCDIR%%.d/charon/ldap.conf.sample
41
%%LOADTESTER%%@sample %%ETCDIR%%.d/charon/load-tester.conf.sample
42
@sample %%ETCDIR%%.d/charon/md4.conf.sample
43
@sample %%ETCDIR%%.d/charon/md5.conf.sample
44
%%EAPAKA3GPP2%%@sample %%ETCDIR%%.d/charon/mgf1.conf.sample
45
%%MYSQL%%@sample %%ETCDIR%%.d/charon/mysql.conf.sample
46
@sample %%ETCDIR%%.d/charon/nonce.conf.sample
47
@sample %%ETCDIR%%.d/charon/openssl.conf.sample
48
@sample %%ETCDIR%%.d/charon/pem.conf.sample
49
@sample %%ETCDIR%%.d/charon/pgp.conf.sample
50
@sample %%ETCDIR%%.d/charon/pkcs1.conf.sample
51
@sample %%ETCDIR%%.d/charon/pkcs12.conf.sample
52
@sample %%ETCDIR%%.d/charon/pkcs7.conf.sample
53
@sample %%ETCDIR%%.d/charon/pkcs8.conf.sample
54
@sample %%ETCDIR%%.d/charon/pubkey.conf.sample
55
@sample %%ETCDIR%%.d/charon/random.conf.sample
56
@sample %%ETCDIR%%.d/charon/rc2.conf.sample
57
@sample %%ETCDIR%%.d/charon/resolve.conf.sample
58
@sample %%ETCDIR%%.d/charon/revocation.conf.sample
59
@sample %%ETCDIR%%.d/charon/sha1.conf.sample
60
@sample %%ETCDIR%%.d/charon/sha2.conf.sample
61
%%SMP%%@sample %%ETCDIR%%.d/charon/smp.conf.sample
62
@sample %%ETCDIR%%.d/charon/socket-default.conf.sample
63
%%SQL%%@sample %%ETCDIR%%.d/charon/sql.conf.sample
64
%%SQLITE%%@sample %%ETCDIR%%.d/charon/sqlite.conf.sample
65
@sample %%ETCDIR%%.d/charon/sshkey.conf.sample
66
@sample %%ETCDIR%%.d/charon/stroke.conf.sample
67
%%TESTVECTOR%%@sample %%ETCDIR%%.d/charon/test-vectors.conf.sample
68
%%TPM%%@sample %%ETCDIR%%.d/charon/tpm.conf.sample
69
%%UNBOUND%%@sample %%ETCDIR%%.d/charon/unbound.conf.sample
70
%%UNITY%%@sample %%ETCDIR%%.d/charon/unity.conf.sample
71
@sample %%ETCDIR%%.d/charon/updown.conf.sample
72
%%VICI%%@sample %%ETCDIR%%.d/charon/vici.conf.sample
73
@sample %%ETCDIR%%.d/charon/whitelist.conf.sample
74
@sample %%ETCDIR%%.d/charon/x509.conf.sample
75
%%XAUTH%%@sample %%ETCDIR%%.d/charon/xauth-eap.conf.sample
76
%%XAUTHGEN%%@sample %%ETCDIR%%.d/charon/xauth-generic.conf.sample
77
@sample %%ETCDIR%%.d/charon/xcbc.conf.sample
78
%%PKI%%@sample %%ETCDIR%%.d/pki.conf.sample
79
%%SQL%%@sample %%ETCDIR%%.d/pool.conf.sample
80
%%SCEP%%@sample %%ETCDIR%%.d/scepclient.conf.sample
81
@sample %%ETCDIR%%.d/starter.conf.sample
82
%%SWANCTL%%@sample %%ETCDIR%%.d/swanctl.conf.sample
83
%%SWANCTL%%@sample etc/swanctl/swanctl.conf.sample
84
%%VICI%%include/libvici.h
1
lib/ipsec/libcharon.la
85
lib/ipsec/libcharon.la
2
lib/ipsec/libcharon.so
86
lib/ipsec/libcharon.so
3
lib/ipsec/libcharon.so.0
87
lib/ipsec/libcharon.so.0
4
%%TPM%%lib/ipsec/libtpmtss.la
88
lib/ipsec/libcharon.so.0.0.0
5
%%TPM%%lib/ipsec/libtpmtss.so
89
%%KERNELLIBIPSEC%%lib/ipsec/libipsec.la
6
%%TPM%%lib/ipsec/libtpmtss.so.0
90
%%KERNELLIBIPSEC%%lib/ipsec/libipsec.so
7
%%TPM%%lib/ipsec/libtpmtss.so.0.0.0
91
%%KERNELLIBIPSEC%%lib/ipsec/libipsec.so.0
92
%%KERNELLIBIPSEC%%lib/ipsec/libipsec.so.0.0.0
93
%%EAPRADIUS%%lib/ipsec/libradius.la
94
%%EAPRADIUS%%lib/ipsec/libradius.so
95
%%EAPRADIUS%%lib/ipsec/libradius.so.0
96
%%EAPRADIUS%%lib/ipsec/libradius.so.0.0.0
97
%%SIMAKA%%lib/ipsec/libsimaka.la
98
%%SIMAKA%%lib/ipsec/libsimaka.so
99
%%SIMAKA%%lib/ipsec/libsimaka.so.0
100
%%SIMAKA%%lib/ipsec/libsimaka.so.0.0.0
8
lib/ipsec/libstrongswan.la
101
lib/ipsec/libstrongswan.la
9
lib/ipsec/libstrongswan.so
102
lib/ipsec/libstrongswan.so
10
lib/ipsec/libstrongswan.so.0
103
lib/ipsec/libstrongswan.so.0
104
lib/ipsec/libstrongswan.so.0.0.0
11
lib/ipsec/libtls.la
105
lib/ipsec/libtls.la
12
lib/ipsec/libtls.so
106
lib/ipsec/libtls.so
13
lib/ipsec/libtls.so.0
107
lib/ipsec/libtls.so.0
108
lib/ipsec/libtls.so.0.0.0
109
%%TPM%%lib/ipsec/libtpmtss.la
110
%%TPM%%lib/ipsec/libtpmtss.so
111
%%TPM%%lib/ipsec/libtpmtss.so.0
112
%%TPM%%lib/ipsec/libtpmtss.so.0.0.0
113
%%VICI%%lib/ipsec/libvici.la
114
%%VICI%%lib/ipsec/libvici.so
115
%%VICI%%lib/ipsec/libvici.so.0
116
%%VICI%%lib/ipsec/libvici.so.0.0.0
14
lib/ipsec/plugins/libstrongswan-addrblock.la
117
lib/ipsec/plugins/libstrongswan-addrblock.la
15
lib/ipsec/plugins/libstrongswan-addrblock.so
118
lib/ipsec/plugins/libstrongswan-addrblock.so
16
lib/ipsec/plugins/libstrongswan-aes.la
119
lib/ipsec/plugins/libstrongswan-aes.la
17
lib/ipsec/plugins/libstrongswan-aes.so
120
lib/ipsec/plugins/libstrongswan-aes.so
121
%%SQL%%lib/ipsec/plugins/libstrongswan-attr-sql.la
122
%%SQL%%lib/ipsec/plugins/libstrongswan-attr-sql.so
18
lib/ipsec/plugins/libstrongswan-attr.la
123
lib/ipsec/plugins/libstrongswan-attr.la
19
lib/ipsec/plugins/libstrongswan-attr.so
124
lib/ipsec/plugins/libstrongswan-attr.so
20
lib/ipsec/plugins/libstrongswan-blowfish.la
125
lib/ipsec/plugins/libstrongswan-blowfish.la
Lines 25-36 lib/ipsec/plugins/libstrongswan-constraints.la Link Here
25
lib/ipsec/plugins/libstrongswan-constraints.so
130
lib/ipsec/plugins/libstrongswan-constraints.so
26
lib/ipsec/plugins/libstrongswan-counters.la
131
lib/ipsec/plugins/libstrongswan-counters.la
27
lib/ipsec/plugins/libstrongswan-counters.so
132
lib/ipsec/plugins/libstrongswan-counters.so
133
%%CURL%%lib/ipsec/plugins/libstrongswan-curl.la
134
%%CURL%%lib/ipsec/plugins/libstrongswan-curl.so
28
lib/ipsec/plugins/libstrongswan-curve25519.la
135
lib/ipsec/plugins/libstrongswan-curve25519.la
29
lib/ipsec/plugins/libstrongswan-curve25519.so
136
lib/ipsec/plugins/libstrongswan-curve25519.so
30
lib/ipsec/plugins/libstrongswan-des.la
137
lib/ipsec/plugins/libstrongswan-des.la
31
lib/ipsec/plugins/libstrongswan-des.so
138
lib/ipsec/plugins/libstrongswan-des.so
32
lib/ipsec/plugins/libstrongswan-dnskey.la
139
lib/ipsec/plugins/libstrongswan-dnskey.la
33
lib/ipsec/plugins/libstrongswan-dnskey.so
140
lib/ipsec/plugins/libstrongswan-dnskey.so
141
%%EAPAKA3GPP2%%lib/ipsec/plugins/libstrongswan-eap-aka-3gpp2.la
142
%%EAPAKA3GPP2%%lib/ipsec/plugins/libstrongswan-eap-aka-3gpp2.so
143
%%EAPAKA3GPP2%%lib/ipsec/plugins/libstrongswan-eap-aka.la
144
%%EAPAKA3GPP2%%lib/ipsec/plugins/libstrongswan-eap-aka.so
145
%%EAPDYNAMIC%%lib/ipsec/plugins/libstrongswan-eap-dynamic.la
146
%%EAPDYNAMIC%%lib/ipsec/plugins/libstrongswan-eap-dynamic.so
34
lib/ipsec/plugins/libstrongswan-eap-identity.la
147
lib/ipsec/plugins/libstrongswan-eap-identity.la
35
lib/ipsec/plugins/libstrongswan-eap-identity.so
148
lib/ipsec/plugins/libstrongswan-eap-identity.so
36
lib/ipsec/plugins/libstrongswan-eap-md5.la
149
lib/ipsec/plugins/libstrongswan-eap-md5.la
Lines 39-60 lib/ipsec/plugins/libstrongswan-eap-mschapv2.la Link Here
39
lib/ipsec/plugins/libstrongswan-eap-mschapv2.so
152
lib/ipsec/plugins/libstrongswan-eap-mschapv2.so
40
lib/ipsec/plugins/libstrongswan-eap-peap.la
153
lib/ipsec/plugins/libstrongswan-eap-peap.la
41
lib/ipsec/plugins/libstrongswan-eap-peap.so
154
lib/ipsec/plugins/libstrongswan-eap-peap.so
155
%%EAPRADIUS%%lib/ipsec/plugins/libstrongswan-eap-radius.la
156
%%EAPRADIUS%%lib/ipsec/plugins/libstrongswan-eap-radius.so
157
%%EAPSIMFILE%%lib/ipsec/plugins/libstrongswan-eap-sim-file.la
158
%%EAPSIMFILE%%lib/ipsec/plugins/libstrongswan-eap-sim-file.so
159
%%EAPSIMFILE%%lib/ipsec/plugins/libstrongswan-eap-sim.la
160
%%EAPSIMFILE%%lib/ipsec/plugins/libstrongswan-eap-sim.so
42
lib/ipsec/plugins/libstrongswan-eap-tls.la
161
lib/ipsec/plugins/libstrongswan-eap-tls.la
43
lib/ipsec/plugins/libstrongswan-eap-tls.so
162
lib/ipsec/plugins/libstrongswan-eap-tls.so
44
lib/ipsec/plugins/libstrongswan-eap-ttls.la
163
lib/ipsec/plugins/libstrongswan-eap-ttls.la
45
lib/ipsec/plugins/libstrongswan-eap-ttls.so
164
lib/ipsec/plugins/libstrongswan-eap-ttls.so
46
lib/ipsec/plugins/libstrongswan-fips-prf.la
165
lib/ipsec/plugins/libstrongswan-fips-prf.la
47
lib/ipsec/plugins/libstrongswan-fips-prf.so
166
lib/ipsec/plugins/libstrongswan-fips-prf.so
167
%%GCM%%lib/ipsec/plugins/libstrongswan-gcm.la
168
%%GCM%%lib/ipsec/plugins/libstrongswan-gcm.so
169
%%EAPAKA3GPP2%%lib/ipsec/plugins/libstrongswan-gmp.la
170
%%EAPAKA3GPP2%%lib/ipsec/plugins/libstrongswan-gmp.so
48
lib/ipsec/plugins/libstrongswan-hmac.la
171
lib/ipsec/plugins/libstrongswan-hmac.la
49
lib/ipsec/plugins/libstrongswan-hmac.so
172
lib/ipsec/plugins/libstrongswan-hmac.so
173
%%IPSECKEY%%lib/ipsec/plugins/libstrongswan-ipseckey.la
174
%%IPSECKEY%%lib/ipsec/plugins/libstrongswan-ipseckey.so
175
%%KERNELLIBIPSEC%%lib/ipsec/plugins/libstrongswan-kernel-libipsec.la
176
%%KERNELLIBIPSEC%%lib/ipsec/plugins/libstrongswan-kernel-libipsec.so
50
lib/ipsec/plugins/libstrongswan-kernel-pfkey.la
177
lib/ipsec/plugins/libstrongswan-kernel-pfkey.la
51
lib/ipsec/plugins/libstrongswan-kernel-pfkey.so
178
lib/ipsec/plugins/libstrongswan-kernel-pfkey.so
52
lib/ipsec/plugins/libstrongswan-kernel-pfroute.la
179
lib/ipsec/plugins/libstrongswan-kernel-pfroute.la
53
lib/ipsec/plugins/libstrongswan-kernel-pfroute.so
180
lib/ipsec/plugins/libstrongswan-kernel-pfroute.so
181
%%LDAP%%lib/ipsec/plugins/libstrongswan-ldap.la
182
%%LDAP%%lib/ipsec/plugins/libstrongswan-ldap.so
183
%%LOADTESTER%%lib/ipsec/plugins/libstrongswan-load-tester.la
184
%%LOADTESTER%%lib/ipsec/plugins/libstrongswan-load-tester.so
54
lib/ipsec/plugins/libstrongswan-md4.la
185
lib/ipsec/plugins/libstrongswan-md4.la
55
lib/ipsec/plugins/libstrongswan-md4.so
186
lib/ipsec/plugins/libstrongswan-md4.so
56
lib/ipsec/plugins/libstrongswan-md5.la
187
lib/ipsec/plugins/libstrongswan-md5.la
57
lib/ipsec/plugins/libstrongswan-md5.so
188
lib/ipsec/plugins/libstrongswan-md5.so
189
%%EAPAKA3GPP2%%lib/ipsec/plugins/libstrongswan-mgf1.la
190
%%EAPAKA3GPP2%%lib/ipsec/plugins/libstrongswan-mgf1.so
191
%%MYSQL%%lib/ipsec/plugins/libstrongswan-mysql.la
192
%%MYSQL%%lib/ipsec/plugins/libstrongswan-mysql.so
58
lib/ipsec/plugins/libstrongswan-nonce.la
193
lib/ipsec/plugins/libstrongswan-nonce.la
59
lib/ipsec/plugins/libstrongswan-nonce.so
194
lib/ipsec/plugins/libstrongswan-nonce.so
60
lib/ipsec/plugins/libstrongswan-openssl.la
195
lib/ipsec/plugins/libstrongswan-openssl.la
Lines 65-76 lib/ipsec/plugins/libstrongswan-pgp.la Link Here
65
lib/ipsec/plugins/libstrongswan-pgp.so
200
lib/ipsec/plugins/libstrongswan-pgp.so
66
lib/ipsec/plugins/libstrongswan-pkcs1.la
201
lib/ipsec/plugins/libstrongswan-pkcs1.la
67
lib/ipsec/plugins/libstrongswan-pkcs1.so
202
lib/ipsec/plugins/libstrongswan-pkcs1.so
203
lib/ipsec/plugins/libstrongswan-pkcs12.la
204
lib/ipsec/plugins/libstrongswan-pkcs12.so
68
lib/ipsec/plugins/libstrongswan-pkcs7.la
205
lib/ipsec/plugins/libstrongswan-pkcs7.la
69
lib/ipsec/plugins/libstrongswan-pkcs7.so
206
lib/ipsec/plugins/libstrongswan-pkcs7.so
70
lib/ipsec/plugins/libstrongswan-pkcs8.la
207
lib/ipsec/plugins/libstrongswan-pkcs8.la
71
lib/ipsec/plugins/libstrongswan-pkcs8.so
208
lib/ipsec/plugins/libstrongswan-pkcs8.so
72
lib/ipsec/plugins/libstrongswan-pkcs12.la
73
lib/ipsec/plugins/libstrongswan-pkcs12.so
74
lib/ipsec/plugins/libstrongswan-pubkey.la
209
lib/ipsec/plugins/libstrongswan-pubkey.la
75
lib/ipsec/plugins/libstrongswan-pubkey.so
210
lib/ipsec/plugins/libstrongswan-pubkey.so
76
lib/ipsec/plugins/libstrongswan-random.la
211
lib/ipsec/plugins/libstrongswan-random.la
Lines 85-134 lib/ipsec/plugins/libstrongswan-sha1.la Link Here
85
lib/ipsec/plugins/libstrongswan-sha1.so
220
lib/ipsec/plugins/libstrongswan-sha1.so
86
lib/ipsec/plugins/libstrongswan-sha2.la
221
lib/ipsec/plugins/libstrongswan-sha2.la
87
lib/ipsec/plugins/libstrongswan-sha2.so
222
lib/ipsec/plugins/libstrongswan-sha2.so
223
%%SMP%%lib/ipsec/plugins/libstrongswan-smp.la
224
%%SMP%%lib/ipsec/plugins/libstrongswan-smp.so
88
lib/ipsec/plugins/libstrongswan-socket-default.la
225
lib/ipsec/plugins/libstrongswan-socket-default.la
89
lib/ipsec/plugins/libstrongswan-socket-default.so
226
lib/ipsec/plugins/libstrongswan-socket-default.so
227
%%SQL%%lib/ipsec/plugins/libstrongswan-sql.la
228
%%SQL%%lib/ipsec/plugins/libstrongswan-sql.so
229
%%SQLITE%%lib/ipsec/plugins/libstrongswan-sqlite.la
230
%%SQLITE%%lib/ipsec/plugins/libstrongswan-sqlite.so
90
lib/ipsec/plugins/libstrongswan-sshkey.la
231
lib/ipsec/plugins/libstrongswan-sshkey.la
91
lib/ipsec/plugins/libstrongswan-sshkey.so
232
lib/ipsec/plugins/libstrongswan-sshkey.so
92
lib/ipsec/plugins/libstrongswan-stroke.la
233
lib/ipsec/plugins/libstrongswan-stroke.la
93
lib/ipsec/plugins/libstrongswan-stroke.so
234
lib/ipsec/plugins/libstrongswan-stroke.so
235
%%TESTVECTOR%%lib/ipsec/plugins/libstrongswan-test-vectors.la
236
%%TESTVECTOR%%lib/ipsec/plugins/libstrongswan-test-vectors.so
237
%%TPM%%lib/ipsec/plugins/libstrongswan-tpm.la
238
%%TPM%%lib/ipsec/plugins/libstrongswan-tpm.so
239
%%UNBOUND%%lib/ipsec/plugins/libstrongswan-unbound.la
240
%%UNBOUND%%lib/ipsec/plugins/libstrongswan-unbound.so
241
%%UNITY%%lib/ipsec/plugins/libstrongswan-unity.la
242
%%UNITY%%lib/ipsec/plugins/libstrongswan-unity.so
94
lib/ipsec/plugins/libstrongswan-updown.la
243
lib/ipsec/plugins/libstrongswan-updown.la
95
lib/ipsec/plugins/libstrongswan-updown.so
244
lib/ipsec/plugins/libstrongswan-updown.so
245
%%VICI%%lib/ipsec/plugins/libstrongswan-vici.la
246
%%VICI%%lib/ipsec/plugins/libstrongswan-vici.so
96
lib/ipsec/plugins/libstrongswan-whitelist.la
247
lib/ipsec/plugins/libstrongswan-whitelist.la
97
lib/ipsec/plugins/libstrongswan-whitelist.so
248
lib/ipsec/plugins/libstrongswan-whitelist.so
98
lib/ipsec/plugins/libstrongswan-x509.la
249
lib/ipsec/plugins/libstrongswan-x509.la
99
lib/ipsec/plugins/libstrongswan-x509.so
250
lib/ipsec/plugins/libstrongswan-x509.so
251
%%XAUTH%%lib/ipsec/plugins/libstrongswan-xauth-eap.la
252
%%XAUTH%%lib/ipsec/plugins/libstrongswan-xauth-eap.so
253
%%IKEV1%%lib/ipsec/plugins/libstrongswan-xauth-generic.la
254
%%IKEV1%%lib/ipsec/plugins/libstrongswan-xauth-generic.so
100
lib/ipsec/plugins/libstrongswan-xcbc.la
255
lib/ipsec/plugins/libstrongswan-xcbc.la
101
lib/ipsec/plugins/libstrongswan-xcbc.so
256
lib/ipsec/plugins/libstrongswan-xcbc.so
102
libexec/ipsec/_copyright
257
libexec/ipsec/_copyright
103
libexec/ipsec/_updown
258
libexec/ipsec/_updown
104
libexec/ipsec/charon
259
libexec/ipsec/charon
260
%%LOADTESTER%%libexec/ipsec/load-tester
261
%%SQL%%libexec/ipsec/pool
262
%%SCEP%%libexec/ipsec/scepclient
105
libexec/ipsec/starter
263
libexec/ipsec/starter
106
libexec/ipsec/stroke
264
libexec/ipsec/stroke
107
libexec/ipsec/whitelist
265
libexec/ipsec/whitelist
108
sbin/ipsec
266
%%PKI%%man/man1/pki---acert.1.gz
267
%%PKI%%man/man1/pki---dn.1.gz
268
%%PKI%%man/man1/pki---gen.1.gz
269
%%PKI%%man/man1/pki---issue.1.gz
270
%%PKI%%man/man1/pki---keyid.1.gz
271
%%PKI%%man/man1/pki---pkcs7.1.gz
272
%%PKI%%man/man1/pki---print.1.gz
273
%%PKI%%man/man1/pki---pub.1.gz
274
%%PKI%%man/man1/pki---req.1.gz
275
%%PKI%%man/man1/pki---self.1.gz
276
%%PKI%%man/man1/pki---signcrl.1.gz
277
%%PKI%%man/man1/pki---verify.1.gz
278
%%PKI%%man/man1/pki.1.gz
279
man/man5/ipsec.conf.5.gz
280
man/man5/ipsec.secrets.5.gz
281
man/man5/strongswan.conf.5.gz
282
%%SWANCTL%%man/man5/swanctl.conf.5.gz
283
man/man8/charon-cmd.8.gz
284
man/man8/ipsec.8.gz
285
%%SCEP%%man/man8/scepclient.8.gz
286
%%SWANCTL%%man/man8/swanctl.8.gz
109
sbin/charon-cmd
287
sbin/charon-cmd
288
sbin/ipsec
289
%%SWANCTL%%sbin/swanctl
110
%%DATADIR%%/templates/config/plugins/addrblock.conf
290
%%DATADIR%%/templates/config/plugins/addrblock.conf
111
%%DATADIR%%/templates/config/plugins/aes.conf
291
%%DATADIR%%/templates/config/plugins/aes.conf
292
%%SQL%%%%DATADIR%%/templates/config/plugins/attr-sql.conf
112
%%DATADIR%%/templates/config/plugins/attr.conf
293
%%DATADIR%%/templates/config/plugins/attr.conf
113
%%DATADIR%%/templates/config/plugins/blowfish.conf
294
%%DATADIR%%/templates/config/plugins/blowfish.conf
114
%%DATADIR%%/templates/config/plugins/cmac.conf
295
%%DATADIR%%/templates/config/plugins/cmac.conf
115
%%DATADIR%%/templates/config/plugins/constraints.conf
296
%%DATADIR%%/templates/config/plugins/constraints.conf
116
%%DATADIR%%/templates/config/plugins/counters.conf
297
%%DATADIR%%/templates/config/plugins/counters.conf
298
%%CURL%%%%DATADIR%%/templates/config/plugins/curl.conf
117
%%DATADIR%%/templates/config/plugins/curve25519.conf
299
%%DATADIR%%/templates/config/plugins/curve25519.conf
118
%%DATADIR%%/templates/config/plugins/des.conf
300
%%DATADIR%%/templates/config/plugins/des.conf
119
%%DATADIR%%/templates/config/plugins/dnskey.conf
301
%%DATADIR%%/templates/config/plugins/dnskey.conf
302
%%EAPAKA3GPP2%%%%DATADIR%%/templates/config/plugins/eap-aka-3gpp2.conf
303
%%EAPAKA3GPP2%%%%DATADIR%%/templates/config/plugins/eap-aka.conf
304
%%EAPDYNAMIC%%%%DATADIR%%/templates/config/plugins/eap-dynamic.conf
120
%%DATADIR%%/templates/config/plugins/eap-identity.conf
305
%%DATADIR%%/templates/config/plugins/eap-identity.conf
121
%%DATADIR%%/templates/config/plugins/eap-md5.conf
306
%%DATADIR%%/templates/config/plugins/eap-md5.conf
122
%%DATADIR%%/templates/config/plugins/eap-mschapv2.conf
307
%%DATADIR%%/templates/config/plugins/eap-mschapv2.conf
123
%%DATADIR%%/templates/config/plugins/eap-peap.conf
308
%%DATADIR%%/templates/config/plugins/eap-peap.conf
309
%%EAPRADIUS%%%%DATADIR%%/templates/config/plugins/eap-radius.conf
310
%%EAPSIMFILE%%%%DATADIR%%/templates/config/plugins/eap-sim-file.conf
311
%%EAPSIMFILE%%%%DATADIR%%/templates/config/plugins/eap-sim.conf
124
%%DATADIR%%/templates/config/plugins/eap-tls.conf
312
%%DATADIR%%/templates/config/plugins/eap-tls.conf
125
%%DATADIR%%/templates/config/plugins/eap-ttls.conf
313
%%DATADIR%%/templates/config/plugins/eap-ttls.conf
126
%%DATADIR%%/templates/config/plugins/fips-prf.conf
314
%%DATADIR%%/templates/config/plugins/fips-prf.conf
315
%%GCM%%%%DATADIR%%/templates/config/plugins/gcm.conf
316
%%EAPAKA3GPP2%%%%DATADIR%%/templates/config/plugins/gmp.conf
127
%%DATADIR%%/templates/config/plugins/hmac.conf
317
%%DATADIR%%/templates/config/plugins/hmac.conf
318
%%IPSECKEY%%%%DATADIR%%/templates/config/plugins/ipseckey.conf
319
%%KERNELLIBIPSEC%%%%DATADIR%%/templates/config/plugins/kernel-libipsec.conf
128
%%DATADIR%%/templates/config/plugins/kernel-pfkey.conf
320
%%DATADIR%%/templates/config/plugins/kernel-pfkey.conf
129
%%DATADIR%%/templates/config/plugins/kernel-pfroute.conf
321
%%DATADIR%%/templates/config/plugins/kernel-pfroute.conf
322
%%LDAP%%%%DATADIR%%/templates/config/plugins/ldap.conf
323
%%LOADTESTER%%%%DATADIR%%/templates/config/plugins/load-tester.conf
130
%%DATADIR%%/templates/config/plugins/md4.conf
324
%%DATADIR%%/templates/config/plugins/md4.conf
131
%%DATADIR%%/templates/config/plugins/md5.conf
325
%%DATADIR%%/templates/config/plugins/md5.conf
326
%%EAPAKA3GPP2%%%%DATADIR%%/templates/config/plugins/mgf1.conf
327
%%MYSQL%%%%DATADIR%%/templates/config/plugins/mysql.conf
132
%%DATADIR%%/templates/config/plugins/nonce.conf
328
%%DATADIR%%/templates/config/plugins/nonce.conf
133
%%DATADIR%%/templates/config/plugins/openssl.conf
329
%%DATADIR%%/templates/config/plugins/openssl.conf
134
%%DATADIR%%/templates/config/plugins/pem.conf
330
%%DATADIR%%/templates/config/plugins/pem.conf
Lines 144-372 sbin/charon-cmd Link Here
144
%%DATADIR%%/templates/config/plugins/revocation.conf
340
%%DATADIR%%/templates/config/plugins/revocation.conf
145
%%DATADIR%%/templates/config/plugins/sha1.conf
341
%%DATADIR%%/templates/config/plugins/sha1.conf
146
%%DATADIR%%/templates/config/plugins/sha2.conf
342
%%DATADIR%%/templates/config/plugins/sha2.conf
343
%%SMP%%%%DATADIR%%/templates/config/plugins/smp.conf
147
%%DATADIR%%/templates/config/plugins/socket-default.conf
344
%%DATADIR%%/templates/config/plugins/socket-default.conf
345
%%SQL%%%%DATADIR%%/templates/config/plugins/sql.conf
346
%%SQLITE%%%%DATADIR%%/templates/config/plugins/sqlite.conf
148
%%DATADIR%%/templates/config/plugins/sshkey.conf
347
%%DATADIR%%/templates/config/plugins/sshkey.conf
149
%%DATADIR%%/templates/config/plugins/stroke.conf
348
%%DATADIR%%/templates/config/plugins/stroke.conf
349
%%TESTVECTOR%%%%DATADIR%%/templates/config/plugins/test-vectors.conf
350
%%TPM%%%%DATADIR%%/templates/config/plugins/tpm.conf
351
%%UNBOUND%%%%DATADIR%%/templates/config/plugins/unbound.conf
352
%%UNITY%%%%DATADIR%%/templates/config/plugins/unity.conf
150
%%DATADIR%%/templates/config/plugins/updown.conf
353
%%DATADIR%%/templates/config/plugins/updown.conf
354
%%VICI%%%%DATADIR%%/templates/config/plugins/vici.conf
151
%%DATADIR%%/templates/config/plugins/whitelist.conf
355
%%DATADIR%%/templates/config/plugins/whitelist.conf
152
%%DATADIR%%/templates/config/plugins/x509.conf
356
%%DATADIR%%/templates/config/plugins/x509.conf
357
%%XAUTH%%%%DATADIR%%/templates/config/plugins/xauth-eap.conf
358
%%XAUTHGEN%%%%DATADIR%%/templates/config/plugins/xauth-generic.conf
153
%%DATADIR%%/templates/config/plugins/xcbc.conf
359
%%DATADIR%%/templates/config/plugins/xcbc.conf
154
%%DATADIR%%/templates/config/strongswan.conf
360
%%DATADIR%%/templates/config/strongswan.conf
155
%%DATADIR%%/templates/config/strongswan.d/charon-logging.conf
361
%%DATADIR%%/templates/config/strongswan.d/charon-logging.conf
156
%%DATADIR%%/templates/config/strongswan.d/charon.conf
362
%%DATADIR%%/templates/config/strongswan.d/charon.conf
157
%%DATADIR%%/templates/config/strongswan.d/starter.conf
158
man/man5/strongswan.conf.5.gz
159
man/man5/ipsec.conf.5.gz
160
man/man5/ipsec.secrets.5.gz
161
man/man8/ipsec.8.gz
162
man/man8/charon-cmd.8.gz
163
%%EAPRADIUS%%lib/ipsec/libradius.la
164
%%EAPRADIUS%%lib/ipsec/libradius.so
165
%%EAPRADIUS%%lib/ipsec/libradius.so.0
166
%%EAPRADIUS%%lib/ipsec/libradius.so.0.0.0
167
%%SIMAKA%%lib/ipsec/libsimaka.la
168
%%SIMAKA%%lib/ipsec/libsimaka.so
169
%%SIMAKA%%lib/ipsec/libsimaka.so.0
170
%%SIMAKA%%lib/ipsec/libsimaka.so.0.0.0
171
%%EAPAKA3GPP2%%lib/ipsec/plugins/libstrongswan-eap-aka.la
172
%%EAPAKA3GPP2%%lib/ipsec/plugins/libstrongswan-eap-aka.so
173
%%EAPAKA3GPP2%%lib/ipsec/plugins/libstrongswan-eap-aka-3gpp2.la
174
%%EAPAKA3GPP2%%lib/ipsec/plugins/libstrongswan-eap-aka-3gpp2.so
175
%%EAPAKA3GPP2%%lib/ipsec/plugins/libstrongswan-gmp.la
176
%%EAPAKA3GPP2%%lib/ipsec/plugins/libstrongswan-gmp.so
177
%%EAPAKA3GPP2%%lib/ipsec/plugins/libstrongswan-mgf1.la
178
%%EAPAKA3GPP2%%lib/ipsec/plugins/libstrongswan-mgf1.so
179
%%EAPAKA3GPP2%%%%DATADIR%%/templates/config/plugins/eap-aka-3gpp2.conf
180
%%EAPAKA3GPP2%%@sample %%ETCDIR%%.d/charon/eap-aka-3gpp2.conf.sample
181
%%EAPAKA3GPP2%%%%DATADIR%%/templates/config/plugins/eap-aka.conf
182
%%EAPAKA3GPP2%%@sample %%ETCDIR%%.d/charon/eap-aka.conf.sample
183
%%EAPAKA3GPP2%%%%DATADIR%%/templates/config/plugins/gmp.conf
184
%%EAPAKA3GPP2%%@sample %%ETCDIR%%.d/charon/gmp.conf.sample
185
%%EAPAKA3GPP2%%%%DATADIR%%/templates/config/plugins/mgf1.conf
186
%%EAPAKA3GPP2%%@sample %%ETCDIR%%.d/charon/mgf1.conf.sample
187
%%EAPDYNAMIC%%lib/ipsec/plugins/libstrongswan-eap-dynamic.la
188
%%EAPDYNAMIC%%lib/ipsec/plugins/libstrongswan-eap-dynamic.so
189
%%EAPDYNAMIC%%%%DATADIR%%/templates/config/plugins/eap-dynamic.conf
190
%%EAPDYNAMIC%%@sample %%ETCDIR%%.d/charon/eap-dynamic.conf.sample
191
%%EAPRADIUS%%lib/ipsec/plugins/libstrongswan-eap-radius.la
192
%%EAPRADIUS%%lib/ipsec/plugins/libstrongswan-eap-radius.so
193
%%EAPRADIUS%%%%DATADIR%%/templates/config/plugins/eap-radius.conf
194
%%EAPRADIUS%%@sample %%ETCDIR%%.d/charon/eap-radius.conf.sample
195
%%EAPSIMFILE%%lib/ipsec/plugins/libstrongswan-eap-sim.la
196
%%EAPSIMFILE%%lib/ipsec/plugins/libstrongswan-eap-sim.so
197
%%EAPSIMFILE%%lib/ipsec/plugins/libstrongswan-eap-sim-file.la
198
%%EAPSIMFILE%%lib/ipsec/plugins/libstrongswan-eap-sim-file.so
199
%%EAPSIMFILE%%%%DATADIR%%/templates/config/plugins/eap-sim-file.conf
200
%%EAPSIMFILE%%@sample %%ETCDIR%%.d/charon/eap-sim-file.conf.sample
201
%%EAPSIMFILE%%%%DATADIR%%/templates/config/plugins/eap-sim.conf
202
%%EAPSIMFILE%%@sample %%ETCDIR%%.d/charon/eap-sim.conf.sample
203
%%CURL%%lib/ipsec/plugins/libstrongswan-curl.la
204
%%CURL%%lib/ipsec/plugins/libstrongswan-curl.so
205
%%CURL%%%%DATADIR%%/templates/config/plugins/curl.conf
206
%%CURL%%@sample %%ETCDIR%%.d/charon/curl.conf.sample
207
%%GCM%%%%DATADIR%%/templates/config/plugins/gcm.conf
208
%%GCM%%lib/ipsec/plugins/libstrongswan-gcm.la
209
%%GCM%%lib/ipsec/plugins/libstrongswan-gcm.so
210
%%GCM%%@sample %%ETCDIR%%.d/charon/gcm.conf.sample
211
%%IKEV1%%lib/ipsec/plugins/libstrongswan-xauth-generic.la
212
%%IKEV1%%lib/ipsec/plugins/libstrongswan-xauth-generic.so
213
%%IPSECKEY%%lib/ipsec/plugins/libstrongswan-ipseckey.la
214
%%IPSECKEY%%lib/ipsec/plugins/libstrongswan-ipseckey.so
215
%%IPSECKEY%%%%DATADIR%%/templates/config/plugins/ipseckey.conf
216
%%IPSECKEY%%@sample %%ETCDIR%%.d/charon/ipseckey.conf.sample
217
%%KERNELLIBIPSEC%%lib/ipsec/libipsec.la
218
%%KERNELLIBIPSEC%%lib/ipsec/libipsec.so
219
%%KERNELLIBIPSEC%%lib/ipsec/libipsec.so.0
220
%%KERNELLIBIPSEC%%lib/ipsec/libipsec.so.0.0.0
221
%%KERNELLIBIPSEC%%lib/ipsec/plugins/libstrongswan-kernel-libipsec.la
222
%%KERNELLIBIPSEC%%lib/ipsec/plugins/libstrongswan-kernel-libipsec.so
223
%%KERNELLIBIPSEC%%%%DATADIR%%/templates/config/plugins/kernel-libipsec.conf
224
%%KERNELLIBIPSEC%%@sample %%ETCDIR%%.d/charon/kernel-libipsec.conf.sample
225
%%LOADTESTER%%lib/ipsec/plugins/libstrongswan-load-tester.la
226
%%LOADTESTER%%lib/ipsec/plugins/libstrongswan-load-tester.so
227
%%LOADTESTER%%libexec/ipsec/load-tester
228
%%LOADTESTER%%%%DATADIR%%/templates/config/plugins/load-tester.conf
229
%%LOADTESTER%%@sample %%ETCDIR%%.d/charon/load-tester.conf.sample
230
%%LDAP%%lib/ipsec/plugins/libstrongswan-ldap.la
231
%%LDAP%%lib/ipsec/plugins/libstrongswan-ldap.so
232
%%LDAP%%%%DATADIR%%/templates/config/plugins/ldap.conf
233
%%LDAP%%@sample %%ETCDIR%%.d/charon/ldap.conf.sample
234
%%MYSQL%%lib/ipsec/plugins/libstrongswan-mysql.la
235
%%MYSQL%%lib/ipsec/plugins/libstrongswan-mysql.so
236
%%MYSQL%%%%DATADIR%%/templates/config/plugins/mysql.conf
237
%%MYSQL%%@sample %%ETCDIR%%.d/charon/mysql.conf.sample
238
%%SQL%%lib/ipsec/plugins/libstrongswan-attr-sql.la
239
%%SQL%%lib/ipsec/plugins/libstrongswan-attr-sql.so
240
%%SQL%%%%DATADIR%%/templates/config/plugins/attr-sql.conf
241
%%SQL%%@sample %%ETCDIR%%.d/charon/attr-sql.conf.sample
242
%%SQL%%lib/ipsec/plugins/libstrongswan-sql.la
243
%%SQL%%lib/ipsec/plugins/libstrongswan-sql.so
244
%%SQL%%%%DATADIR%%/templates/config/plugins/sql.conf
245
%%SQL%%@sample %%ETCDIR%%.d/charon/sql.conf.sample
246
%%SQL%%libexec/ipsec/pool
247
%%SQL%%%%DATADIR%%/templates/config/strongswan.d/pool.conf
248
%%SQL%%@sample %%ETCDIR%%.d/pool.conf.sample
249
%%SQL%%%%DATADIR%%/templates/database/sql/mysql.sql
250
%%SQL%%%%DATADIR%%/templates/database/sql/sqlite.sql
251
%%SQLITE%%lib/ipsec/plugins/libstrongswan-sqlite.la
252
%%SQLITE%%lib/ipsec/plugins/libstrongswan-sqlite.so
253
%%SQLITE%%%%DATADIR%%/templates/config/plugins/sqlite.conf
254
%%SQLITE%%@sample %%ETCDIR%%.d/charon/sqlite.conf.sample
255
%%TESTVECTOR%%lib/ipsec/plugins/libstrongswan-test-vectors.la
256
%%TESTVECTOR%%lib/ipsec/plugins/libstrongswan-test-vectors.so
257
%%TESTVECTOR%%%%DATADIR%%/templates/config/plugins/test-vectors.conf
258
%%TESTVECTOR%%@sample %%ETCDIR%%.d/charon/test-vectors.conf.sample
259
%%PKI%%bin/pki
260
%%PKI%%man/man1/pki---acert.1.gz
261
%%PKI%%man/man1/pki---dn.1.gz
262
%%PKI%%man/man1/pki---gen.1.gz
263
%%PKI%%man/man1/pki---issue.1.gz
264
%%PKI%%man/man1/pki---keyid.1.gz
265
%%PKI%%man/man1/pki---pkcs7.1.gz
266
%%PKI%%man/man1/pki---print.1.gz
267
%%PKI%%man/man1/pki---pub.1.gz
268
%%PKI%%man/man1/pki---req.1.gz
269
%%PKI%%man/man1/pki---self.1.gz
270
%%PKI%%man/man1/pki---signcrl.1.gz
271
%%PKI%%man/man1/pki---verify.1.gz
272
%%PKI%%man/man1/pki.1.gz
273
%%PKI%%%%DATADIR%%/templates/config/strongswan.d/pki.conf
363
%%PKI%%%%DATADIR%%/templates/config/strongswan.d/pki.conf
274
%%PKI%%@sample %%ETCDIR%%.d/pki.conf.sample
364
%%SQL%%%%DATADIR%%/templates/config/strongswan.d/pool.conf
275
%%SCEP%%libexec/ipsec/scepclient
276
%%SCEP%%man/man8/scepclient.8.gz
277
%%SCEP%%%%DATADIR%%/templates/config/strongswan.d/scepclient.conf
365
%%SCEP%%%%DATADIR%%/templates/config/strongswan.d/scepclient.conf
278
%%SCEP%%@sample %%ETCDIR%%.d/scepclient.conf.sample
366
%%DATADIR%%/templates/config/strongswan.d/starter.conf
279
%%SMP%%%%DATADIR%%/templates/config/plugins/smp.conf
280
%%SMP%%lib/ipsec/plugins/libstrongswan-smp.la
281
%%SMP%%lib/ipsec/plugins/libstrongswan-smp.so
282
%%SMP%%@sample %%ETCDIR%%.d/charon/smp.conf.sample
283
%%SWANCTL%%%%DATADIR%%/templates/config/strongswan.d/swanctl.conf
367
%%SWANCTL%%%%DATADIR%%/templates/config/strongswan.d/swanctl.conf
284
%%SWANCTL%%sbin/swanctl
368
%%SQL%%%%DATADIR%%/templates/database/sql/mysql.sql
285
%%SWANCTL%%man/man5/swanctl.conf.5.gz
369
%%SQL%%%%DATADIR%%/templates/database/sql/sqlite.sql
286
%%SWANCTL%%man/man8/swanctl.8.gz
287
%%SWANCTL%%@sample %%ETCDIR%%.d/swanctl.conf.sample
288
%%SWANCTL%%@sample etc/swanctl/swanctl.conf.sample
289
%%TPM%%bin/tpm_extendpcr
290
%%TPM%%@sample %%ETCDIR%%.d/charon/tpm.conf.sample
291
%%TPM%%lib/ipsec/plugins/libstrongswan-tpm.la
292
%%TPM%%lib/ipsec/plugins/libstrongswan-tpm.so
293
%%TPM%%%%DATADIR%%/templates/config/plugins/tpm.conf
294
%%UNBOUND%%lib/ipsec/plugins/libstrongswan-unbound.la
295
%%UNBOUND%%lib/ipsec/plugins/libstrongswan-unbound.so
296
%%UNBOUND%%%%DATADIR%%/templates/config/plugins/unbound.conf
297
%%UNBOUND%%@sample %%ETCDIR%%.d/charon/unbound.conf.sample
298
%%UNITY%%%%DATADIR%%/templates/config/plugins/unity.conf
299
%%UNITY%%lib/ipsec/plugins/libstrongswan-unity.la
300
%%UNITY%%lib/ipsec/plugins/libstrongswan-unity.so
301
%%UNITY%%@sample %%ETCDIR%%.d/charon/unity.conf.sample
302
%%VICI%%%%DATADIR%%/templates/config/plugins/vici.conf
303
%%VICI%%lib/ipsec/libvici.la
304
%%VICI%%lib/ipsec/libvici.so
305
%%VICI%%lib/ipsec/libvici.so.0
306
%%VICI%%lib/ipsec/libvici.so.0.0.0
307
%%VICI%%lib/ipsec/plugins/libstrongswan-vici.la
308
%%VICI%%lib/ipsec/plugins/libstrongswan-vici.so
309
%%VICI%%@sample %%ETCDIR%%.d/charon/vici.conf.sample
310
%%VICI%%include/libvici.h
311
%%XAUTH%%lib/ipsec/plugins/libstrongswan-xauth-eap.la
312
%%XAUTH%%lib/ipsec/plugins/libstrongswan-xauth-eap.so
313
%%XAUTH%%%%DATADIR%%/templates/config/plugins/xauth-eap.conf
314
%%XAUTH%%@sample %%ETCDIR%%.d/charon/xauth-eap.conf.sample
315
%%XAUTHGEN%%%%DATADIR%%/templates/config/plugins/xauth-generic.conf
316
%%XAUTHGEN%%@sample %%ETCDIR%%.d/charon/xauth-generic.conf.sample
317
@sample etc/ipsec.conf.sample
318
@sample etc/ipsec.secrets.sample
319
@sample %%ETCDIR%%.conf.sample
320
@sample %%ETCDIR%%.d/charon-logging.conf.sample
321
@sample %%ETCDIR%%.d/charon.conf.sample
322
@sample %%ETCDIR%%.d/charon/addrblock.conf.sample
323
@sample %%ETCDIR%%.d/charon/aes.conf.sample
324
@sample %%ETCDIR%%.d/charon/attr.conf.sample
325
@sample %%ETCDIR%%.d/charon/blowfish.conf.sample
326
@sample %%ETCDIR%%.d/charon/cmac.conf.sample
327
@sample %%ETCDIR%%.d/charon/constraints.conf.sample
328
@sample %%ETCDIR%%.d/charon/counters.conf.sample
329
@sample %%ETCDIR%%.d/charon/curve25519.conf.sample
330
@sample %%ETCDIR%%.d/charon/des.conf.sample
331
@sample %%ETCDIR%%.d/charon/dnskey.conf.sample
332
@sample %%ETCDIR%%.d/charon/eap-identity.conf.sample
333
@sample %%ETCDIR%%.d/charon/eap-md5.conf.sample
334
@sample %%ETCDIR%%.d/charon/eap-mschapv2.conf.sample
335
@sample %%ETCDIR%%.d/charon/eap-peap.conf.sample
336
@sample %%ETCDIR%%.d/charon/eap-tls.conf.sample
337
@sample %%ETCDIR%%.d/charon/eap-ttls.conf.sample
338
@sample %%ETCDIR%%.d/charon/fips-prf.conf.sample
339
@sample %%ETCDIR%%.d/charon/hmac.conf.sample
340
@sample %%ETCDIR%%.d/charon/kernel-pfkey.conf.sample
341
@sample %%ETCDIR%%.d/charon/kernel-pfroute.conf.sample
342
@sample %%ETCDIR%%.d/charon/md4.conf.sample
343
@sample %%ETCDIR%%.d/charon/md5.conf.sample
344
@sample %%ETCDIR%%.d/charon/nonce.conf.sample
345
@sample %%ETCDIR%%.d/charon/openssl.conf.sample
346
@sample %%ETCDIR%%.d/charon/pem.conf.sample
347
@sample %%ETCDIR%%.d/charon/pgp.conf.sample
348
@sample %%ETCDIR%%.d/charon/pkcs1.conf.sample
349
@sample %%ETCDIR%%.d/charon/pkcs12.conf.sample
350
@sample %%ETCDIR%%.d/charon/pkcs7.conf.sample
351
@sample %%ETCDIR%%.d/charon/pkcs8.conf.sample
352
@sample %%ETCDIR%%.d/charon/pubkey.conf.sample
353
@sample %%ETCDIR%%.d/charon/random.conf.sample
354
@sample %%ETCDIR%%.d/charon/rc2.conf.sample
355
@sample %%ETCDIR%%.d/charon/resolve.conf.sample
356
@sample %%ETCDIR%%.d/charon/revocation.conf.sample
357
@sample %%ETCDIR%%.d/charon/sha1.conf.sample
358
@sample %%ETCDIR%%.d/charon/sha2.conf.sample
359
@sample %%ETCDIR%%.d/charon/socket-default.conf.sample
360
@sample %%ETCDIR%%.d/charon/sshkey.conf.sample
361
@sample %%ETCDIR%%.d/charon/stroke.conf.sample
362
@sample %%ETCDIR%%.d/charon/updown.conf.sample
363
@sample %%ETCDIR%%.d/charon/whitelist.conf.sample
364
@sample %%ETCDIR%%.d/charon/x509.conf.sample
365
@sample %%ETCDIR%%.d/charon/xcbc.conf.sample
366
@sample %%ETCDIR%%.d/starter.conf.sample
367
lib/ipsec/libcharon.so.0.0.0
368
lib/ipsec/libstrongswan.so.0.0.0
369
lib/ipsec/libtls.so.0.0.0
370
@dir etc/ipsec.d/aacerts
370
@dir etc/ipsec.d/aacerts
371
@dir etc/ipsec.d/acerts
371
@dir etc/ipsec.d/acerts
372
@dir etc/ipsec.d/cacerts
372
@dir etc/ipsec.d/cacerts

Return to bug 234882