.gitignore


Log

Author Commit Date CI Message
Brent Cook 3fb9e63b 2018-03-14T07:29:04 bump base requirement to Windows Vista, use builtin inet_ntop/pton
kinichiro b38d7f0f 2017-12-22T23:32:22 Add regress asn1evp
kinichiro 03502b8d 2017-09-10T12:49:24 Add *.5 manpages in libcrypto/man/
kinichiro f7cf93fd 2017-07-10T22:35:09 Add regression test freenull
kinichiro 048625cf 2017-04-22T23:08:17 Add freezero support
kinichiro cb73e4be 2017-03-11T22:28:24 Add regress tls_prf
kinichiro c61c9821 2017-03-15T21:02:22 Add support for getpagesize
Brent Cook 3ba2699d 2017-02-07T07:53:52 ignore mandoc db, compat files
kinichiro 7dd0650d 2017-01-26T13:58:27 Add inet_ntop and memmem for ocspcheck
Brent Cook 93754dc5 2017-01-24T06:06:07 initial ocspcheck integration
kinichiro 5a351086 2017-01-06T09:05:59 Add regression test ssl_versions
Brent Cook 77a2a9f3 2016-11-05T08:47:54 remove check-in .def and ignore .sym files
kinichiro 5ea2a55c 2016-08-30T00:57:10 enable tls_ext_alpn regression test - add tls_ext_alpn entry for automake and cmake - add tests/tls_ext_alpn* to .gitignore
Brent Cook b28e5bed 2015-10-18T10:51:09 include tap-driver.sh in the source repo Newer autotools appears to install it automatically, but not all do.
Brent Cook c8c23ad8 2015-10-18T10:36:31 make it clear that we skipped 64-bit time_t tests
Brent Cook 0197a589 2015-10-18T09:28:10 Windows compatibility fixes VS2013 has trouble with relative include paths for apps/openssl, so move certhash_win/apps_win.c back to apps/openssl. gmtime_r on mingw64 fails with negative time_t, override gmtime_s fails all of the time unit tests, override SHUT_RD/WR are defined in newer mingw64 headers, check before overriding
Brent Cook 4298ac93 2015-10-14T23:53:52 include timegm fallback
Brent Cook 8c90be2a 2015-09-13T11:56:41 allow nc to build on linux and os x
Brent Cook 627b0261 2015-09-13T11:33:20 ignore manpages
Brent Cook 854f4f69 2015-09-12T07:48:06 add 'nc' to the distribution as an example of libtls client and server
Brent Cook b6aded05 2015-09-10T07:18:08 ensure headers are sanitized before release When a public header is removed, we need to ensure it gets removed in the release distribution as well. Also, remove nonexistent *.he exclude.
Brent Cook 4078416c 2015-09-07T00:40:20 adjust order for ! .gitignore rule precedence
Brent Cook c66d80a4 2015-08-03T06:56:59 add win32-specific explicit_bzero implementation
Brent Cook 5d8a1cf7 2014-07-10T22:06:10 add initial CMake and Visual Studio build support This moves the compatibility include files from include to include/compat so we can use the awful MS C compiler <../include/> trick to emulate the GNU #include_next extension. This also removes a few old compat files we do not need anymore.
Brent Cook 7a4a37cf 2015-07-20T01:09:00 remove generated version file
Brent Cook fafc3e47 2015-07-16T17:52:50 derive VERSION from opensslv.h from upstream
Brent Cook 45a7a439 2015-06-29T22:51:19 ignore more imported test files
Brent Cook aed0eee7 2015-06-05T22:35:29 add libtls-standalone COPYING file
Brent Cook b4a6a615 2015-06-05T04:31:56 refactor win32 shims into posix_win.c this also adds a rename shim that allows overwrites
Brent Cook 769d58e4 2015-05-02T01:40:33 further refactoring, working libtls-standalone
Brent Cook d3771a41 2015-05-01T07:18:12 refactor configure into separate m4 macros this allows for some reusability with libtls
Brent Cook 1a369f0f 2015-05-03T22:25:22 ship manpages with libtls-standalone
Brent Cook 28353c1d 2015-04-30T04:44:35 stub in initial libtls standalone tree
Brent Cook 51bfd492 2015-05-06T22:37:41 add app tests from regress/usr.bin/openssl These are added directly rather than imported by update.sh since they require local modifications and its not worth breaking everyone's git forks yet to import them through cvs2git.
Brent Cook 45065de1 2015-03-21T19:04:54 rework tests Makefile.am There are so many test exceptions that need handling that it is easier to simply edit it directly rather than doing autogeneration anymore. This also puts biotest and pidwraptest behind a new --enable-extratests option, so they are easy to run but are not enabled by default.
Brent Cook 701aa50e 2015-03-01T17:16:00 ignore temp windows library build files
Brent Cook 28311d43 2015-02-14T18:51:44 conditionally build certhash into openssl(1) For now, look for openat and symlink. We may switch to just needing symlink later.
Brent Cook be5d0cca 2015-02-06T20:17:31 update with latest, add more tests this adds the new bytestring apis and new regression tests
Dmitry Eremin-Solenikov a40fccc7 2014-12-08T02:11:04 Update .gitignore Add gost test suite and camellia cipher dir to .gitignore. Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Brent Cook 03cd45e2 2014-12-06T18:43:58 Enable optimized crypto operations for x86_64 This adds initial support for assembly crypto acceleration on x86_64 for ELF (Linux, *BSD, Solaris) and Mach-O (OS-X) systems. The build method is a little different than OpenSSL and OpenBSD. All the .s files are generated ahead of time when the tarball is generated, so there are no complicated makefile rules at configure/build time. This also means the builds are faster and perl is not required on the build system. Thanks to Wouter Clarie for providing the initial cleanup and patch that this is based on.
Brent Cook 976f64d9 2014-12-06T18:59:25 read all library versions directly from files This makes building and testing easier because the library Makefile.am files are use directly rather than as templates. Thanks to Wouter Clarie for the idea.
Brent Cook 13035fa6 2014-12-06T11:20:56 simplify building the apps Makefile Remove extra machinery in favor of a plain-old Makefile.am. Tighten up what files are copied on build, package a simple openssl.cnf.
Brent Cook b3270494 2014-12-04T22:37:22 add support for building libtls Use './configure --enable-libtls' to build the library and install the associated manpages. Note that the API and ABI of this library may change still, though feedback is welcome. ok deraadt@ jsing@ tedu@
Brent Cook 43e041a5 2014-11-21T07:09:49 don't ignore a non-existent file
Brent Cook 1bd0c2fb 2014-11-18T08:04:18 ignore gost and camellia dirs
Brent Cook 6b729df5 2014-10-14T22:23:16 update gitignore to see changelog
Brent Cook 46b6df7c 2014-08-12T06:20:58 remove configure.am.tpl, pull in VERSION directly from wouter@
Brent Cook 0a74a4d4 2014-07-27T06:11:56 add strndup/strnlen compat functions from OpenBSD
Brent Cook ea6e7116 2014-07-21T18:57:06 build openbsd memmem implementation for explicit_bzero test memmem is not always available, and not all memmem's work the same way ok beck@ guenther@
Brent Cook 1b1bce16 2014-07-17T23:58:46 update to newly-refactored arc4random compatibility shims the thread-private bits can move next ok beck@
Brent Cook 596ef458 2014-07-12T03:36:32 source library version from a common place, speed man builds grab library version from VERSION file build manpages only on changes ok beck@
Brent Cook e1414735 2014-07-12T02:40:05 hide unit test build results in .gitignore ok beck@
Brent Cook 65944782 2014-07-12T03:34:08 add platform libraries to libcompat's LIBADD list ok beck@
Bob Beck 77b34fe0 2014-07-11T10:08:57 Ignore .1 man pages, and fix update to include new opensslfeatures.h ok bcook@
Charlie Root 4d4e8bb9 2014-07-11T04:17:07 ignore generated COPYING file
Charlie Root ab3d9838 2014-07-11T04:14:48 wording changes and initial stab at crypto man pages. still need to get man links working and ssl and apps man pages added.
Brent Cook b3399bfa 2014-07-10T22:13:17 update ignores
Charlie Root abe7bee3 2014-07-10T08:36:47 Make things build again - add some missing headers ok bcook@
Brent Cook 2b6dbc39 2014-07-10T06:21:51 initial top-level import of subdirectories