-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathtranscript.rs
117 lines (108 loc) · 3.23 KB
/
transcript.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
use crate::{
channels::ChannelError,
protocols::hash_to_prime::{
channel::{HashToPrimeProverChannel, HashToPrimeVerifierChannel},
CRSHashToPrime, HashToPrimeProtocol,
},
transcript::{TranscriptChannelError, TranscriptProtocolChallenge, TranscriptProtocolCurve},
utils::curve::CurvePointProjective,
};
use merlin::Transcript;
use std::cell::RefCell;
pub trait TranscriptProtocolHashToPrime<P: CurvePointProjective>:
TranscriptProtocolCurve<P> + TranscriptProtocolChallenge
{
fn hash_to_prime_domain_sep(&mut self);
}
impl<P: CurvePointProjective> TranscriptProtocolHashToPrime<P> for Transcript {
fn hash_to_prime_domain_sep(&mut self) {
self.append_message(b"dom-sep", b"hash_to_prime");
}
}
pub struct TranscriptVerifierChannel<
'a,
P: CurvePointProjective,
HP: HashToPrimeProtocol<P>,
T: TranscriptProtocolHashToPrime<P>,
> {
proof: Option<HP::Proof>,
crs_type: std::marker::PhantomData<CRSHashToPrime<P, HP>>,
transcript_type: std::marker::PhantomData<&'a RefCell<T>>,
}
impl<
'a,
P: CurvePointProjective,
HP: HashToPrimeProtocol<P>,
T: TranscriptProtocolHashToPrime<P>,
> TranscriptVerifierChannel<'a, P, HP, T>
{
pub fn new(
_: &CRSHashToPrime<P, HP>,
_: &'a RefCell<T>,
) -> TranscriptVerifierChannel<'a, P, HP, T> {
TranscriptVerifierChannel {
proof: None,
crs_type: std::marker::PhantomData,
transcript_type: std::marker::PhantomData,
}
}
pub fn proof(&self) -> Result<HP::Proof, TranscriptChannelError> {
if self.proof.is_some() {
Ok(self.proof.as_ref().unwrap().clone())
} else {
Err(TranscriptChannelError::Incomplete)
}
}
}
impl<
'a,
P: CurvePointProjective,
HP: HashToPrimeProtocol<P>,
T: TranscriptProtocolHashToPrime<P>,
> HashToPrimeVerifierChannel<P, HP> for TranscriptVerifierChannel<'a, P, HP, T>
{
fn send_proof(&mut self, proof: &HP::Proof) -> Result<(), ChannelError> {
self.proof = Some(proof.clone());
Ok(())
}
}
pub struct TranscriptProverChannel<
'a,
P: CurvePointProjective,
HP: HashToPrimeProtocol<P>,
T: TranscriptProtocolHashToPrime<P>,
> {
proof: HP::Proof,
crs_type: std::marker::PhantomData<CRSHashToPrime<P, HP>>,
transcript_type: std::marker::PhantomData<&'a RefCell<T>>,
}
impl<
'a,
P: CurvePointProjective,
HP: HashToPrimeProtocol<P>,
T: TranscriptProtocolHashToPrime<P>,
> TranscriptProverChannel<'a, P, HP, T>
{
pub fn new(
_: &CRSHashToPrime<P, HP>,
_: &'a RefCell<T>,
proof: &HP::Proof,
) -> TranscriptProverChannel<'a, P, HP, T> {
TranscriptProverChannel {
proof: proof.clone(),
crs_type: std::marker::PhantomData,
transcript_type: std::marker::PhantomData,
}
}
}
impl<
'a,
P: CurvePointProjective,
HP: HashToPrimeProtocol<P>,
T: TranscriptProtocolHashToPrime<P>,
> HashToPrimeProverChannel<P, HP> for TranscriptProverChannel<'a, P, HP, T>
{
fn receive_proof(&mut self) -> Result<HP::Proof, ChannelError> {
Ok(self.proof.clone())
}
}