Questions tagged [gnutls]

GnuTLS is a secure communications library implementing the SSL, TLS and DTLS protocols and technologies around them. It provides a simple C language application programming interface (API) to access the secure communications protocols as well as APIs to parse and write X.509, PKCS #12, OpenPGP and other required structures.

GnuTLS is a secure communications library implementing the SSL, TLS and DTLS protocols and technologies around them. It provides a simple C language application programming interface (API) to access the secure communications protocols as well as APIs to parse and write X.509, PKCS #12, OpenPGP and other required structures. It is aimed to be portable and efficient with focus on security and interoperability.

151 questions
2
votes
1 answer

Should I use OpenSSL or gnutls with Apache 2.4?

I went through a lengthy process removing mod_ssl and replaced it with gnutls because I wanted to use TLS 1.3. The difference I’ve noticed is gnutls doesn’t support older, legacy methods, only new ones. OpenSSL supports them all. Is that a better…
ajmcello
  • 71
  • 5
2
votes
1 answer

What causes gnutls "One of the involved algorithms has insufficient security level." error?

My evoluion mail (opensuse tumbleweed) complain about the mail server's certificate. It looks like gnutls reject the certificate. Can anyone give me some pointers to the problem? Thanks Information for package gnutls: Repository :…
Thuy Dang
  • 106
  • 1
  • 9
2
votes
1 answer

How to compile emacs 26.2 with gnutls on Centos 7?

I try to compile Emacs 26.2 on Centos 7. So I run ./configure But the script complains: configure: error: The following required libraries were not found: gnutls Maybe some development libraries/packages are missing? However yum tells me that…
halloleo
  • 9,216
  • 13
  • 64
  • 122
2
votes
0 answers

Is there any way to use git from behind a proxy on Ubuntu to clone github repositories without having to rebuild it myself with openssl?

Is there a working git for Ubuntu 18 which can clone git repositories form github from behind a proxy without running into the infamous GnuTLS recv error? Key question is this: Can this be done without having to rebuild one's own git package with…
2
votes
1 answer

Fixing gnutls which is prone to CVE-2018-16868

I am having a FreeBSD server and using pycurl as a library for doing the curl. Since it has gnutls too which is prone to CVE-2018-16868(Bleichenbacher type side-channel based padding attack), I am searching for a fix that can help in avoiding this…
Nikhil
  • 65
  • 1
  • 8
2
votes
1 answer

How to see if git binary is built against openssl or gnutls when git-http-fetch is not installed?

I need to check if the installed version of git on a number of systems is built against gnutls or openssl. A method to do this can be found here but relies on having binary git-http-fetch installed against which "ldd git-http-fetch" can be run. …
Jaglan Beta
  • 94
  • 1
  • 5
2
votes
1 answer

Compilation error in GCC on Linux

I am trying to compile my code for GnuTLS, but on compiling it gives the following errors. I have checked gnutls.h is present on my system in /usr/include/gnutls/. What else can be the cause? gcc -o tls.o tls.c /tmp/ccfyZ1Bd.o: In function `main':…
tarun
  • 41
  • 1
  • 2
2
votes
1 answer

Translate OpenSSL RSA encryption to GnuTLS

I am attempting to translate the following code from OpenSSL to GnuTLS for licencing reasons: BIO *bioKey = BIO_new(BIO_s_mem()); if (!bioKey) { DEBUG_ERROR("failed to allocate bioKey"); spice_disconnect_channel(channel); return…
Geoffrey
  • 10,843
  • 3
  • 33
  • 46
2
votes
0 answers

GnuTLS issue with HTTPS

I have installed debian Whizzy and Jessie successful but when I try doing some request via https, I got strange error $ wget https://google.com --2018-05-12 11:06:27-- https://google.com/ Resolving google.com (google.com)...…
thehuyvb
  • 190
  • 3
  • 12
2
votes
0 answers

FreeTDS static linking to PYMSSQL with GNUTLS support

I am trying to create a whl for pymssql that includes FreeTDS with GNUTLS support. My build is on cflinuxfs2 on docker which is based off ubuntu 14.04. This image includes gnutls, which I compiled FreeTDS R1_00 against with the…
2
votes
0 answers

How can I force PHP's cURL extension to use OpenSSL and not GnuTLS?

I have a PHPUnit testsuite running that passes successfully on my local machine, but fails on Travis CI. I've determined that the tests fail due to the cURL extension using GnuTLS instead of OpenSSL, and I don't know how to force it to use…
mitchdav
  • 695
  • 8
  • 12
2
votes
1 answer

Why websockets.c example of libonion gives error "Cant calculate SHA1 if gnutls is not compiled in!"

I am trying to run the websockets.c example of the libonion (https://github.com/davidmoreno/onion/tree/master/examples/websockets). However, when I run it, it gives this error. "[ERROR codecs.c:389] Cant calculate SHA1 if gnutls is not compiled in!…
E.Bülbül
  • 39
  • 1
  • 9
2
votes
3 answers

Bitbucket gnutls_handshake() failed: Error in the pull function

I am having an issue on newly created Ubuntu 16.04 OS with bitbucket. When I am cloning repo from bitbucket repository I am getting below error Cloning into 'my-demos'... fatal: unable to access …
anomepani
  • 1,796
  • 2
  • 25
  • 34
2
votes
0 answers

Apache2 Request on SSL waits until time-out expired to return data

I am working with a server that I recently inherited from a departed developer. The server returns XML documents via a REST-ful interface over an SSL port. For small documents, the data is returned quickly. For larger (say, larger than 1 MB), the…
Carey Gister
  • 141
  • 1
  • 9
2
votes
0 answers

Autotools add third party library into tarball

My question is similar to the following: automake third party libraries I have to add GnuTLS library to our projects tarball. My directory structure is: program/ | +--src/ | | | +-- *.cpp; *.hpp | +--lib/ | | | +--gnutls | | | …
Norbert
  • 302
  • 1
  • 9
  • 19
1 2
3
10 11