Base64 HMAC SHA1 String in VBA
问题 I'm trying to convert an ASP/VBScript OAuth library to VBA. One of the challenges is this line of code: Get_Signature = b64_hmac_sha1(strSecret, strBaseSignature) This function, b64_hmac_sha1 is actually a function contained in a JavaScript library. It appears to me that calling a JavaScript function from VBA is fairly impractical. Because I know so little about encryption, it's not even clear to me what this b64_hmac_sha1 function does. Is HMAC SHA1 different from SHA1? I half suspect I