We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3ba7ad commit 7320c15Copy full SHA for 7320c15
src/transcript.rs
@@ -26,13 +26,13 @@ fn le_u64(value: u64) -> [u8; 8] {
26
27
impl TranscriptProtocol for Transcript {
28
fn rangeproof_domain_sep(&mut self, n: u64, m: u64) {
29
- self.commit_bytes(b"dom-sep", b"rangeproof1");
+ self.commit_bytes(b"dom-sep", b"rangeproof v1");
30
self.commit_bytes(b"n", &le_u64(n));
31
self.commit_bytes(b"m", &le_u64(m));
32
}
33
34
fn innerproduct_domain_sep(&mut self, n: u64) {
35
- self.commit_bytes(b"dom-sep", b"ipp1");
+ self.commit_bytes(b"dom-sep", b"ipp v1");
36
37
38
0 commit comments