Questions tagged [libressl]

LibreSSL is a version of the TLS/SSL protocol forked from OpenSSL.

LibreSSL is a version of the //crypto stack forked from in 2014.

External Links:

50 questions
0
votes
1 answer

How to use -pubin with openssl (from libressl)?

https://www.keycdn.com/blog/openssl-tutorial The following text from the above page does not make sense to me. If that file doesn't also include the private key, you must indicate so using -pubin The text before it should refers to private key…
user1424739
  • 7,204
  • 10
  • 38
  • 67
0
votes
0 answers

cmake CLion - OpenSSL and LibreSSL

In my project I need both OpenSSL (for jwt-cpp) and LibreSSL (for oatpp). LibreSSL I've installed from sources into specific path in my project. Oatpp compiles and works with it. Jwt I use as submodule in my project. This needs OpenSSL and it founds…
nicram
  • 255
  • 1
  • 5
  • 18
0
votes
0 answers

TLS implementation: (Using LibreSSL library) Failing handshake on client side when server certificate has wildcard SAN of type: *test.example.com

Problem: Server: Subject Alternative Name(SAN) in server certificate: *test.example.com Client: Server Name Indicator(SNI) given from client side: mytest.example.com Result: handshake fail! Although for similar scenario, Subject Alternative…
0
votes
0 answers

Does OpenSSL version need an update?

This is all new to me so I'm a little bit confused. Although I have no warnings or issues yet I couldn't leave it alone... When I checked my openssl version with $ openssl version I got LibreSSL 2.8.3 Latest stable release for LibreSSL is 3.1.4…
0
votes
1 answer

R install.packages - 'curl' call had nonzero exit status

At the moment I am getting this error and don't really know how to fix it. I only get it while working on a Packrat R project. install.packages("dplyr") curl: (35) LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to cran.rstudio.com:443 Error…
Steffen Moritz
  • 4,758
  • 11
  • 30
  • 46
0
votes
1 answer

Where are the header files & libraries of the OpenSSL package that comes with macOS?

I just installed macOS Catalina version 10.15.4 (19E287). It comes with OpenSSL (well actually LibreSSL) installed. $ openssl version LibreSSL 2.6.5 I'm installing PostgreSQL from source "with support for SSL (encrypted) connections", by supplying…
ma11hew28
  • 106,283
  • 107
  • 420
  • 616
0
votes
1 answer

LibreSSL provide authentication tag for aes-256-gcm

I'm currently running my command as so: /usr/local/Cellar/libressl/3.0.2/bin/openssl enc -aes-256-gcm -d -in enc.token -out dec.token -iv {IV} -K {KEY} and the output of that command is bad decrypt. My output file also looks like it's only half…
user3613290
  • 423
  • 3
  • 16
0
votes
0 answers

Unable to verify smime signature

I've signed a file like this, using LibreSSL 2.8.3 on macOS: openssl smime -binary -sign -certfile WWDR.pem -signer passcertificate.pem \ -inkey passkey.pem -in manifest.json -out signature \ -outform DER -passin…
Gargoyle
  • 7,401
  • 10
  • 55
  • 99
0
votes
1 answer

If intermediate certificate has expiry date after root certificate, does it throw any error with openssl?

If intermediate certificate has expiry date after root certificate, does it throw any error with openssl? I recently encountered openssl error 7 : X509_V_ERR_CERT_SIGNATURE_FAILURE with cert chain . I wonder if above question could cause this issue…
Emad mohd
  • 33
  • 5
0
votes
2 answers

FacebookAds\Exception\Exception, Code: 35: LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to graph.facebook.com:443

Seemingly out of the blue (i.e. I haven't edited code recently), I've started receiving a lot of these error messages in my cron jobs in the past couple days: FacebookAds\Exception\Exception, Code: 35: LibreSSL SSL_connect: SSL_ERROR_SYSCALL in…
Ryan
  • 17,332
  • 24
  • 141
  • 270
0
votes
1 answer

How to suppress stdout and stderr output for openssl command?

Is it possible to disable the stdout and stderr output for the following command? req -x509 -sha256 -nodes -days 365 -newkey rsa:2048 -keyout ./private.key -out ./mycert.crt -subj "/C=DE/ST=BW/L=Karlsruhe/O=foobar/OU=foobar/CN=foobar" The command…
OCram85
  • 739
  • 1
  • 7
  • 22
0
votes
0 answers

Problem compiling AES-NI instructions on OSX 10.6 Snow Leopard

On my OSX 10.6.8 (Snow Leopard) Mac mini 2.53Ghz (Late 2009 Intel P8700) I have tried to compile libressl-2.8. Configuration finished smoothly but during the compilation of ./crypto/aes/aesni-macosx-x86_64.S it failed with "no such instruction:…
Terry
  • 1,099
  • 7
  • 22
0
votes
1 answer

openssl / libressl ocsp responder missing response for expired/revoked certificates

For some reason, an OpenSSL OCSP responder doesn't seem to deliver any responses for expired or revoked certificates. For valid certificates, everything is fine. Tested this on LibreSSL 2.2.7 (on MacOS). For reference, I also tested this on the very…
itchee
  • 800
  • 4
  • 20
0
votes
0 answers

Issue loading certificate using libcrypto (libressl)

I'm trying to load a certificate using libcrypto. The certificate was generated using keytool and openssl. This is my code #include #include int main(int argc, char **argv) { SSL* ssl; SSL_CTX* ctx; …
Abhijith
  • 2,442
  • 3
  • 16
  • 27
0
votes
1 answer

ssh_exchange_identification: Connection closed by remote host Mac

I'm trying to ssh to a mac PC from a Ubuntu 16.04 machine. I'm using this command ssh username@192.168.17.74 -p 9900 The open port is 9900 but I get this error ssh_exchange_identification: Connection closed by remote host But if I try ssh…
Harsh Wardhan
  • 2,007
  • 8
  • 31
  • 44