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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
#[cfg(feature = "canon")]
use canonical_derive::Canon;
#[cfg(feature = "std")]
use {
crate::bid::{Bid, BlindBidError},
dusk_jubjub::JubJubScalar,
dusk_pki::PublicSpendKey,
dusk_poseidon::sponge,
num_bigint::BigUint,
num_traits::{One, Zero},
};
use core::ops::Deref;
use dusk_bls12_381::BlsScalar;
use dusk_bytes::{DeserializableSlice, Serializable};
#[derive(Copy, Clone, Debug, Eq, PartialEq, Default)]
#[cfg_attr(feature = "canon", derive(Canon))]
pub struct Score {
value: BlsScalar,
y: BlsScalar,
y_prime: BlsScalar,
r1: BlsScalar,
r2: BlsScalar,
}
impl Deref for Score {
type Target = BlsScalar;
fn deref(&self) -> &Self::Target {
&self.value
}
}
impl AsRef<BlsScalar> for Score {
fn as_ref(&self) -> &BlsScalar {
&self.value
}
}
impl Serializable<{ 5 * BlsScalar::SIZE }> for Score {
type Error = dusk_bytes::Error;
#[allow(unused_must_use)]
fn to_bytes(&self) -> [u8; Self::SIZE] {
use dusk_bytes::Write;
let mut buf = [0u8; Self::SIZE];
let mut writer = &mut buf[..];
writer.write(&self.as_ref().to_bytes());
writer.write(&self.as_ref().to_bytes());
writer.write(&self.as_ref().to_bytes());
writer.write(&self.as_ref().to_bytes());
writer.write(&self.as_ref().to_bytes());
buf
}
fn from_bytes(buf: &[u8; Self::SIZE]) -> Result<Self, Self::Error>
where
Self: Sized,
{
let mut buffer = &buf[..];
Ok(Score {
value: BlsScalar::from_reader(&mut buffer)?,
y: BlsScalar::from_reader(&mut buffer)?,
y_prime: BlsScalar::from_reader(&mut buffer)?,
r1: BlsScalar::from_reader(&mut buffer)?,
r2: BlsScalar::from_reader(&mut buffer)?,
})
}
}
impl Score {
pub const fn r1(&self) -> &BlsScalar {
&self.r1
}
pub const fn r2(&self) -> &BlsScalar {
&self.r2
}
pub const fn y(&self) -> &BlsScalar {
&self.y
}
pub const fn y_prime(&self) -> &BlsScalar {
&self.y_prime
}
pub const fn value(&self) -> &BlsScalar {
&self.value
}
}
impl Score {
#[cfg(feature = "std")]
#[cfg_attr(docsrs, doc(cfg(feature = "std")))]
pub fn compute(
bid: &Bid,
secret: &JubJubScalar,
psk: &PublicSpendKey,
secret_k: BlsScalar,
bid_tree_root: BlsScalar,
consensus_round_seed: BlsScalar,
latest_consensus_round: u64,
latest_consensus_step: u64,
) -> Result<Score, BlindBidError> {
if latest_consensus_round > bid.expiration {
return Err(BlindBidError::ExpiredBid);
};
let latest_consensus_round = BlsScalar::from(latest_consensus_round);
let latest_consensus_step = BlsScalar::from(latest_consensus_step);
let y = sponge::hash(&[
secret_k,
bid_tree_root,
consensus_round_seed,
latest_consensus_round,
latest_consensus_step,
]);
let (value, _) = bid.decrypt_data(secret, psk)?;
let r1 = BigUint::from_bytes_le(&y.to_bytes()[16..32]);
let y_prime = BigUint::from_bytes_le(&y.to_bytes()[0..16]);
let bid_value = BigUint::from_bytes_le(&value.to_bytes());
let (f, r2) = match y_prime == BigUint::zero() {
false => {
let num = bid_value * (BigUint::one() << 128);
(&num / &y_prime, &num % &y_prime)
}
true => (bid_value * (BigUint::one() << 128), BigUint::zero()),
};
Ok(Score {
value: biguint_to_scalar(f)?,
y,
y_prime: biguint_to_scalar(y_prime)?,
r1: biguint_to_scalar(r1)?,
r2: biguint_to_scalar(r2)?,
})
}
}
#[cfg(feature = "std")]
fn biguint_to_scalar(biguint: BigUint) -> Result<BlsScalar, BlindBidError> {
let mut bytes = [0u8; 32];
let biguint_bytes = biguint.to_bytes_le();
if biguint_bytes.len() > 32 {
return Err(BlindBidError::InvalidScoreFieldsLen);
};
bytes[..biguint_bytes.len()].copy_from_slice(&biguint_bytes);
Ok(BlsScalar::from_bytes(&bytes).unwrap())
}
#[cfg(feature = "std")]
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn biguint_scalar_conversion() {
let rand_scalar = BlsScalar::random(&mut rand::thread_rng());
let big_uint = BigUint::from_bytes_le(&rand_scalar.to_bytes());
assert_eq!(
biguint_to_scalar(big_uint).expect("BigUint conversion failed"),
rand_scalar
)
}
}
#[cfg(test)]
mod score_serialization {
use super::*;
#[test]
fn score_serialization_roundtrip() {
let score = Score {
value: BlsScalar::one(),
y: BlsScalar::one(),
y_prime: BlsScalar::one(),
r1: BlsScalar::one(),
r2: BlsScalar::one(),
};
let score_bytes = score.to_bytes();
let score_from_bytes =
Score::from_bytes(&score_bytes).expect("Invalid roundtrip");
assert_eq!(score, score_from_bytes)
}
}