I'm trying to setup JMeter for connecting to a service which requires some hashing be done on some variables before I start and in-between requests.
I've created a User Defined Variable that has the authentication info in plain text.
Before the first HTTP Request is called I need to hash the password using SHA256, encode it using base64 and then convert to uppercase.
I will receive an auth_token
within a JSON formated response body. Then I need to do the same SHA256 -> base64 -> uppercase
chain to that auth_token and from then on it will be used in the request header.