I have an API gateway where I set authentication to use AWS_IAM. This requires me to sign each request with an AWS V4 signature and attach the HMAC in the header. I found libraries for signing a request with a V4 signature in nodejs. But I canβt find a library to sign me up. Even aws-sdk for .NET has this abstracted for its specific use case. Is there a library there (I did a quick Google search and didn't find any results)? Or do I need to write hmac myself?
source
share