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

ffjavascript

Package Overview
Dependencies
Maintainers
1
Versions
70
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ffjavascript - npm Package Compare versions

Comparing version 0.2.57 to 0.2.59

4

package.json
{
"name": "ffjavascript",
"type": "module",
"version": "0.2.57",
"version": "0.2.59",
"description": "Finite Field Library in Javascript",

@@ -36,3 +36,3 @@ "main": "./build/main.cjs",

"wasmbuilder": "0.0.16",
"wasmcurves": "0.2.0",
"wasmcurves": "0.2.1",
"web-worker": "^1.2.0"

@@ -39,0 +39,0 @@ },

@@ -198,3 +198,3 @@

const s = "0000000" + e.toString(16);
const v = new Uint32Array(buff.buffer, o, n8/4);
const v = new Uint32Array(buff.buffer, buff.byteOffset + o, n8/4);
const l = (((s.length-7)*4 - 1) >> 5)+1; // Number of 32bit words;

@@ -219,3 +219,3 @@ for (let i=0; i<l; i++) v[i] = parseInt(s.substring(s.length-8*i-8, s.length-8*i), 16);

o = o || 0;
const v = new Uint32Array(buff.buffer, o, n8/4);
const v = new Uint32Array(buff.buffer, buff.byteOffset + o, n8/4);
const a = new Array(n8/4);

@@ -222,0 +222,0 @@ v.forEach( (ch,i) => a[a.length-i-1] = ch.toString(16).padStart(8,"0") );

Sorry, the diff of this file is not supported yet

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