This commit is contained in:
jude
2023-04-14 10:55:20 +01:00
parent d3e309c1e3
commit 0f8ad2a0a8
4 changed files with 48 additions and 6 deletions

View File

@ -70,6 +70,10 @@ class Ciphertext {
return "0x" + this.cipherText.toString(16);
}
toJSON() {
return "0x" + this.cipherText.toString(16);
}
prove() {
return new ValueProofSessionProver(this);
}