Skip to content

devkral/gnutls

This branch is 2960 commits behind gnutls/gnutls:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

7201467 · Dec 11, 2018
Oct 31, 2016
Nov 13, 2018
Nov 30, 2018
Apr 3, 2017
Aug 20, 2018
Jun 14, 2018
Jun 14, 2018
Jun 14, 2018
Dec 11, 2018
Jun 14, 2018
Dec 1, 2018
Jun 26, 2018
Nov 26, 2018
Dec 11, 2018
Nov 30, 2017
Nov 24, 2018
Nov 16, 2018
Aug 19, 2018
Nov 29, 2018
Aug 9, 2015
Nov 19, 2018
Jun 14, 2018
Jan 25, 2017
May 13, 2016
Nov 13, 2018
Dec 1, 2018
Nov 16, 2018
Feb 22, 2017
Jun 18, 2014
Jun 14, 2018
Dec 5, 2018
Nov 9, 2018
Nov 30, 2018
Jun 14, 2018
Nov 30, 2018

Repository files navigation

CII Best Practices

Branch CI system Status Coverage
Master Gitlab build status coverage report
Master Travis build status N/A
3.5.x Gitlab build status coverage report
3.5.x Travis build status N/A
3.3.x Gitlab build status N/A

GnuTLS -- Information for developers

GnuTLS implements the TLS/SSL (Transport Layer Security aka Secure Sockets Layer) protocol. Additional information can be found at www.gnutls.org.

This file contains instructions for developers and advanced users that want to build from version controlled sources. See INSTALL.md for building released versions.

We require several tools to check out and build the software, including:

The required software is typically distributed with your operating system, and the instructions for installing them differ. Here are some hints:

Debian/Ubuntu:

apt-get install -y dash git-core autoconf libtool gettext autopoint
apt-get install -y automake autogen nettle-dev libp11-kit-dev libtspi-dev libunistring-dev
apt-get install -y guile-2.0-dev libtasn1-6-dev libidn2-0-dev gawk gperf
apt-get install -y libunbound-dev dns-root-data bison help2man gtk-doc-tools
apt-get install -y texinfo texlive texlive-generic-recommended texlive-extra-utils

Fedora/RHEL:

yum install -y dash git autoconf libtool gettext-devel automake autogen patch
yum install -y nettle-devel p11-kit-devel autogen-libopts-devel libunistring-devel
yum install -y trousers-devel guile-devel libtasn1-devel libidn2-devel gawk gperf
yum install -y libtasn1-tools unbound-devel bison help2man gtk-doc texinfo texlive

Sometimes, you may need to install more recent versions of Automake, Nettle, P11-kit and Autogen, which you will need to build from sources.

Dependencies that are used during make check or make dist are listed below. Moreover, for basic interoperability testing you may want to install openssl and mbedtls.

Debian/Ubuntu:

apt-get install -y valgrind libasan1 libubsan0 nodejs softhsm2 datefudge lcov libssl-dev libcmocka-dev expect
apt-get install -y dieharder libpolarssl-runtime openssl abi-compliance-checker socat net-tools ppp lockfile-progs

Fedora/RHEL:

yum install -y valgrind libasan libasan-static libubsan nodejs softhsm datefudge lcov openssl-devel expect
yum install -y dieharder mbedtls-utils openssl abi-compliance-checker libcmocka-devel socat lockfile-progs

To download the version controlled sources:

$ git clone https://gitlab.com/gnutls/gnutls.git
$ cd gnutls

The next step is to bootstrap and ./configure:

$ ./bootstrap
$ ./configure

When built this way, some developer defaults will be enabled. See cfg.mk for details.

Then build the project normally, and run the test suite.

$ make
$ make check

To test the code coverage of the test suite use the following:

$ ./configure --enable-code-coverage
$ make && make check && make code-coverage-capture

Individual tests that may require additional hardware (e.g., smart cards) are:

$ sh tests/suite/testpkcs11

Building for windows

It is recommended to cross compile using Fedora and the following dependencies:

yum install -y wine mingw32-nettle mingw32-libtasn1 mingw32-gcc

and build as:

mingw32-configure --enable-local-libopts --disable-non-suiteb-curves --disable-doc --without-p11-kit
mingw32-make
mingw32-make check

Continuous Integration (CI)

We utilize two continuous integration systems, the gitlab-ci and travis. Gitlab-CI is used to test most of the Linux systems (see .gitlab-ci.yml), and is split in two phases, build image creation and compilation/test. The build image creation is done at the gnutls/build-images subproject and uploads the image at the gitlab.com container registry. The compilation/test phase is on every commit to gnutls project.

The Travis based CI, is used to test compilation on MacOSX based systems.

Contributing

See the contributing document.

Happy hacking!


Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved.

About

Mirror of official gnutls repository

Resources

License

Security policy

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C 79.8%
  • Assembly 11.7%
  • Shell 3.5%
  • Makefile 1.3%
  • C++ 1.0%
  • HTML 0.7%
  • Other 2.0%