I'm trying to produce a HMAC SHA256 signature for a SOAP/XML-RPC JMeter Request that I am building. I have found a JavaScript library that should do the trick for me:
http://code.google.com/p/crypto-js/#HMAC
The issue is that I can't find a way to call the external JavaScript files methods from JMeter.
Any help would really be appreciated with this or a suggestion for an alternative to preform the task.
You don't need to use any external JS libraries to generate HMAC. This functionality is available in Java SE. You can use Beanshell Sampler to execute Java code.
If this functionality wouldn't be available in Java SE, you could: