Game seems linked in an unportable manner to OpenSSL(?) as it searches for libcrypto.so-1.0.0 and libssl.so.1.0.0 which don't exist on many Linux systems (I've seen reports for other games complaining about the same issue). A workaround that works for me is to create symbolic links for the missing library, ex:
# ln -s /usr/lib32/libcrypto.so-1.0.0 /usr/lib32/libcrypto.so-43.0.1
# ln -s /usr/lib32/libssl.so-1.0.0 /usr/lib32/libssl.so-43.0.1
However, while this works, it's not recommended that people go poking around in their system directories unless they know what they're doing. I'm not sure which engine the game uses, but it should be possible for the developers to link to the above libraries in a more portable way!
I'm on Void Linux, but I've seen reports of the same issue for the game The Red Strings Club on Linux Mint and OpenSUSE, not sure if the same engine is used?