@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 +0 -7
- package/lib/http/index.js.map +1 -1
- package/lib/http/index.mjs +0 -7
- package/lib/http/index.mjs.map +1 -1
- package/package.json +3 -3
package/lib/http/index.mjs
CHANGED
@@ -326,13 +326,6 @@ 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
|
-
);
|
336
329
|
if (!parsedKeyId || !parsedTimestamp || !parsedNonce || !parsedSignature) {
|
337
330
|
return invalidAuthorizationTokenFormat;
|
338
331
|
}
|