Socket
Socket
Sign inDemoInstall

r1csfile

Package Overview
Dependencies
Maintainers
1
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

r1csfile - npm Package Compare versions

Comparing version 0.0.40 to 0.0.41

4

package.json

@@ -8,3 +8,3 @@ {

},
"version": "0.0.40",
"version": "0.0.41",
"description": "r1cs file format parser",

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

"fastfile": "0.0.20",
"ffjavascript": "0.2.55"
"ffjavascript": "0.2.56"
},

@@ -45,0 +45,0 @@ "devDependencies": {

@@ -271,3 +271,5 @@ import {F1Field, getCurveFromR} from "ffjavascript";

for (let j = 0; j < numSignals; j++) {
c.signals.push(bR1cs32[bR1csPos++]);
const LSB = bR1cs32[bR1csPos++];
const MSB = bR1cs32[bR1csPos++];
c.signals.push(MSB * 0x100000000 + LSB);
}

@@ -274,0 +276,0 @@ customGatesUses.push(c);

Sorry, the diff of this file is not supported yet

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