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 1.1.8 to 1.1.9

4

build/webcrypto-core.es.js

@@ -507,4 +507,4 @@ /**

}
if (algorithm.saltLength < 1) {
throw new RangeError("saltLength: Must be more than 0");
if (algorithm.saltLength < 0) {
throw new RangeError("saltLength: Must be positive number");
}

@@ -511,0 +511,0 @@ }

@@ -510,4 +510,4 @@ /**

}
if (algorithm.saltLength < 1) {
throw new RangeError("saltLength: Must be more than 0");
if (algorithm.saltLength < 0) {
throw new RangeError("saltLength: Must be positive number");
}

@@ -514,0 +514,0 @@ }

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

@@ -5,0 +5,0 @@ "main": "build/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