@forklaunch/core 0.15.0 → 0.15.1-debug-hmac

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -326,6 +326,13 @@ async function checkAuthorizationToken(req, authorizationMethod, authorizationTo
326
326
  const parsedTimestamp = parseHmacTokenPart(timestamp, "ts");
327
327
  const parsedNonce = parseHmacTokenPart(nonce, "nonce");
328
328
  const parsedSignature = parseHmacTokenPart(signature, "signature");
329
+ console.log(
330
+ "parseditems",
331
+ parsedKeyId,
332
+ parsedTimestamp,
333
+ parsedNonce,
334
+ parsedSignature
335
+ );
329
336
  if (!parsedKeyId || !parsedTimestamp || !parsedNonce || !parsedSignature) {
330
337
  return invalidAuthorizationTokenFormat;
331
338
  }