I am using the file that I found on the Amazon forum. This is the stream: https://forums.aws.amazon.com/message.jspa?messageID=147377
It uses a .wsc file, which is just a JScript file that defines an object that you can use in your ASP code. Like this:
'
This is the file that was originally used to sign the Amazon API request. For reasons I donโt understand, this line of code in the .wsc file:
d=d.replace ( /\s/g, "\n");
This converts all whitespace characters, including spaces, to '\ n'. It's hard to believe that spaces need to be converted to "\ n". Anyway, I had to comment on this line for the code to work for me! And it really works. I used it for a while without any problems.
From the sha256.wsc file:
Direct link to the sha256.wsc file: https://forums.aws.amazon.com/servlet/JiveServlet/download/9-34858-139271-2601/sha256.wsc
I could not find the official download site.
source share