This library is Android Kotlin wrapper for the Rapidsnark. It enables the generation of proofs for specified circuits within an Android environment.
Android: Compatible with any Android device with 64 bit architecture.
- Android 7.0 (API level 24) or higher.
// TODO: Add instructions for installation
Function takes path to .zkey file and witness file (as base64 encoded String) and returns proof and public signals.
Reads .zkey file directly from filesystem.
import io.iden3.rapidsnark.*
// ...
val wtns: ByteArray = readFile("path/to/wtns")
val (proof, publicSignals) = groth16ProveWithZKeyFilePath("path/to/zkey", wtns)
Verifies proof and public signals against verification key.
import io.iden3.rapidsnark.*
// ...
val zkey: ByteArray = readFile("path/to/zkey")
val wtns: ByteArray = readFile("path/to/zkey")
val verificationKey: ByteArray = readFile("path/to/zkey")
val (proof, publicSignals) = groth16Prove(zkey, wtns)
val proofValid = groth16Verify(proof, publicSignals, verificationKey)
Function that takes zkey and witness files encoded as base64.
proof
and publicSignals
are base64 encoded strings.
Large circuits might cause OOM. Use with caution.
import io.iden3.rapidsnark.*
// ...
val zkey: ByteArray = readFile("path/to/zkey")
val wtns: ByteArray = readFile("path/to/zkey")
val (proof, publicSignals) = groth16Prove(zkey, wtns)
Calculates public buffer size for specified zkey.
import io.iden3.rapidsnark.*
// ...
val publicBufferSize = groth16PublicSizeForZkeyFile("path/to/zkey")
Both groth16Prove
and groth16ProveWithZKeyFilePath
has an optional proofBufferSize
, publicBufferSize
and errorBufferSize
parameters.
If publicBufferSize
is too small it will be calculated automatically by library.
These parameters are used to set the size of the buffers used to store the proof, public signals and error.
If you have embedded circuit in the app, it is recommended to calculate the size of the public buffer once and reuse it.
To calculate the size of public buffer call groth16PublicSizeForZkeyFile
.
To run the example project, clone the repo, and run app
module application.
android-rapidsnark is part of the iden3 project copyright 2021 0KIMS association and published with LGPL-3 license. Please check the COPYING file for more details.