[Midnightbsd-cvs] mports [19598] trunk/security: add polarssl and wolfssl

laffer1 at midnightbsd.org laffer1 at midnightbsd.org
Wed Jul 15 19:44:00 EDT 2015


Revision: 19598
          http://svnweb.midnightbsd.org/mports/?rev=19598
Author:   laffer1
Date:     2015-07-15 19:44:00 -0400 (Wed, 15 Jul 2015)
Log Message:
-----------
add polarssl and wolfssl

Modified Paths:
--------------
    trunk/security/Makefile

Added Paths:
-----------
    trunk/security/polarssl/
    trunk/security/polarssl/Makefile
    trunk/security/polarssl/distinfo
    trunk/security/polarssl/files/
    trunk/security/polarssl/files/patch-include-polarssl-config_h
    trunk/security/polarssl/files/patch-library-Makefile
    trunk/security/polarssl/pkg-descr
    trunk/security/polarssl/pkg-plist
    trunk/security/wolfssl/
    trunk/security/wolfssl/Makefile
    trunk/security/wolfssl/distinfo
    trunk/security/wolfssl/pkg-descr
    trunk/security/wolfssl/pkg-plist

Modified: trunk/security/Makefile
===================================================================
--- trunk/security/Makefile	2015-07-15 22:10:20 UTC (rev 19597)
+++ trunk/security/Makefile	2015-07-15 23:44:00 UTC (rev 19598)
@@ -96,6 +96,7 @@
 SUBDIR += php5-openssl
 SUBDIR += pinentry
 SUBDIR += pinentry-tty
+SUBDIR += polarssl
 SUBDIR += py-fail2ban
 SUBDIR += py-paramiko
 SUBDIR += py-pycrypto
@@ -121,6 +122,7 @@
 SUBDIR += vxquery
 SUBDIR += webfwlog
 SUBDIR += wipe
+SUBDIR += wolfssl
 SUBDIR += xinetd
 SUBDIR += xmlsec1
 SUBDIR += xspy

Added: trunk/security/polarssl/Makefile
===================================================================
--- trunk/security/polarssl/Makefile	                        (rev 0)
+++ trunk/security/polarssl/Makefile	2015-07-15 23:44:00 UTC (rev 19598)
@@ -0,0 +1,51 @@
+# $MidnightBSD$
+# $FreeBSD: head/security/polarssl/Makefile 381519 2015-03-17 21:01:56Z pi $
+
+PORTNAME=	polarssl
+PORTVERSION=	1.2.13
+DISTVERSIONSUFFIX=	-gpl
+CATEGORIES=	security devel
+MASTER_SITES=	https://polarssl.org/download/
+
+MAINTAINER=	ports at MidnightBSD.org
+COMMENT=	Open Source embedded SSL/TLS cryptographic library
+
+LICENSE=	gpl2
+
+ALL_TARGET=	no_test
+
+USES=		cpe gmake tar:tgz
+USE_LDCONFIG=	yes
+
+WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}
+
+DOCFILES=	ChangeLog README
+BINFILES=	aescrypt2 benchmark dh_client dh_genprime dh_server hello \
+		md5sum mpi_demo rsa_genkey rsa_sign rsa_verify selftest \
+		sha1sum sha2sum ssl_cert_test ssl_client1 ssl_client2 \
+		ssl_server ssl_test
+
+# cmake install is broken, so we do it by hand
+do-install:
+	@cd ${WRKSRC}/include && ${COPYTREE_SHARE} ${PORTNAME} ${STAGEDIR}${PREFIX}/include "! -name *.orig"
+	${INSTALL_DATA} ${WRKSRC}/library/libpolarssl.a ${STAGEDIR}${PREFIX}/lib/
+	${INSTALL_DATA} ${WRKSRC}/library/libpolarssl.so ${STAGEDIR}${PREFIX}/lib/libpolarssl.so.5
+	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libpolarssl.so.5
+	cd ${STAGEDIR}${PREFIX}/lib/ && ${LN} -sf libpolarssl.so.5 libpolarssl.so
+.for i in ${BINFILES}
+	${INSTALL_PROGRAM} ${WRKSRC}/programs/*/${i} ${STAGEDIR}${PREFIX}/bin/polarssl_${i}
+.endfor
+
+OPTIONS_DEFINE=	DOCS
+
+.include <bsd.mport.options.mk>
+
+post-install:
+.if ${PORT_OPTIONS:MDOCS}
+	${MKDIR} ${STAGEDIR}${DOCSDIR}
+.for i in ${DOCFILES}
+	${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR}
+.endfor
+.endif
+
+.include <bsd.port.mk>


Property changes on: trunk/security/polarssl/Makefile
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/security/polarssl/distinfo
===================================================================
--- trunk/security/polarssl/distinfo	                        (rev 0)
+++ trunk/security/polarssl/distinfo	2015-07-15 23:44:00 UTC (rev 19598)
@@ -0,0 +1,2 @@
+SHA256 (polarssl-1.2.13-gpl.tgz) = 62f44f2a9f39b5cefb229e5dd2644ca20ead477cb1843d6ff30671624315b021
+SIZE (polarssl-1.2.13-gpl.tgz) = 1023128


Property changes on: trunk/security/polarssl/distinfo
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/security/polarssl/files/patch-include-polarssl-config_h
===================================================================
--- trunk/security/polarssl/files/patch-include-polarssl-config_h	                        (rev 0)
+++ trunk/security/polarssl/files/patch-include-polarssl-config_h	2015-07-15 23:44:00 UTC (rev 19598)
@@ -0,0 +1,12 @@
+--- include/polarssl/config.h.orig	2013-09-24 16:37:14.000000000 +0200
++++ include/polarssl/config.h	2013-09-24 16:39:22.000000000 +0200
+@@ -627,8 +627,8 @@
+  * Requires: POLARSSL_TIMING_C
+  *
+  * Uncomment to enable the HAVEGE random generator.
+-#define POLARSSL_HAVEGE_C
+  */
++#define POLARSSL_HAVEGE_C
+ 
+ /**
+  * \def POLARSSL_MD_C


Property changes on: trunk/security/polarssl/files/patch-include-polarssl-config_h
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/security/polarssl/files/patch-library-Makefile
===================================================================
--- trunk/security/polarssl/files/patch-library-Makefile	                        (rev 0)
+++ trunk/security/polarssl/files/patch-library-Makefile	2015-07-15 23:44:00 UTC (rev 19598)
@@ -0,0 +1,25 @@
+--- library/Makefile.orig	2014-10-24 09:42:52.000000000 +0100
++++ library/Makefile	2014-10-27 20:13:26.522466123 +0000
+@@ -18,9 +18,7 @@
+ # CFLAGS += -D_BSD_EXTENSION
+ 
+ # To compile as a shared library:
+-ifdef SHARED
+ CFLAGS += -fPIC
+-endif
+ 
+ SONAME=libpolarssl.so.5
+ 
+@@ -53,11 +51,7 @@
+ 
+ .SILENT:
+ 
+-ifndef SHARED
+-all: static
+-else
+-all: shared
+-endif
++all: shared static
+ 
+ static: libpolarssl.a
+ 


Property changes on: trunk/security/polarssl/files/patch-library-Makefile
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/security/polarssl/pkg-descr
===================================================================
--- trunk/security/polarssl/pkg-descr	                        (rev 0)
+++ trunk/security/polarssl/pkg-descr	2015-07-15 23:44:00 UTC (rev 19598)
@@ -0,0 +1,21 @@
+PolarSSL is a light-weight open source cryptographic and SSL/TLS library
+written in C. PolarSSL is written with embedded systems in mind and has
+been ported on a number of architectures, including ARM, PowerPC, MIPS
+and Motorola 68000.
+
+Features include:
+ * Small memory footprint
+ * Clean and simple API for integration
+ * Loose coupling of cryptographic code.
+ * Symmetric encryption algorithms: AES, Triple-DES, DES, ARC4, Camellia, XTEA
+ * Hash algorithms: MD2, MD4, MD5, SHA-1, SHA-224, SHA-256, SHA-384, SHA-512
+ * HAVEGE random number generator
+ * RSA with PKCS#1 v1.5 padding
+ * SSL version 3 and TLS version 1 client support
+ * X.509 certificate and CRL reading from memory or disk in PEM and DER formats
+ * Over 900 regression and code coverage tests
+ * Example applications
+
+LICENSE: GPL2
+
+WWW: http://polarssl.org/


Property changes on: trunk/security/polarssl/pkg-descr
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/security/polarssl/pkg-plist
===================================================================
--- trunk/security/polarssl/pkg-plist	                        (rev 0)
+++ trunk/security/polarssl/pkg-plist	2015-07-15 23:44:00 UTC (rev 19598)
@@ -0,0 +1,70 @@
+bin/polarssl_aescrypt2
+bin/polarssl_benchmark
+bin/polarssl_dh_client
+bin/polarssl_dh_genprime
+bin/polarssl_dh_server
+bin/polarssl_hello
+bin/polarssl_md5sum
+bin/polarssl_mpi_demo
+bin/polarssl_rsa_genkey
+bin/polarssl_rsa_sign
+bin/polarssl_rsa_verify
+bin/polarssl_selftest
+bin/polarssl_sha1sum
+bin/polarssl_sha2sum
+bin/polarssl_ssl_cert_test
+bin/polarssl_ssl_client1
+bin/polarssl_ssl_client2
+bin/polarssl_ssl_server
+bin/polarssl_ssl_test
+include/polarssl/aes.h
+include/polarssl/arc4.h
+include/polarssl/asn1.h
+include/polarssl/asn1write.h
+include/polarssl/base64.h
+include/polarssl/bignum.h
+include/polarssl/blowfish.h
+include/polarssl/bn_mul.h
+include/polarssl/camellia.h
+include/polarssl/certs.h
+include/polarssl/cipher.h
+include/polarssl/cipher_wrap.h
+include/polarssl/config.h
+include/polarssl/ctr_drbg.h
+include/polarssl/debug.h
+include/polarssl/des.h
+include/polarssl/dhm.h
+include/polarssl/entropy.h
+include/polarssl/entropy_poll.h
+include/polarssl/error.h
+include/polarssl/gcm.h
+include/polarssl/havege.h
+include/polarssl/md.h
+include/polarssl/md2.h
+include/polarssl/md4.h
+include/polarssl/md5.h
+include/polarssl/md_wrap.h
+include/polarssl/net.h
+include/polarssl/openssl.h
+include/polarssl/padlock.h
+include/polarssl/pem.h
+include/polarssl/pbkdf2.h
+include/polarssl/pkcs11.h
+include/polarssl/pkcs12.h
+include/polarssl/pkcs5.h
+include/polarssl/rsa.h
+include/polarssl/sha1.h
+include/polarssl/sha2.h
+include/polarssl/sha4.h
+include/polarssl/ssl.h
+include/polarssl/ssl_cache.h
+include/polarssl/timing.h
+include/polarssl/version.h
+include/polarssl/x509.h
+include/polarssl/x509write.h
+include/polarssl/xtea.h
+lib/libpolarssl.a
+lib/libpolarssl.so
+lib/libpolarssl.so.5
+%%PORTDOCS%%%%DOCSDIR%%/ChangeLog
+%%PORTDOCS%%%%DOCSDIR%%/README


Property changes on: trunk/security/polarssl/pkg-plist
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/security/wolfssl/Makefile
===================================================================
--- trunk/security/wolfssl/Makefile	                        (rev 0)
+++ trunk/security/wolfssl/Makefile	2015-07-15 23:44:00 UTC (rev 19598)
@@ -0,0 +1,35 @@
+# $MidnightBSD$
+# $FreeBSD: head/security/wolfssl/Makefile 385058 2015-04-30 19:41:38Z johans $
+
+PORTNAME=	wolfssl
+PORTVERSION=	3.4.6
+CATEGORIES=	security devel
+MASTER_SITES=	http://www.yassl.com/
+
+MAINTAINER=	ports at MidnightBSD.org
+COMMENT=	Embedded SSL C-Library
+
+LICENSE=	gpl2
+
+USES=		zip libtool
+GNU_CONFIGURE=	yes
+CONFIGURE_ARGS=	--disable-dependency-tracking \
+		--enable-shared --enable-static \
+		--enable-dtls --enable-opensslextra --enable-ipv6 \
+		--enable-dsa --enable-dh --enable-ecc --enable-sni \
+		--enable-ripemd --enable-sha512
+
+USE_LDCONFIG=	yes
+PORTDOCS=	*
+
+post-configure:
+	@${REINPLACE_CMD} \
+		-e 's|$${prefix}/cyassl/include|$${prefix}/include/cyassl|' \
+		-e 's|$${prefix}/cyassl/lib|$${prefix}/lib/cyassl|' \
+		-e '/^pkgconfigdir/s|(libdir)|&data|' \
+		${WRKSRC}/Makefile
+
+post-install:
+	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libwolfssl.so
+
+.include <bsd.port.mk>


Property changes on: trunk/security/wolfssl/Makefile
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/security/wolfssl/distinfo
===================================================================
--- trunk/security/wolfssl/distinfo	                        (rev 0)
+++ trunk/security/wolfssl/distinfo	2015-07-15 23:44:00 UTC (rev 19598)
@@ -0,0 +1,2 @@
+SHA256 (wolfssl-3.4.6.zip) = 515e2b0f719bc9f9c66a20c22166b1395426cf230e3fce2ffb49c26aaf4c37f0
+SIZE (wolfssl-3.4.6.zip) = 2118363


Property changes on: trunk/security/wolfssl/distinfo
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/security/wolfssl/pkg-descr
===================================================================
--- trunk/security/wolfssl/pkg-descr	                        (rev 0)
+++ trunk/security/wolfssl/pkg-descr	2015-07-15 23:44:00 UTC (rev 19598)
@@ -0,0 +1,23 @@
+Wolfssl is an embedded SSL Library for programmers building security
+functionality into their applications and devices.
+
+Features
+  SSL version 3 and TLS versions 1, 1.1 and 1.2 (client and server)
+  Minimum size of 60-100kb, depending on build options
+  Runtime memory usage between 5-50kb
+  DTLS support (client and server)
+  OpenSSL compatibility layer
+  zlib compression support
+  integration in MySQL, stunnel, Lighttpd availible.
+  MD2, MD4, MD5, SHA-1, RIPEMD, HMAC, DES, 3DES, AES, ARC4, TWOFISH, BLOWFISH,
+  RSA, DSS, DH, and PKCS#5 PBKDF2
+  ia32 assembly for AES, 3DES, BLOWFISH, TWOFISH, ARC4, MD5, SHA, and RIPEMD
+  SSE2 instructions for Large Integers
+  Simple API
+  Interchangeable crypto and certificate libraries
+  PEM and DER certificate support
+  Very fast
+
+LICENSE: GPL2 with FOSS extension
+
+WWW: http://www.yassl.com/


Property changes on: trunk/security/wolfssl/pkg-descr
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/security/wolfssl/pkg-plist
===================================================================
--- trunk/security/wolfssl/pkg-plist	                        (rev 0)
+++ trunk/security/wolfssl/pkg-plist	2015-07-15 23:44:00 UTC (rev 19598)
@@ -0,0 +1,184 @@
+bin/wolfssl-config
+include/cyassl/callbacks.h
+include/cyassl/certs_test.h
+include/cyassl/crl.h
+include/cyassl/ctaocrypt/aes.h
+include/cyassl/ctaocrypt/arc4.h
+include/cyassl/ctaocrypt/asn.h
+include/cyassl/ctaocrypt/asn_public.h
+include/cyassl/ctaocrypt/blake2-impl.h
+include/cyassl/ctaocrypt/blake2-int.h
+include/cyassl/ctaocrypt/blake2.h
+include/cyassl/ctaocrypt/camellia.h
+include/cyassl/ctaocrypt/chacha.h
+include/cyassl/ctaocrypt/coding.h
+include/cyassl/ctaocrypt/compress.h
+include/cyassl/ctaocrypt/des3.h
+include/cyassl/ctaocrypt/dh.h
+include/cyassl/ctaocrypt/dsa.h
+include/cyassl/ctaocrypt/ecc.h
+include/cyassl/ctaocrypt/error-crypt.h
+include/cyassl/ctaocrypt/fips_test.h
+include/cyassl/ctaocrypt/hc128.h
+include/cyassl/ctaocrypt/hmac.h
+include/cyassl/ctaocrypt/integer.h
+include/cyassl/ctaocrypt/logging.h
+include/cyassl/ctaocrypt/md2.h
+include/cyassl/ctaocrypt/md4.h
+include/cyassl/ctaocrypt/md5.h
+include/cyassl/ctaocrypt/memory.h
+include/cyassl/ctaocrypt/misc.h
+include/cyassl/ctaocrypt/mpi_class.h
+include/cyassl/ctaocrypt/mpi_superclass.h
+include/cyassl/ctaocrypt/pkcs7.h
+include/cyassl/ctaocrypt/poly1305.h
+include/cyassl/ctaocrypt/pwdbased.h
+include/cyassl/ctaocrypt/rabbit.h
+include/cyassl/ctaocrypt/random.h
+include/cyassl/ctaocrypt/ripemd.h
+include/cyassl/ctaocrypt/rsa.h
+include/cyassl/ctaocrypt/settings.h
+include/cyassl/ctaocrypt/settings_comp.h
+include/cyassl/ctaocrypt/sha.h
+include/cyassl/ctaocrypt/sha256.h
+include/cyassl/ctaocrypt/sha512.h
+include/cyassl/ctaocrypt/tfm.h
+include/cyassl/ctaocrypt/types.h
+include/cyassl/ctaocrypt/visibility.h
+include/cyassl/ctaocrypt/wc_port.h
+include/cyassl/error-ssl.h
+include/cyassl/ocsp.h
+include/cyassl/openssl/asn1.h
+include/cyassl/openssl/bio.h
+include/cyassl/openssl/bn.h
+include/cyassl/openssl/conf.h
+include/cyassl/openssl/crypto.h
+include/cyassl/openssl/des.h
+include/cyassl/openssl/dh.h
+include/cyassl/openssl/dsa.h
+include/cyassl/openssl/ec.h
+include/cyassl/openssl/ecdsa.h
+include/cyassl/openssl/engine.h
+include/cyassl/openssl/err.h
+include/cyassl/openssl/evp.h
+include/cyassl/openssl/hmac.h
+include/cyassl/openssl/lhash.h
+include/cyassl/openssl/md4.h
+include/cyassl/openssl/md5.h
+include/cyassl/openssl/ocsp.h
+include/cyassl/openssl/opensslconf.h
+include/cyassl/openssl/opensslv.h
+include/cyassl/openssl/ossl_typ.h
+include/cyassl/openssl/pem.h
+include/cyassl/openssl/pkcs12.h
+include/cyassl/openssl/rand.h
+include/cyassl/openssl/ripemd.h
+include/cyassl/openssl/rsa.h
+include/cyassl/openssl/sha.h
+include/cyassl/openssl/ssl.h
+include/cyassl/openssl/stack.h
+include/cyassl/openssl/ui.h
+include/cyassl/openssl/x509.h
+include/cyassl/openssl/x509v3.h
+include/cyassl/options.h
+include/cyassl/sniffer.h
+include/cyassl/sniffer_error.h
+include/cyassl/ssl.h
+include/cyassl/test.h
+include/cyassl/version.h
+include/wolfssl/callbacks.h
+include/wolfssl/certs_test.h
+include/wolfssl/crl.h
+include/wolfssl/error-ssl.h
+include/wolfssl/ocsp.h
+include/wolfssl/openssl/asn1.h
+include/wolfssl/openssl/bio.h
+include/wolfssl/openssl/bn.h
+include/wolfssl/openssl/conf.h
+include/wolfssl/openssl/crypto.h
+include/wolfssl/openssl/des.h
+include/wolfssl/openssl/dh.h
+include/wolfssl/openssl/dsa.h
+include/wolfssl/openssl/ec.h
+include/wolfssl/openssl/ecdsa.h
+include/wolfssl/openssl/engine.h
+include/wolfssl/openssl/err.h
+include/wolfssl/openssl/evp.h
+include/wolfssl/openssl/hmac.h
+include/wolfssl/openssl/lhash.h
+include/wolfssl/openssl/md4.h
+include/wolfssl/openssl/md5.h
+include/wolfssl/openssl/ocsp.h
+include/wolfssl/openssl/opensslconf.h
+include/wolfssl/openssl/opensslv.h
+include/wolfssl/openssl/ossl_typ.h
+include/wolfssl/openssl/pem.h
+include/wolfssl/openssl/pkcs12.h
+include/wolfssl/openssl/rand.h
+include/wolfssl/openssl/ripemd.h
+include/wolfssl/openssl/rsa.h
+include/wolfssl/openssl/sha.h
+include/wolfssl/openssl/ssl.h
+include/wolfssl/openssl/stack.h
+include/wolfssl/openssl/ui.h
+include/wolfssl/openssl/x509.h
+include/wolfssl/openssl/x509v3.h
+include/wolfssl/options.h
+include/wolfssl/sniffer.h
+include/wolfssl/sniffer_error.h
+include/wolfssl/ssl.h
+include/wolfssl/test.h
+include/wolfssl/version.h
+include/wolfssl/wolfcrypt/aes.h
+include/wolfssl/wolfcrypt/arc4.h
+include/wolfssl/wolfcrypt/asn.h
+include/wolfssl/wolfcrypt/asn_public.h
+include/wolfssl/wolfcrypt/blake2-impl.h
+include/wolfssl/wolfcrypt/blake2-int.h
+include/wolfssl/wolfcrypt/blake2.h
+include/wolfssl/wolfcrypt/camellia.h
+include/wolfssl/wolfcrypt/chacha.h
+include/wolfssl/wolfcrypt/chacha20_poly1305.h
+include/wolfssl/wolfcrypt/coding.h
+include/wolfssl/wolfcrypt/compress.h
+include/wolfssl/wolfcrypt/curve25519.h
+include/wolfssl/wolfcrypt/des3.h
+include/wolfssl/wolfcrypt/dh.h
+include/wolfssl/wolfcrypt/dsa.h
+include/wolfssl/wolfcrypt/ecc.h
+include/wolfssl/wolfcrypt/ed25519.h
+include/wolfssl/wolfcrypt/error-crypt.h
+include/wolfssl/wolfcrypt/fe_operations.h
+include/wolfssl/wolfcrypt/fips_test.h
+include/wolfssl/wolfcrypt/ge_operations.h
+include/wolfssl/wolfcrypt/hc128.h
+include/wolfssl/wolfcrypt/hmac.h
+include/wolfssl/wolfcrypt/integer.h
+include/wolfssl/wolfcrypt/logging.h
+include/wolfssl/wolfcrypt/md2.h
+include/wolfssl/wolfcrypt/md4.h
+include/wolfssl/wolfcrypt/md5.h
+include/wolfssl/wolfcrypt/memory.h
+include/wolfssl/wolfcrypt/misc.h
+include/wolfssl/wolfcrypt/mpi_class.h
+include/wolfssl/wolfcrypt/mpi_superclass.h
+include/wolfssl/wolfcrypt/pkcs7.h
+include/wolfssl/wolfcrypt/poly1305.h
+include/wolfssl/wolfcrypt/pwdbased.h
+include/wolfssl/wolfcrypt/rabbit.h
+include/wolfssl/wolfcrypt/random.h
+include/wolfssl/wolfcrypt/ripemd.h
+include/wolfssl/wolfcrypt/rsa.h
+include/wolfssl/wolfcrypt/settings.h
+include/wolfssl/wolfcrypt/sha.h
+include/wolfssl/wolfcrypt/sha256.h
+include/wolfssl/wolfcrypt/sha512.h
+include/wolfssl/wolfcrypt/tfm.h
+include/wolfssl/wolfcrypt/types.h
+include/wolfssl/wolfcrypt/visibility.h
+include/wolfssl/wolfcrypt/wc_port.h
+lib/libwolfssl.a
+lib/libwolfssl.so
+lib/libwolfssl.so.0
+lib/libwolfssl.so.0.0.1
+libdata/pkgconfig/wolfssl.pc


Property changes on: trunk/security/wolfssl/pkg-plist
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property


More information about the Midnightbsd-cvs mailing list