You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

503 lines
15 KiB

  1. #
  2. # Copyright (C) 2012-2014 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=strongswan
  9. PKG_VERSION:=5.2.1
  10. PKG_RELEASE:=1
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
  12. PKG_SOURCE_URL:=http://download.strongswan.org/ http://download2.strongswan.org/
  13. PKG_MD5SUM:=dd3717c0aa59ab4591ca1812941ebb82
  14. PKG_LICENSE:=GPL-2.0+
  15. PKG_MAINTAINER:=Steven Barth <cyrus@openwrt.org>
  16. PKG_MOD_AVAILABLE:= \
  17. addrblock \
  18. aes \
  19. af-alg \
  20. agent \
  21. attr \
  22. attr-sql \
  23. blowfish \
  24. ccm \
  25. cmac \
  26. constraints \
  27. coupling \
  28. ctr \
  29. curl \
  30. des \
  31. dhcp \
  32. dnskey \
  33. duplicheck \
  34. eap-identity \
  35. eap-md5 \
  36. eap-mschapv2 \
  37. eap-radius \
  38. farp \
  39. fips-prf \
  40. gcm \
  41. gcrypt \
  42. gmp \
  43. ha \
  44. hmac \
  45. kernel-libipsec \
  46. kernel-netlink \
  47. ldap \
  48. led \
  49. load-tester \
  50. nonce \
  51. md4 \
  52. md5 \
  53. mysql \
  54. openssl \
  55. padlock \
  56. pem \
  57. pgp \
  58. pkcs1 \
  59. pkcs8 \
  60. pkcs11 \
  61. pubkey \
  62. random \
  63. resolve \
  64. revocation \
  65. sha1 \
  66. sha2 \
  67. smp \
  68. socket-default \
  69. socket-dynamic \
  70. sql \
  71. sqlite \
  72. stroke \
  73. test-vectors \
  74. unity \
  75. uci \
  76. updown \
  77. whitelist \
  78. x509 \
  79. xauth-eap \
  80. xauth-generic \
  81. xcbc
  82. PKG_CONFIG_DEPENDS:= \
  83. CONFIG_STRONGSWAN_ROUTING_TABLE \
  84. CONFIG_STRONGSWAN_ROUTING_TABLE_PRIO \
  85. $(patsubst %,CONFIG_PACKAGE_strongswan-mod-%,$(PKG_MOD_AVAILABLE)) \
  86. PKG_FIXUP:=autoreconf
  87. PKG_INSTALL:=1
  88. PKG_BUILD_PARALLEL:=1
  89. include $(INCLUDE_DIR)/package.mk
  90. define Package/strongswan/Default
  91. SUBMENU:=VPN
  92. SECTION:=net
  93. CATEGORY:=Network
  94. TITLE:=StrongSwan
  95. URL:=http://www.strongswan.org/
  96. endef
  97. define Package/strongswan/description/Default
  98. StrongSwan is an OpenSource IPsec implementation for the Linux operating system.
  99. endef
  100. define Package/strongswan
  101. $(call Package/strongswan/Default)
  102. DEPENDS:= +libpthread +ip \
  103. +kmod-crypto-authenc \
  104. +kmod-ipsec +kmod-ipsec4 +kmod-ipsec6 \
  105. +kmod-ipt-ipsec +iptables-mod-ipsec
  106. endef
  107. define Package/strongswan/config
  108. source "$(SOURCE)/Config.in"
  109. endef
  110. define Package/strongswan/description
  111. $(call Package/strongswan/description/Default)
  112. This package contains shared libraries and scripts.
  113. endef
  114. define Package/strongswan-full
  115. $(call Package/strongswan/Default)
  116. TITLE+= (full)
  117. DEPENDS:= +strongswan \
  118. +strongswan-charon \
  119. +strongswan-mod-addrblock \
  120. +strongswan-mod-aes \
  121. +strongswan-mod-af-alg \
  122. +strongswan-mod-agent \
  123. +strongswan-mod-attr \
  124. +strongswan-mod-attr-sql \
  125. +strongswan-mod-blowfish \
  126. +strongswan-mod-ccm \
  127. +strongswan-mod-cmac \
  128. +strongswan-mod-constraints \
  129. +strongswan-mod-coupling \
  130. +strongswan-mod-ctr \
  131. +strongswan-mod-curl \
  132. +strongswan-mod-des \
  133. +strongswan-mod-dhcp \
  134. +strongswan-mod-dnskey \
  135. +strongswan-mod-duplicheck \
  136. +strongswan-mod-eap-identity \
  137. +strongswan-mod-eap-md5 \
  138. +strongswan-mod-eap-mschapv2 \
  139. +strongswan-mod-eap-radius \
  140. +strongswan-mod-farp \
  141. +strongswan-mod-fips-prf \
  142. +strongswan-mod-gcm \
  143. +strongswan-mod-gcrypt \
  144. +strongswan-mod-gmp \
  145. +strongswan-mod-ha \
  146. +strongswan-mod-hmac \
  147. +strongswan-mod-kernel-netlink \
  148. +strongswan-mod-ldap \
  149. +strongswan-mod-led \
  150. +strongswan-mod-load-tester \
  151. +strongswan-mod-nonce \
  152. +strongswan-mod-md4 \
  153. +strongswan-mod-md5 \
  154. +strongswan-mod-mysql \
  155. +strongswan-mod-openssl \
  156. +TARGET_x86:strongswan-mod-padlock \
  157. +strongswan-mod-pem \
  158. +strongswan-mod-pgp \
  159. +strongswan-mod-pkcs1 \
  160. +strongswan-mod-pkcs8 \
  161. +strongswan-mod-pkcs11 \
  162. +strongswan-mod-pubkey \
  163. +strongswan-mod-random \
  164. +strongswan-mod-resolve \
  165. +strongswan-mod-revocation \
  166. +strongswan-mod-sha1 \
  167. +strongswan-mod-sha2 \
  168. +strongswan-mod-smp \
  169. +strongswan-mod-socket-default \
  170. +strongswan-mod-sql \
  171. +strongswan-mod-sqlite \
  172. +strongswan-mod-stroke \
  173. +strongswan-mod-test-vectors \
  174. +strongswan-mod-uci \
  175. +strongswan-mod-unity \
  176. +strongswan-mod-updown \
  177. +strongswan-mod-whitelist \
  178. +strongswan-mod-x509 \
  179. +strongswan-mod-xauth-eap \
  180. +strongswan-mod-xauth-generic \
  181. +strongswan-mod-xcbc \
  182. +strongswan-utils \
  183. @DEVEL
  184. endef
  185. define Package/strongswan-full/description
  186. $(call Package/strongswan/description/Default)
  187. This meta-package contains dependencies for all of the strongswan plugins
  188. except kernel-libipsec,
  189. socket-dynamic and which are ommitted in favor of the kernel-netlink and
  190. socket-default plugins.
  191. endef
  192. define Package/strongswan-default
  193. $(call Package/strongswan/Default)
  194. TITLE+= (default)
  195. DEPENDS:= +strongswan \
  196. +strongswan-charon \
  197. +strongswan-mod-aes \
  198. +strongswan-mod-attr \
  199. +strongswan-mod-constraints \
  200. +strongswan-mod-des \
  201. +strongswan-mod-dnskey \
  202. +strongswan-mod-fips-prf \
  203. +strongswan-mod-gmp \
  204. +strongswan-mod-hmac \
  205. +strongswan-mod-kernel-netlink \
  206. +strongswan-mod-md5 \
  207. +strongswan-mod-nonce \
  208. +strongswan-mod-pem \
  209. +strongswan-mod-pgp \
  210. +strongswan-mod-pkcs1 \
  211. +strongswan-mod-pubkey \
  212. +strongswan-mod-random \
  213. +strongswan-mod-resolve \
  214. +strongswan-mod-revocation \
  215. +strongswan-mod-sha1 \
  216. +strongswan-mod-sha2 \
  217. +strongswan-mod-socket-default \
  218. +strongswan-mod-stroke \
  219. +strongswan-mod-updown \
  220. +strongswan-mod-x509 \
  221. +strongswan-mod-xauth-generic \
  222. +strongswan-mod-xcbc \
  223. +strongswan-utils
  224. endef
  225. define Package/strongswan-default/description
  226. $(call Package/strongswan/description/Default)
  227. This meta-package contains only dependencies to match upstream defaults.
  228. endef
  229. define Package/strongswan-minimal
  230. $(call Package/strongswan/Default)
  231. TITLE+= (minimal)
  232. DEPENDS:= +strongswan \
  233. +strongswan-charon \
  234. +strongswan-mod-aes \
  235. +strongswan-mod-gmp \
  236. +strongswan-mod-hmac \
  237. +strongswan-mod-kernel-netlink \
  238. +strongswan-mod-nonce \
  239. +strongswan-mod-pubkey \
  240. +strongswan-mod-random \
  241. +strongswan-mod-sha1 \
  242. +strongswan-mod-socket-default \
  243. +strongswan-mod-stroke \
  244. +strongswan-mod-updown \
  245. +strongswan-mod-x509 \
  246. +strongswan-mod-xcbc
  247. endef
  248. define Package/strongswan-minimal/description
  249. $(call Package/strongswan/description/Default)
  250. This meta-package contains only dependencies for a minimal IKEv2 setup.
  251. endef
  252. define Package/strongswan-charon
  253. $(call Package/strongswan/Default)
  254. TITLE+= IKEv1/IKEv2 keying daemon
  255. DEPENDS:= +strongswan
  256. endef
  257. define Package/strongswan-charon/description
  258. $(call Package/strongswan/description/Default)
  259. This package contains charon, an IKEv2 keying daemon.
  260. endef
  261. define Package/strongswan-utils
  262. $(call Package/strongswan/Default)
  263. TITLE+= utilities
  264. DEPENDS:= +strongswan
  265. endef
  266. define Package/strongswan-utils/description
  267. $(call Package/strongswan/description/Default)
  268. This package contains the pki & scepclient utilities.
  269. endef
  270. define BuildPlugin
  271. define Package/strongswan-mod-$(1)
  272. $$(call Package/strongswan/Default)
  273. TITLE:= StrongSwan $(2) plugin
  274. DEPENDS:= +strongswan $(3)
  275. endef
  276. strongswan_mod_conf=$(wildcard $(PKG_INSTALL_DIR)/etc/strongswan.d/charon/$(1).conf)
  277. define Package/strongswan-mod-$(1)/install
  278. $(INSTALL_DIR) $$(1)/etc/strongswan.d/charon
  279. $(if $(call strongswan_mod_conf,$(1)), \
  280. $(INSTALL_DATA) \
  281. $(call strongswan_mod_conf,$(1)) \
  282. $$(1)/etc/strongswan.d/charon/ \
  283. )
  284. $(INSTALL_DIR) $$(1)/usr/lib/ipsec/plugins
  285. $(CP) $(PKG_INSTALL_DIR)/usr/lib/ipsec/plugins/libstrongswan-$(1).so \
  286. $$(1)/usr/lib/ipsec/plugins/
  287. $(call Plugin/$(1)/install,$$(1))
  288. endef
  289. Package/strongswan-mod-$(1)/conffiles=$(patsubst $(PKG_INSTALL_DIR)%,%,$(call strongswan_mod_conf,$(1)))
  290. $$(eval $$(call BuildPackage,strongswan-mod-$(1)))
  291. endef
  292. CONFIGURE_ARGS+= \
  293. --disable-scripts \
  294. --disable-static \
  295. --disable-fast \
  296. --with-systemdsystemunitdir=no \
  297. $(if $(CONFIG_PACKAGE_strongswan-utils),--enable-pki --enable-scepclient,--disable-pki --disable-scepclient) \
  298. --with-random-device=/dev/random \
  299. --with-urandom-device=/dev/urandom \
  300. --with-routing-table="$(call qstrip,$(CONFIG_STRONGSWAN_ROUTING_TABLE))" \
  301. --with-routing-table-prio="$(call qstrip,$(CONFIG_STRONGSWAN_ROUTING_TABLE_PRIO))" \
  302. $(foreach m,$(PKG_MOD_AVAILABLE), \
  303. $(if $(CONFIG_PACKAGE_strongswan-mod-$(m)),--enable-$(m),--disable-$(m)) \
  304. )
  305. EXTRA_LDFLAGS+= -Wl,-rpath-link,$(STAGING_DIR)/usr/lib
  306. define Package/strongswan/conffiles
  307. /etc/ipsec.conf
  308. /etc/ipsec.secrets
  309. /etc/ipsec.user
  310. /etc/strongswan.conf
  311. endef
  312. define Package/strongswan/install
  313. $(INSTALL_DIR) $(1)/etc
  314. $(CP) $(PKG_INSTALL_DIR)/etc/strongswan.conf $(1)/etc/
  315. $(INSTALL_DIR) $(1)/usr/lib/ipsec
  316. $(CP) $(PKG_INSTALL_DIR)/usr/lib/ipsec/{libstrongswan.so.*,libhydra.so.*} $(1)/usr/lib/ipsec/
  317. $(INSTALL_CONF) ./files/ipsec.secrets $(1)/etc/
  318. $(INSTALL_DIR) $(1)/etc/init.d
  319. $(INSTALL_BIN) ./files/ipsec.init $(1)/etc/init.d/ipsec
  320. endef
  321. define Package/strongswan-default/install
  322. true
  323. endef
  324. define Package/strongswan-full/install
  325. true
  326. endef
  327. define Package/strongswan-minimal/install
  328. true
  329. endef
  330. define Package/strongswan-charon/install
  331. $(INSTALL_DIR) $(1)/usr/lib/ipsec
  332. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/lib/ipsec/charon $(1)/usr/lib/ipsec/
  333. $(CP) $(PKG_INSTALL_DIR)/usr/lib/ipsec/libcharon.so.* $(1)/usr/lib/ipsec/
  334. endef
  335. define Package/strongswan-utils/install
  336. $(INSTALL_DIR) $(1)/usr/sbin
  337. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/ipsec $(1)/usr/sbin/
  338. $(INSTALL_DIR) $(1)/usr/bin
  339. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/pki $(1)/usr/bin/
  340. $(INSTALL_DIR) $(1)/usr/lib/ipsec
  341. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/lib/ipsec/scepclient $(1)/usr/lib/ipsec/
  342. endef
  343. define Plugin/duplicheck/install
  344. $(INSTALL_DIR) $(1)/usr/lib/ipsec/plugins
  345. $(CP) $(PKG_INSTALL_DIR)/usr/lib/ipsec/duplicheck $(1)/usr/lib/ipsec/
  346. $(CP) $(PKG_INSTALL_DIR)/usr/lib/ipsec/plugins/libstrongswan-duplicheck.so $(1)/usr/lib/ipsec/plugins/
  347. endef
  348. define Plugin/eap-radius/install
  349. $(INSTALL_DIR) $(1)/usr/lib/ipsec/plugins
  350. $(CP) $(PKG_INSTALL_DIR)/usr/lib/ipsec/libradius.so.* $(1)/usr/lib/ipsec/
  351. $(CP) $(PKG_INSTALL_DIR)/usr/lib/ipsec/plugins/libstrongswan-eap-radius.so $(1)/usr/lib/ipsec/plugins/
  352. endef
  353. define Plugin/attr-sql/install
  354. $(INSTALL_DIR) $(1)/usr/lib/ipsec
  355. $(CP) $(PKG_INSTALL_DIR)/usr/lib/ipsec/pool $(1)/usr/lib/ipsec/
  356. endef
  357. define Plugin/stroke/install
  358. $(INSTALL_DIR) $(1)/etc/ipsec.d/aacerts
  359. $(INSTALL_DIR) $(1)/etc/ipsec.d/acerts
  360. $(INSTALL_DIR) $(1)/etc/ipsec.d/cacerts
  361. $(INSTALL_DIR) $(1)/etc/ipsec.d/certs
  362. $(INSTALL_DIR) $(1)/etc/ipsec.d/crls
  363. $(INSTALL_DIR) $(1)/etc/ipsec.d/ocspcerts
  364. $(INSTALL_DIR) $(1)/etc/ipsec.d/private
  365. $(INSTALL_DIR) $(1)/etc/ipsec.d/reqs
  366. $(INSTALL_CONF) $(PKG_INSTALL_DIR)/etc/ipsec.conf $(1)/etc/
  367. $(INSTALL_DIR) $(1)/usr/lib/ipsec/plugins
  368. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/lib/ipsec/{starter,stroke} $(1)/usr/lib/ipsec/
  369. $(CP) $(PKG_INSTALL_DIR)/usr/lib/ipsec/plugins/libstrongswan-stroke.so $(1)/usr/lib/ipsec/plugins/
  370. endef
  371. define Plugin/updown/install
  372. $(INSTALL_DIR) $(1)/usr/lib/ipsec/plugins
  373. $(CP) $(PKG_INSTALL_DIR)/usr/lib/ipsec/{_updown,_updown_espmark} $(1)/usr/lib/ipsec/
  374. $(CP) $(PKG_INSTALL_DIR)/usr/lib/ipsec/plugins/libstrongswan-updown.so $(1)/usr/lib/ipsec/plugins/
  375. $(INSTALL_DIR) $(1)/etc
  376. $(INSTALL_CONF) ./files/ipsec.user $(1)/etc/
  377. endef
  378. define Plugin/whitelist/install
  379. $(INSTALL_DIR) $(1)/usr/lib/ipsec/plugins
  380. $(CP) $(PKG_INSTALL_DIR)/usr/lib/ipsec/whitelist $(1)/usr/lib/ipsec/
  381. $(CP) $(PKG_INSTALL_DIR)/usr/lib/ipsec/plugins/libstrongswan-whitelist.so $(1)/usr/lib/ipsec/plugins/
  382. endef
  383. define Plugin/kernel-libipsec/install
  384. $(INSTALL_DIR) $(1)/usr/lib/ipsec
  385. $(CP) $(PKG_INSTALL_DIR)/usr/lib/ipsec/libipsec.so.* $(1)/usr/lib/ipsec/
  386. endef
  387. $(eval $(call BuildPackage,strongswan))
  388. $(eval $(call BuildPackage,strongswan-default))
  389. $(eval $(call BuildPackage,strongswan-full))
  390. $(eval $(call BuildPackage,strongswan-minimal))
  391. $(eval $(call BuildPackage,strongswan-charon))
  392. $(eval $(call BuildPackage,strongswan-utils))
  393. $(eval $(call BuildPlugin,addrblock,RFC 3779 address block constraint support,))
  394. $(eval $(call BuildPlugin,aes,AES crypto,))
  395. $(eval $(call BuildPlugin,af-alg,AF_ALG crypto interface to Linux Crypto API,+kmod-crypto-user))
  396. $(eval $(call BuildPlugin,agent,SSH agent signing,))
  397. $(eval $(call BuildPlugin,attr,file based config,))
  398. $(eval $(call BuildPlugin,attr-sql,SQL based config,+strongswan-mod-sql))
  399. $(eval $(call BuildPlugin,blowfish,Blowfish crypto,))
  400. $(eval $(call BuildPlugin,ccm,CCM AEAD wrapper crypto,))
  401. $(eval $(call BuildPlugin,cmac,CMAC crypto,))
  402. $(eval $(call BuildPlugin,constraints,advanced X509 constraint checking,))
  403. $(eval $(call BuildPlugin,coupling,IKEv2 plugin to couple peer certificates permanently to authentication,))
  404. $(eval $(call BuildPlugin,ctr,Counter Mode wrapper crypto,))
  405. $(eval $(call BuildPlugin,curl,cURL fetcher plugin,+PACKAGE_strongswan-mod-curl:libcurl))
  406. $(eval $(call BuildPlugin,des,DES crypto,))
  407. $(eval $(call BuildPlugin,dhcp,DHCP based attribute provider,))
  408. $(eval $(call BuildPlugin,dnskey,DNS RR key decoding,))
  409. $(eval $(call BuildPlugin,duplicheck,advanced duplicate checking,))
  410. $(eval $(call BuildPlugin,eap-identity,EAP identity helper,))
  411. $(eval $(call BuildPlugin,eap-md5,EAP MD5 (CHAP) EAP auth,))
  412. $(eval $(call BuildPlugin,eap-mschapv2,EAP MS-CHAPv2 EAP auth,+strongswan-mod-md4 +strongswan-mod-des))
  413. $(eval $(call BuildPlugin,eap-radius,EAP RADIUS auth,))
  414. $(eval $(call BuildPlugin,farp,fake arp respsonses,))
  415. $(eval $(call BuildPlugin,fips-prf,FIPS PRF crypto,+strongswan-mod-sha1))
  416. $(eval $(call BuildPlugin,gcm,GCM AEAD wrapper crypto,))
  417. $(eval $(call BuildPlugin,gcrypt,libgcrypt,+PACKAGE_strongswan-mod-gcrypt:libgcrypt))
  418. $(eval $(call BuildPlugin,gmp,libgmp,+PACKAGE_strongswan-mod-gmp:libgmp))
  419. $(eval $(call BuildPlugin,ha,high availability cluster,))
  420. $(eval $(call BuildPlugin,hmac,HMAC crypto,))
  421. $(eval $(call BuildPlugin,kernel-libipsec,libipsec kernel interface,))
  422. $(eval $(call BuildPlugin,kernel-netlink,netlink kernel interface,))
  423. $(eval $(call BuildPlugin,ldap,LDAP,+PACKAGE_strongswan-mod-ldap:libopenldap))
  424. $(eval $(call BuildPlugin,led,LED blink on IKE activity,))
  425. $(eval $(call BuildPlugin,load-tester,load testing,))
  426. $(eval $(call BuildPlugin,nonce,nonce genereation,))
  427. $(eval $(call BuildPlugin,md4,MD4 crypto,))
  428. $(eval $(call BuildPlugin,md5,MD5 crypto,))
  429. $(eval $(call BuildPlugin,mysql,MySQL database interface,+strongswan-mod-sql +PACKAGE_strongswan-mod-mysql:libmysqlclient-r))
  430. $(eval $(call BuildPlugin,openssl,OpenSSL crypto,+PACKAGE_strongswan-mod-openssl:libopenssl))
  431. $(eval $(call BuildPlugin,padlock,VIA PadLock crypto,@TARGET_x86))
  432. $(eval $(call BuildPlugin,pem,PEM decoding,))
  433. $(eval $(call BuildPlugin,pgp,PGP key decoding,))
  434. $(eval $(call BuildPlugin,pkcs1,PKCS1 key decoding,))
  435. $(eval $(call BuildPlugin,pkcs8,PKCS8 key decoding,))
  436. $(eval $(call BuildPlugin,pkcs11,PKCS11 key decoding,))
  437. $(eval $(call BuildPlugin,pubkey,raw public key,))
  438. $(eval $(call BuildPlugin,random,RNG,))
  439. $(eval $(call BuildPlugin,resolve,DNS resolver,))
  440. $(eval $(call BuildPlugin,revocation,X509 CRL/OCSP revocation,))
  441. $(eval $(call BuildPlugin,sha1,SHA1 crypto,))
  442. $(eval $(call BuildPlugin,sha2,SHA2 crypto,))
  443. $(eval $(call BuildPlugin,smp,SMP configuration and control interface,+PACKAGE_strongswan-mod-smp:libxml2))
  444. $(eval $(call BuildPlugin,socket-default,default socket implementation for charon,))
  445. $(eval $(call BuildPlugin,socket-dynamic,dynamic socket implementation for charon,))
  446. $(eval $(call BuildPlugin,sql,SQL database interface,))
  447. $(eval $(call BuildPlugin,sqlite,SQLite database interface,+strongswan-mod-sql +PACKAGE_strongswan-mod-sqlite:libsqlite3))
  448. $(eval $(call BuildPlugin,stroke,Stroke,+strongswan-utils))
  449. $(eval $(call BuildPlugin,test-vectors,crypto test vectors,))
  450. $(eval $(call BuildPlugin,uci,UCI config interface,+PACKAGE_strongswan-mod-uci:libuci))
  451. $(eval $(call BuildPlugin,unity,Cisco Unity extension,))
  452. $(eval $(call BuildPlugin,updown,updown firewall,))
  453. $(eval $(call BuildPlugin,whitelist,peer identity whitelisting,))
  454. $(eval $(call BuildPlugin,x509,x509 certificate,))
  455. $(eval $(call BuildPlugin,xauth-eap,EAP XAuth backend,))
  456. $(eval $(call BuildPlugin,xauth-generic,generic XAuth backend,))
  457. $(eval $(call BuildPlugin,xcbc,xcbc crypto,))