mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-16 20:21:58 +02:00
changelog * 79b1a99 Fixed comment. * b2ec203 Fixed carry propagation bug in m64 impl for P-256. * dda1f8a Harmonized behaviour when point length is invalid. * acc70b1 Typo fix in comment. * 946f5ba Added discard of unread appdata on explicit close. * 252dba9 Fixed carry propagation bug in P-256 'm62' implementation (found by Auke Zeilstra; consequences unclear, possibly some invalid curve attacks in static ECDH contexts). * 15b3af7 Typo fix in comment. * 69807a3 Fixed typo in comment. * fb4296c Fixed some errors in comments. * 4b60464 Fixed small display bug in debug tool. * b715b43 Fixed buffer overflow in private key decoding (wrong buffer length used in size check). * 2893441 Fixed a spurious warning on some compilers. * e4edfb8 Added support for getrandom()/getentropy(), and a fix for the RDRAND bug on AMD CPU (family 22). * 924921d Fixed mishandling of UTF-8 codepoints in the FDF0..FEDF range (these were unduly rejected when extracting names from certificates, thereby preventing use of the extra presentation forms of Arabic). * 9721b3e Fixed efficiency pre-test on RSA prime generation (no security issue, but RSA key generation with pubexp 5, 7 or 11 may be slightly more efficient). * ecdf897 Normalize use of BR_DOXYGEN_IGNORE. * c1bb535 Small workaround for CompCert compatibility. * 87a796d Fixed computing of intermediate buffer size for maximum-size RSA keys. * 6433cc2 Added detection for MIPS64 with n32 ABI. * 001d094 Some small performance improvements on 32-bit architectures. * 08eb078 Fixed fd leak in test code. * d5acc4f Made m64 implementations of elliptic curves the default (when available). * f0ddbc3 Added new 64-bit implementations of Curve25519 and P-256. * b2a08e9 Made ec_c25519_m62 implementation the default on supported architectures. * 52a69fe Fixed endianness in Curve25519 implementation (no consequence on security). Also added new Curve25519 code for 64-bit platforms. * fd98320 Cosmetic fix (value did not conform to its announced bit length, but this did not have bad consequences since br_i31_decode_mod() is lenient on that). * 431629d Changed speed benchmark for i31 to a 521-bit modulus. * c6ffcd2 Fixed warning on GCC 4.6 to 4.9 (macro redefinition). * 420f50c Added stand-alone RSA/PSS implementation. * 966078b Added SHAKE implementation. Signed-off-by: Khem Raj <raj.khem@gmail.com>
48 lines
2.0 KiB
BlitzBasic
48 lines
2.0 KiB
BlitzBasic
SUMMARY = "BearSSL is an implementation of the SSL/TLS protocol (RFC 5246) written in C"
|
|
DESCRIPTION = "BearSSL is an implementation of the SSL/TLS protocol (RFC \
|
|
5246) written 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."
|
|
HOMEPAGE = "https://bearssl.org"
|
|
|
|
SECTION = "libs"
|
|
|
|
inherit lib_package
|
|
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=1fc37e1037ae673975fbcb96a98f7191"
|
|
|
|
PV .= "+git${SRCPV}"
|
|
SRCREV = "79b1a9996c094ff593ae50bc4edc1f349f39dd6d"
|
|
SRC_URI = "git://www.bearssl.org/git/BearSSL;protocol=https \
|
|
file://0001-conf-Unix.mk-remove-fixed-command-definitions.patch \
|
|
file://0002-test-test_x509.c-fix-potential-overflow-issue.patch \
|
|
file://0001-make-Pass-LDFLAGS-when-building-shared-objects.patch \
|
|
"
|
|
|
|
# without compile errors like
|
|
# <..>/ld: build/obj/ghash_pclmul.o: warning: relocation against `br_ghash_pclmul' in read-only section `.text'
|
|
CFLAGS += "-fPIC"
|
|
|
|
S = "${WORKDIR}/git"
|
|
B = "${S}"
|
|
|
|
do_install() {
|
|
mkdir -p ${D}/${bindir} ${D}/${libdir}
|
|
install -m 0644 ${B}/build/brssl ${D}/${bindir}
|
|
install -m 0644 ${B}/build/libbearssl.so ${D}/${libdir}/libbearssl.so.6.0.0
|
|
ln -s libbearssl.so.6.0.0 ${D}/${libdir}/libbearssl.so.6
|
|
ln -s libbearssl.so.6.0.0 ${D}/${libdir}/libbearssl.so
|
|
}
|