seven072
Results
2
issues of
seven072
I computes the sha256 value of '55504b4c4c4d' using the following code: ``` from circuit import sha256 a = '55504b4c4c4d' result = sbitvec.from_hex(a, reverse=False) print_ln("%s", sha256(result).reveal()) ``` The output is: `42270906609316389159836726310560887711266603166060461417510073264624989089288`...
**Describe the result** Hello, I run the code below: y = sint(5) x = sbitvec(y, 3, 3) print_ln('%s', [x.v[0].reveal(), x.v[1].reveal(), x.v[2].reveal()]) and it takes 200s (including offline time). I want...