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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
extern crate alloc;
use alloc::vec::Vec;
#[derive(Fail, Clone, Debug, Eq, PartialEq)]
pub enum ProofError {
#[fail(display = "Proof verification failed.")]
VerificationError,
#[fail(display = "Proof data could not be parsed.")]
FormatError,
#[fail(display = "Wrong number of blinding factors supplied.")]
WrongNumBlindingFactors,
#[fail(display = "Invalid bitsize, must have n = 8,16,32,64.")]
InvalidBitsize,
#[fail(display = "Invalid aggregation size, m must be a power of 2.")]
InvalidAggregation,
#[fail(display = "Invalid generators size, too few generators for proof")]
InvalidGeneratorsLength,
#[fail(display = "Internal error during proof creation: {}", _0)]
ProvingError(MPCError),
}
impl From<MPCError> for ProofError {
fn from(e: MPCError) -> ProofError {
match e {
MPCError::InvalidBitsize => ProofError::InvalidBitsize,
MPCError::InvalidAggregation => ProofError::InvalidAggregation,
MPCError::InvalidGeneratorsLength => ProofError::InvalidGeneratorsLength,
_ => ProofError::ProvingError(e),
}
}
}
#[derive(Fail, Clone, Debug, Eq, PartialEq)]
pub enum MPCError {
#[fail(display = "Dealer gave a malicious challenge value.")]
MaliciousDealer,
#[fail(display = "Invalid bitsize, must have n = 8,16,32,64")]
InvalidBitsize,
#[fail(display = "Invalid aggregation size, m must be a power of 2")]
InvalidAggregation,
#[fail(display = "Invalid generators size, too few generators for proof")]
InvalidGeneratorsLength,
#[fail(display = "Wrong number of value commitments")]
WrongNumBitCommitments,
#[fail(display = "Wrong number of value commitments")]
WrongNumPolyCommitments,
#[fail(display = "Wrong number of proof shares")]
WrongNumProofShares,
#[fail(display = "Malformed proof shares from parties {:?}", bad_shares)]
MalformedProofShares {
bad_shares: Vec<usize>,
},
}
#[cfg(feature = "yoloproofs")]
#[derive(Fail, Clone, Debug, Eq, PartialEq)]
pub enum R1CSError {
#[fail(display = "Invalid generators size, too few generators for proof")]
InvalidGeneratorsLength,
#[fail(display = "Proof data could not be parsed.")]
FormatError,
#[fail(display = "R1CSProof did not verify correctly.")]
VerificationError,
#[fail(display = "Variable does not have a value assignment.")]
MissingAssignment,
#[fail(display = "Gadget error: {:?}", description)]
GadgetError {
description: String,
},
}
#[cfg(feature = "yoloproofs")]
impl From<ProofError> for R1CSError {
fn from(e: ProofError) -> R1CSError {
match e {
ProofError::InvalidGeneratorsLength => R1CSError::InvalidGeneratorsLength,
ProofError::FormatError => R1CSError::FormatError,
ProofError::VerificationError => R1CSError::VerificationError,
_ => panic!("unexpected error type in conversion"),
}
}
}