Socket
Socket
Sign inDemoInstall

webcrypto-core

Package Overview
Dependencies
Maintainers
2
Versions
78
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

webcrypto-core - npm Package Compare versions

Comparing version 0.1.11 to 0.1.12

4

dist/webcrypto-core.es.js

@@ -1037,4 +1037,4 @@ import { __extends } from 'tslib';

}
if (alg.saltLength % 8) {
throw new RsaPSSParamsError("Parameter 'saltLength' should be a multiple of 8");
if (alg.saltLength < 0) {
throw new RsaPSSParamsError("Parameter 'saltLength' is outside of numeric range");
}

@@ -1041,0 +1041,0 @@ };

@@ -1040,4 +1040,4 @@ 'use strict';

}
if (alg.saltLength % 8) {
throw new RsaPSSParamsError("Parameter 'saltLength' should be a multiple of 8");
if (alg.saltLength < 0) {
throw new RsaPSSParamsError("Parameter 'saltLength' is outside of numeric range");
}

@@ -1044,0 +1044,0 @@ };

{
"name": "webcrypto-core",
"version": "0.1.11",
"version": "0.1.12",
"description": "Common layer to be used by crypto libraries based on WebCrypto API for input validation.",

@@ -5,0 +5,0 @@ "main": "dist/webcrypto-core.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc