getSignature final signature in hexadecimal form.
(signingKey []byte, stringToSign string)
| 75 | |
| 76 | // getSignature final signature in hexadecimal form. |
| 77 | func getSignature(signingKey []byte, stringToSign string) string { |
| 78 | return hex.EncodeToString(sumHMAC(signingKey, []byte(stringToSign))) |
| 79 | } |
| 80 | |
| 81 | // getScope generate a string of a specific date, an AWS region, and a |
| 82 | // service. |
no test coverage detected