Hello,
I investigate a bit more on the topic.
sudo apt-get install libssl1.0.0 libssl-dev
Reading package lists... Done
Building dependency tree
Reading state information... Done
libssl-dev is already the newest version (1.1.1-1ubuntu2.1~18.04.3).
libssl1.0.0 is already the newest version (1.0.2n-1ubuntu5.3).
0 upgraded, 0 newly installed, 0 to remove and 36 not upgraded.
So 1.0.2n is installed.
sudo locate libssl.so
/usr/lib/x86_64-linux-gnu/libssl.so.1.0.0
/usr/lib/x86_64-linux-gnu/libssl.so.1.1
So post recommend to inspect the so with ldd:
ldd /usr/lib/x86_64-linux-gnu/libssl.so.1.0.0
linux-vdso.so.1 (0x00007ffd903c5000)
libcrypto.so.1.0.0 => /usr/lib/x86_64-linux-gnu/libcrypto.so.1.0.0 (0x00007f0879225000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f0878e34000)
libdl.so.2 => /lib/x86_64-linux-gnu/libdl.so.2 (0x00007f0878c30000)
/lib64/ld-linux-x86-64.so.2 (0x00007f08798d0000)
No idea what to do with that.
Any pointers on how to solve this issue is welcome.
jm