Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@trust/webcrypto

Package Overview
Dependencies
Maintainers
7
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@trust/webcrypto - npm Package Compare versions

Comparing version 0.8.2 to 0.8.3

RSA-PSS.js

2

package.json
{
"name": "@trust/webcrypto",
"version": "0.8.2",
"version": "0.8.3",
"description": "WebCrypto API for Node.js",

@@ -5,0 +5,0 @@ "main": "src/index.js",

@@ -182,2 +182,3 @@ # W3C Web Cryptography API _(@trust/webcrypto)_

* Abdulrahman Alotaibi [@adminq80](https://github.com/adminq80)
* Linus Unnebäck [@LinusU](https://github.com/LinusU)

@@ -184,0 +185,0 @@ ## MIT License

@@ -69,3 +69,3 @@ /**

// 1. Ensure correct data length
if (data.length === undefined || data.length > 549755813632) { // 2^39-256
if (data.byteLength === undefined || data.byteLength > 549755813632) { // 2^39-256
throw new OperationError('Data must have a length less than 549755813632.')

@@ -72,0 +72,0 @@ }

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