mirror of
https://github.com/arnaucube/circom.git
synced 2026-02-06 18:56:40 +01:00
Compare commits
1 Commits
v0.5.33
...
feature/wi
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
babe908d35 |
12
c/main.cpp
12
c/main.cpp
@@ -118,6 +118,18 @@ void writeOutBin(Circom_CalcWit *ctx, std::string filename) {
|
||||
|
||||
write_ptr = fopen(filename.c_str(),"wb");
|
||||
|
||||
// Add header
|
||||
// 4 bytes --> total number of constraints
|
||||
uint32_t witnessLength = _circuit.NVars;
|
||||
// 4 bytes --> witness element size (measured in number of 32bit words)
|
||||
uint32_t witnessSize = 8; // witness size = 8*32 = 256 bits
|
||||
// 8bytes --> empty
|
||||
uint64_t otherField = 0;
|
||||
|
||||
fwrite(&witnessLength, 4, 1, write_ptr);
|
||||
fwrite(&witnessSize, 4, 1, write_ptr);
|
||||
fwrite(&otherField, 8, 1, write_ptr);
|
||||
|
||||
FrElement v;
|
||||
|
||||
u8 buffOut[256];
|
||||
|
||||
Reference in New Issue
Block a user