aboutsummaryrefslogtreecommitdiff
path: root/security/bearssl
Commit message (Collapse)AuthorAgeFilesLines
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* This port doesn't build for submitter with threaded make (on powerpc64).Mark Linimon2019-02-181-0/+2
| | | | | | | | | | | | | Add MAKE_JOBS_UNSAFE=yes to fix build. While here, pet portlint. PR: 235528 Submitted by: Piotr Kubaj Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=493232
* Update to 0.6Baptiste Daroussin2018-08-203-4/+5
| | | | Notes: svn path=/head/; revision=477665
* Update to 0.5 [1]Baptiste Daroussin2017-09-293-18/+22
| | | | | | | | | | | | While here: port related changes: - Respect PREFIX - Build a real shared library (with SONAME) PR: 222483 [1] Submitted by: takefu@airport.fm [1] Notes: svn path=/head/; revision=450903
* security/bearssl: Fix build with ClangMark Felder2017-04-091-2/+2
| | | | | | | | | Using MAKE_ARGS allows building with clang. Submitted by: bapt Notes: svn path=/head/; revision=438117
* security/bearssl: Fix shared library installationMark Felder2017-04-091-3/+2
| | | | | | | | | While here remove useless USES=compiler Reported by: bapt Notes: svn path=/head/; revision=438116
* security/bearssl: Update to 0.4Mark Felder2017-04-093-13/+11
| | | | | | | | Now requires GCC. The Clang build is not functional as it fails to link. The cause is under investigation. Notes: svn path=/head/; revision=438115
* Bump PORTREVISIONs for ports depending on the canonical version of GCC andGerald Pfeifer2017-04-011-1/+1
| | | | | | | | | | | | | | | | | lang/gcc which have moved from GCC 4.9.4 to GCC 5.4 (at least under some circumstances such as versions of FreeBSD or platforms). This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using using Mk/bsd.octave.mk which in turn has USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++14-lang, c++11-lang, c++0x, c11, or gcc-c++11-lib. PR: 216707 Notes: svn path=/head/; revision=437439
* security/bearssl: Update to 0.2Mark Felder2017-01-092-5/+5
| | | | | | | Changelog: https://bearssl.org/changelog.html Notes: svn path=/head/; revision=431029
* Bump PORTREVISIONS for ports depending on the canonical version of GCC andGerald Pfeifer2016-11-201-1/+1
| | | | | | | | | | | | lang/gcc which have moved from GCC 4.8.5 to GCC 4.9.4 (at least under some circumstances such as versions of FreeBSD or platforms). In particular that is ports with USE_GCC=yes, USE_GCC=any, or one of gcc-c++11-lib, openmp, nestedfct, c++11-lib as well as c++14-lang, c++11-lang, c++0x, c11 requested via USES=compiler. Notes: svn path=/head/; revision=426566
* security/bearssl: Packaging improvementsMark Felder2016-11-041-2/+3
| | | | | | | Reported by: mat Notes: svn path=/head/; revision=425321
* security/bearssl: Fix build on FreeBSD 9.3Mark Felder2016-11-031-0/+2
| | | | Notes: svn path=/head/; revision=425239
* BearSSL is an implementation of the SSL/TLS protocol (RFC 5246) writtenMark Felder2016-11-034-0/+59
in C. It aims at offering the following features: - Be correct and secure. In particular, insecure protocol versions and choices of algorithms are not supported, by design; cryptographic algorithm implementations are constant-time by default. - Be small, both in RAM and code footprint. For instance, a minimal server implementation may fit in about 20 kilobytes of compiled code and 25 kilobytes of RAM. - Be highly portable. BearSSL targets not only "big" operating systems like Linux and Windows, but also small embedded systems and even special contexts like bootstrap code. - Be feature-rich and extensible. SSL/TLS has many defined cipher suites and extensions; BearSSL should implement most of them, and allow extra algorithm implementations to be added afterwards, possibly from third parties. WWW: https://bearssl.org/ Notes: svn path=/head/; revision=425235