-
Notifications
You must be signed in to change notification settings - Fork 13
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
Saving private key password within the system #10
Comments
i think here is a misunderstanding about what password is used for what. The ${decryption_password} or as i wrote in the docs the %{private_key_password} is not the password/secret Text you want to work with or hide from the logs and your code!!! The "Cipher Text" is the encrypted text of your confidential information. Maybe in other words. You have the "public key", that is used to encrypt cipher(secret) texts. This private key is secured by a password. This private_key_password has to be set when you create a private key (key pair). But again: the private_key_password is protecting your private decryption key and is not the cipher text or password you want to decrypt or encrypt. |
I see that there is a lag in documentation about this password. |
Hi Snooz82, Thnx and Keep up the good work. |
I have created a private_key password (which will in turn be used to decrypt the cipher text used).
I am using;
In the steps explained I see its mentioned;
The private_key.json is needed to decrypt the values on your test server and has to be copied manually or added through the CLI interface. See Set key pair from... above.
Question:
When I set up the key pair using "Set key pair from String" option, it is success, but when I try to retrieve in robot script I am not getting it. Decryption is not happening unless I mention the actual value (un-encrypted) for "${decryption_password}", just like variables.
Basically, I do not want to give actual secret key password "secretpass", but just give cipher text or do not want give it at all and process should read it on the fly from the library.
Can you please explain how to do it?
The text was updated successfully, but these errors were encountered: