Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SafeNET 5100 token crashes the application on MacOS #78

Open
microshine opened this issue May 14, 2021 · 0 comments
Open

SafeNET 5100 token crashes the application on MacOS #78

microshine opened this issue May 14, 2021 · 0 comments

Comments

@microshine
Copy link
Contributor

If you've got that problem use the next steps.

The fix

First things first. Make sure you have the latest libcrypto installed (using brew, in my case):

$ brew update ; brew upgrade ; brew install openssl

Next, from the installed openssl (in my case, located at /usr/local/Cellar/openssl/1.0.2t/) copy the following two libraries to /usr/local/lib:

$ cd /usr/local/Cellar/openssl/1.0.2t/
$ sudo cp libcrypto.1.0.0.dylib libssl.1.0.0.dylib /usr/local/lib

The next step is to symlink them:

$ cd /usr/local/lib
$ sudo ln -s libssl.1.0.0.dylib libssl.dylib
$ sudo ln -s libcrypto.1.0.0.dylib libcrypto.dylib

Lo and behold, problem fixed.

Taken from https://dev.to/ruivieira/fixing-libcrypto-ansible-crashes-on-macos-mm2

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant