Unanswered question

How to encrypt and decrypt password value in neoload?

Hi,
I want to mask the password value in my script so that anybody who has the script is not able to get my password value.
For that i am encrypting the password value through "password-scrambler" but the value should be decrypted before sending in the request which i do not know how to decrypt the value.

So how can we handle the above scenario?

Thanks.

Abhishek K.
Abhishek K.

Abhishek K.

Level
0
98 / 100
points

Answers

christophe M.
christophe M.

christophe M.

Level
4
5000 / 5000
points
Team

Hi,

There's no built-in feature to encrypt/decrypt password in this use case. You have to choose an algorithm and encode your password with it, and then decode it with some Javascript before using them in the User Path. (The Javascript read the variable, then call a JS library to decode, inject a new decoded variable in the Javascript, and use this decoded variable in the appropriate request.)