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.6 to 1.1.7

LICENSE

2

build/webcrypto-core.es.js

@@ -883,3 +883,3 @@ /**

checkRequiredArguments(args, size, methodName) {
if (args.length !== size) {
if (args.length < size) {
throw new TypeError(`Failed to execute '${methodName}' on 'SubtleCrypto': ${size} arguments required, but only ${args.length} present`);

@@ -886,0 +886,0 @@ }

@@ -886,3 +886,3 @@ /**

checkRequiredArguments(args, size, methodName) {
if (args.length !== size) {
if (args.length < size) {
throw new TypeError(`Failed to execute '${methodName}' on 'SubtleCrypto': ${size} arguments required, but only ${args.length} present`);

@@ -889,0 +889,0 @@ }

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

@@ -8,2 +8,7 @@ "main": "build/webcrypto-core.js",

"types": "build/types/index.d.ts",
"files": [
"build",
"README.md",
"LICENSE"
],
"scripts": {

@@ -10,0 +15,0 @@ "prepare": "npm run build",

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