I want to run following CURL on Linux but with password in encryption form. How would I do that?
curl -u admin:password -X GET http://52.16.70.0:8081/artifactory/api/system/ping
I have generated encrypted password using openssl and base64 and those method seems hashes the inputs and not actually encrypt it.
Any help?