Go to file
2015-06-11 08:47:12 -05:00
apps rework CFLAGS/CPPFLAGS settings during configuration 2015-03-22 07:43:55 -05:00
crypto refactor win32 shims into posix_win.c 2015-06-05 04:50:18 -05:00
include refactor win32 shims into posix_win.c 2015-06-05 04:50:18 -05:00
libtls-standalone add libtls-standalone COPYING file 2015-06-05 22:35:29 -05:00
m4 always check if ssp needs to be linked 2015-06-11 08:47:12 -05:00
man update man links 2015-05-25 22:59:14 -05:00
patches set stdin/out/err to binary mode on Windows 2015-06-05 04:50:18 -05:00
scripts enable libtls by default 2015-03-19 00:39:50 -05:00
ssl rework CFLAGS/CPPFLAGS settings during configuration 2015-03-22 07:43:55 -05:00
tests use correct binary on native windows builds 2015-06-05 04:50:17 -05:00
tls revert changes to libtls-standalone Makefile.am that ended up in tls 2015-05-23 19:27:57 -05:00
.gitignore add libtls-standalone COPYING file 2015-06-05 22:35:29 -05:00
.travis.yml only use the specific build matrix 2015-01-31 22:24:31 -06:00
AUTHORS initial top-level import 2014-07-10 06:07:09 -05:00
autogen.sh initial top-level import 2014-07-10 06:07:09 -05:00
ChangeLog update changelog 2015-06-05 05:56:18 -05:00
config Add an OpenSSL compatible ./config wrapper 2014-10-31 07:35:06 -05:00
configure.ac refactor configure into separate m4 macros 2015-05-23 19:27:57 -05:00
dist-win.sh enable libtls by default 2015-03-19 00:39:50 -05:00
dist.sh enable libtls by default 2015-03-19 00:39:50 -05:00
gen-coverage-report.sh add branch coverage, skip coverage check of tests themselves 2015-05-07 07:56:19 -05:00
libcrypto.pc.in Use the individual library versions in LibreSSL pc files 2014-12-14 16:59:26 -06:00
libressl.pub Add the public signing key so it can be fetched from github 2014-07-14 20:50:52 -06:00
libssl.pc.in Use the individual library versions in LibreSSL pc files 2014-12-14 16:59:26 -06:00
libtls.pc.in Use the individual library versions in LibreSSL pc files 2014-12-14 16:59:26 -06:00
Makefile.am enable libtls by default 2015-03-19 00:39:50 -05:00
Makefile.am.common rework CFLAGS/CPPFLAGS settings during configuration 2015-03-22 07:43:55 -05:00
NEWS initial top-level import 2014-07-10 06:07:09 -05:00
OPENBSD_BRANCH tie master libressl branch to openbsd master 2014-07-31 22:08:30 -05:00
openssl.pc.in add platform libraries to libcompat's LIBADD list 2014-07-12 03:34:08 -05:00
README add OS-specific build notes 2015-06-11 06:26:20 -05:00
README.windows add OS-specific build notes 2015-06-11 06:26:20 -05:00
update.sh set stdin/out/err to binary mode on Windows 2015-06-05 04:50:18 -05:00
VERSION set version to 2.2.0 on master 2015-03-19 10:28:54 -05:00

This package is the official portable version of LibreSSL
	(http://www.libressl.org).

LibreSSL is a fork of OpenSSL 1.0.1 developed by the OpenBSD project.
    (http://www.openbsd.org).

Compatibility with OpenSSL:

 LibreSSL is API compatible with OpenSSL 1.0.1, but does not yet include all
 new APIs from OpenSSL 1.0.2 and later. LibreSSL also includes APIs not yet
 present in OpenSSL. The current common API subset is OpenSSL 1.0.1.

 LibreSSL it is not ABI compatible with any release of OpenSSL, or necessarily
 earlier releases of LibreSSL. You will need to relink your programs to
 LibreSSL in order to use it, just as in moving between major versions of OpenSSL.
 LibreSSL's installed library version numbers are incremented to account for
 ABI and API changes.

Compatibility with other operating systems:

 While primarily developed on and taking advantage of APIs available on OpenBSD,
 the LibreSSL portable project attempts to provide working alternatives for
 other operating systems, and assists with improving OS-native implementations
 where possible.

At the time of this writing, LibreSSL is know to build and work on:

 - Linux (kernel 3.17 or later recommended)
 - FreeBSD (tested with 9.2 and later)
 - NetBSD (tested with 6.1.5)
 - HP-UX (11i)
 - Solaris (11 and later preferred)
 - Mac OS X (tested with 10.8 and later)
 - AIX (5.3 and later)

LibreSSL also supports the following Windows environments:
 - Microsoft Windows (Vista or higher, x86 and x64)
 - Wine (32-bit and 64-bit)
 - Builds with Mingw-w64 and Cygwin

Official release tarballs are available at your friendly neighborhood
OpenBSD mirror in directory LibreSSL, e.g.:

	http://ftp.openbsd.org/pub/OpenBSD/LibreSSL/

although we suggest that you use a mirror:

	http://www.openbsd.org/ftp.html

The LibreSSL portable build framework is also mirrored in Github:

	https://github.com/libressl-portable/portable

Please report bugs either to tech@openbsd.org, or to the github issue tracker:

	https://github.com/libressl-portable/portable/issues

If you have checked this source using Git, follow these initial steps to
prepare the source tree for building:

 1. ensure you have the following packages installed:
	automake, autoconf, bash, git, libtool, perl, pod2man
 2. run './autogen.sh' to prepare the source tree for building
    or run './dist.sh' to prepare a tarball.

Once you have a source tree from Git or FTP, run these commands to build and
install the package on most systems.

  ./configure   # see ./configure --help for configuration options
  make check    # runs builtin unit tests
  make install  # set DESTDIR= to install to an alternate location

OS specific build information:

 - HP-UX (11i)
   Set the UNIX_STD environment variable to '2003' before running 'configure'
   in order to build with the HP C/aC++ compiler. See the "standards(5)" man
   page for more details.

    export UNIX_STD=2003
    ./configure
    make

 - Windows - Mingw-w64
   LibreSSL builds against relatively recent versions of Mingw-w64, not to be
   confused with the original mingw.org project.  Mingw-w64 3.2 or later
   should work. See README.windows for more information