@forklaunch/core 0.15.1-debug-hmac → 0.15.1

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.
package/lib/http/index.js CHANGED
@@ -399,13 +399,6 @@ async function checkAuthorizationToken(req, authorizationMethod, authorizationTo
399
399
  const parsedTimestamp = parseHmacTokenPart(timestamp, "ts");
400
400
  const parsedNonce = parseHmacTokenPart(nonce, "nonce");
401
401
  const parsedSignature = parseHmacTokenPart(signature, "signature");
402
- console.log(
403
- "parseditems",
404
- parsedKeyId,
405
- parsedTimestamp,
406
- parsedNonce,
407
- parsedSignature
408
- );
409
402
  if (!parsedKeyId || !parsedTimestamp || !parsedNonce || !parsedSignature) {
410
403
  return invalidAuthorizationTokenFormat;
411
404
  }