4

I upgraded to 22.04 and now encfs segfaults when I try to mount my encrypted directory (which had been in use for many years now)

1 Answers1

4

Also ran into this, and was able to move forward by following the advice at https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1014193

In /etc/ssl/openssl.cnf (the name of this file seems to have changed in the past) make sure you have these sections:

[openssl_init]
providers = provider_sect
[provider_sect]
default = default_sect
legacy = legacy_sect

[default_sect]
activate = 1
[legacy_sect]
activate = 1
Karol
  • 141