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:

61 questions
1
vote
1 answer

How to run Java SpringBoot apps in Alpine with OpenSSL

Problem Running a Java application in Alpine Linux breaks when TLS calls are made Some libraries like Apache's commons-crypto uses Native libraries like openssl for some of the calls Specifically…
Marcello DeSales
  • 21,361
  • 14
  • 77
  • 80
1
vote
1 answer

NodeJS aes gcm invalid suite type error

I am trying to use default crypto package from node and encrypt some data using aes-256-gcm mode. The code looks like below: var crypto = require('crypto'); function encrypt() { var sessionKey = Buffer.from(crypto.randomBytes(32)); const iv…
1
vote
1 answer

Does cached SSL session hold previous X.509 certificate info?

When we re-use previously saved SSL_SESSION, does the reused SSL session have orignal X.509 peer certificate? My code crashes very infrequently and investigation showed that the SSL session is reused and the some fields of peer…
Chul-Woong Yang
  • 1,223
  • 10
  • 17
1
vote
0 answers

nexus 3.2 on docker alpine 3.5 (libressl)

I run nexus 3.2 in a docker container running alpine linux 3.4 without problems. I started to upgrade to alpine linux 3.5 which uses libressl, and now nexus will not run using https. Is this a known issue ?
1
vote
0 answers

Building python-cryptography with LibreSSL on Windows

I'd like to build cryptography module for Python 3.5 on Windows 7 x64 with Visual Studio 2015 and link it to LibreSSL. I tried to follow the guide in the docs for manual builds and have set INCLUDE and LIB to appropriate LibreSSL dirs. But I'm…
lu4nik
  • 17
  • 5
0
votes
1 answer

NotOpenSSLWarning: urllib3 v2.0 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'LibreSSL 2.8.3' error using Selenium on MAC

I am trying to open a website with selenium, currently trying with youtube. However when I run my program it takes ages for it load the website. I ran the same code on my windows pc but there I had no problems. I have a good and stable internet…
Adam
  • 1
  • 1
0
votes
0 answers

"could not load PEM client certificate LibreSSL error error:02FFF002:system" error when running curl on MacOS - stuck

I seem to be completely stuck with my current MacOS system where I am simply unable to call a curl command without getting the following response: curl: (58) could not load PEM client certificate, LibreSSL error error:02FFF002:system…
remi90
  • 341
  • 1
  • 4
  • 20
0
votes
0 answers

Issue while using vrf-rs crate Rust,

I am using the vrf-rs library (https://github.com/witnet/vrf-rs) and am encountering an error when calling the BN_CTX_free method. This method is used to deallocate memory for the BN_CTX object, which is used internally by the library for allocating…
Vinay Sawant
  • 368
  • 2
  • 7
  • 23
0
votes
0 answers

Building ruby 2.7.0 fails with openssl

I'm trying to build ruby 2.7.0 from source but I get some errors with openssl/libressl after doing make: compiling ossl_ocsp.c ossl_ocsp.c:1096:38: error: incomplete definition of type 'struct ocsp_basic_response_st'         sk_X509_num(x509s) &&…
0
votes
0 answers

Decryption using LibreSSL

Hi i'm tring to decrypt using libressl from the command line how could i do? This is the way I encrypt openssl enc -aes-128-gcm -d -in test -out test.enc -p -S "01010110" it return to me "bad decryption" but the result in the file is correct! What…
0
votes
0 answers

Building LibreSSL for use in a C++ project

I am trying to write a C++ project using libressl. I have built the package and followed the instructions here however I have been unable to locate the header files (or any files from the make install actually) for the project. I am fairly new to…
John554
  • 145
  • 1
  • 7
0
votes
1 answer

LibreSSL SSL_connect: Broken pipe in connection to bitbucket.org:443

I used to pull and push bitbucket repos using GitHub desktop earlier, but for the last couple of days, I started getting this error and I'm unbale to push or pull my changes. fatal: unable to access 'https://bitbucket.org/<<>>/': LibreSSL…
Ajay
  • 33
  • 1
  • 5
0
votes
1 answer

How can I make "distinguished name" configurable via environment variables?

I am using libressl on Alpine with the following versions: $ cat /etc/os-release NAME="Alpine Linux" ID=alpine VERSION_ID=3.14.2 PRETTY_NAME="Alpine Linux v3.14" HOME_URL="https://alpinelinux.org/" BUG_REPORT_URL="https://bugs.alpinelinux.org/" $…
Arda Aytekin
  • 1,231
  • 14
  • 24
0
votes
1 answer

Server uses LibreSSL and Client uses wolfSSL.. Will this communication be success? Please advice

My server running on PC uses LibreSSL My client running on board uses wolfSSL Will handshake be success?
Dilip ND
  • 107
  • 1
  • 6
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
  • 11,937
  • 17
  • 63
  • 152