This repository was archived by the owner on Nov 22, 2017. It is now read-only.

Description
Happened to me twice. After installing and updating further pacman use fails with libcrypto.so.1.0.0 not found. After fresh install I used:
pacman -Syuw
rm /etc/ssl/certs/ca-certificates.crt
update-ca-trust
pacman -Su
these went without error but I noticed a warning that pacman was being held back. I noticed libcrypto.so.1.1 is installed so manually created a symlink to it:
ln -sf /usr/lib/libcrypto.so.1.1 /usr/lib/libcrypto.so.1.0.0
pacman -S --force pacman
now pacman works but it concerns me.