Skip to content

iden3/circom-witnesscalc-flutter

circom_witnesscalc


This library is Flutter wrapper for the circom-witnesscalc. It is used to calculate witness files for zero knowledge proofs, written in Rust.

Platform Support

iOS: Compatible with any iOS device with 64 bit architecture.

macOS: Compatible with any macOS device with arm64 bit architecture.

Android: Compatible with arm64-v8a, x86_64 architectures.

Installation

flutter pub add circom_witnesscalc

Usage

calculateWitness

Function takes inputs json string and graph data file bytes and returns witness bytes.

import 'package:circom_witnesscalc/circom_witnesscalc.dart';

// ...

final String inputs = await rootBundle.loadString("assets/authV2_inputs.json");
final Uint8List graphData = (await rootBundle.load("assets/authV2.wcd")).buffer.asUint8List();
final proof = await CircomWitnesscalc().calculateWitness(inputs, graphData);

Example App

Check out the example app and example README for a working example.

License

circom-witnesscalc-flutter is part of the iden3 project and licensed under MIT and APACHE 2.0 licences. Please check the LICENSE-MIT and LICENSE-APACHE files for more details.

About

Flutter wrapper for circom-witnesscalc

Resources

License

MIT and 2 other licenses found

Licenses found

MIT
LICENSE
Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published