-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathmod.rs
More file actions
302 lines (273 loc) · 11.2 KB
/
mod.rs
File metadata and controls
302 lines (273 loc) · 11.2 KB
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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
// Copyright (c) 2019-2026 Provable Inc.
// This file is part of the snarkVM library.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at:
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
mod bytes;
mod encrypt;
mod equal;
mod find;
mod from_bits;
mod from_fields;
mod num_randomizers;
mod parse;
mod serialize;
mod size_in_fields;
mod to_bits;
mod to_bits_raw;
mod to_fields;
mod to_fields_raw;
use crate::{Access, Ciphertext, Identifier, Literal, PlaintextType};
use snarkvm_console_network::Network;
use snarkvm_console_types::prelude::*;
use indexmap::IndexMap;
use std::sync::OnceLock;
#[derive(Clone)]
pub enum Plaintext<N: Network> {
/// A literal.
Literal(Literal<N>, OnceLock<Vec<bool>>),
/// A struct.
Struct(IndexMap<Identifier<N>, Plaintext<N>>, OnceLock<Vec<bool>>),
/// An array.
Array(Vec<Plaintext<N>>, OnceLock<Vec<bool>>),
}
impl<N: Network> Plaintext<N> {
/// Returns a new `Plaintext::Array` from `Vec<bool>`, checking that the length is correct.
pub fn from_bit_array(bits: Vec<bool>, length: u32) -> Result<Self> {
ensure!(bits.len() == length as usize, "Expected '{length}' bits, got '{}' bits", bits.len());
Ok(Self::Array(
bits.into_iter().map(|bit| Plaintext::from(Literal::Boolean(Boolean::new(bit)))).collect(),
OnceLock::new(),
))
}
/// Returns the `Plaintext` as a `Vec<bool>`, if it is a bit array.
pub fn as_bit_array(&self) -> Result<Vec<bool>> {
match self {
Self::Array(elements, _) => {
let mut bits = Vec::with_capacity(elements.len());
for element in elements {
match element {
Self::Literal(Literal::Boolean(bit), _) => bits.push(**bit),
_ => bail!("Expected a bit array, found a non-boolean element."),
}
}
Ok(bits)
}
_ => bail!("Expected a bit array, found a non-array plaintext."),
}
}
/// Returns the `Plaintext` as a `Vec<u8>`, if it is a u8 array.
pub fn as_byte_array(&self) -> Result<Vec<u8>> {
match self {
Self::Array(elements, _) => {
let mut bytes = Vec::with_capacity(elements.len());
for element in elements {
match element {
Self::Literal(Literal::U8(byte), _) => bytes.push(**byte),
_ => bail!("Expected a u8 array, found a non-u8 element."),
}
}
Ok(bytes)
}
_ => bail!("Expected a u8 array, found a non-array plaintext."),
}
}
/// Returns the `Plaintext` as a `Vec<N::Field>`, if it is a field array.
pub fn as_field_array(&self) -> Result<Vec<Field<N>>> {
match self {
Self::Array(elements, _) => {
let mut fields = Vec::with_capacity(elements.len());
for element in elements {
match element {
Self::Literal(Literal::Field(field), _) => fields.push(*field),
_ => bail!("Expected an array of fields, found a non-field element."),
}
}
Ok(fields)
}
_ => bail!("Expected an array of fields, found a non-array plaintext."),
}
}
}
impl<N: Network> From<Literal<N>> for Plaintext<N> {
/// Returns a new `Plaintext` from a `Literal`.
fn from(literal: Literal<N>) -> Self {
Self::Literal(literal, OnceLock::new())
}
}
impl<N: Network> From<&Literal<N>> for Plaintext<N> {
/// Returns a new `Plaintext` from a `&Literal`.
fn from(literal: &Literal<N>) -> Self {
Self::Literal(literal.clone(), OnceLock::new())
}
}
// A macro that derives implementations of `From` for arrays of a plaintext literals of various sizes.
macro_rules! impl_plaintext_from_array {
($element:ident, $($size:literal),+) => {
$(
impl<N: Network> From<[$element<N>; $size]> for Plaintext<N> {
fn from(value: [$element<N>; $size]) -> Self {
Self::Array(
value
.into_iter()
.map(|element| Plaintext::from(Literal::$element(element)))
.collect(),
OnceLock::new(),
)
}
}
)+
};
}
// Implement for `[U8<N>, SIZE]` for sizes 1 through 256.
seq_macro::seq!(S in 1..=256 {
impl_plaintext_from_array!(U8, S);
});
#[cfg(test)]
mod tests {
use super::*;
use snarkvm_console_network::MainnetV0;
use snarkvm_console_types::Field;
use core::str::FromStr;
type CurrentNetwork = MainnetV0;
#[test]
fn test_plaintext() -> Result<()> {
let run_test = |value: Plaintext<CurrentNetwork>| {
assert_eq!(
value.to_bits_le(),
Plaintext::<CurrentNetwork>::from_bits_le(&value.to_bits_le()).unwrap().to_bits_le()
);
assert_eq!(value, Plaintext::<CurrentNetwork>::from_fields(&value.to_fields().unwrap()).unwrap());
assert_eq!(value, Plaintext::<CurrentNetwork>::from_str(&value.to_string()).unwrap());
assert!(*value.is_equal(&value));
assert!(*!value.is_not_equal(&value));
};
let mut rng = TestRng::default();
// Test booleans.
run_test(Plaintext::<CurrentNetwork>::from_str("true")?);
run_test(Plaintext::<CurrentNetwork>::from_str("false")?);
// Test a random field element.
run_test(Plaintext::<CurrentNetwork>::Literal(
Literal::Field(Field::new(Uniform::rand(&mut rng))),
OnceLock::new(),
));
// Test a random struct with literal members.
run_test(Plaintext::<CurrentNetwork>::Struct(
IndexMap::from_iter(vec![
(Identifier::from_str("a")?, Plaintext::<CurrentNetwork>::from_str("true")?),
(
Identifier::from_str("b")?,
Plaintext::<CurrentNetwork>::Literal(
Literal::Field(Field::new(Uniform::rand(&mut rng))),
OnceLock::new(),
),
),
]),
OnceLock::new(),
));
// Test a random struct with array members.
run_test(Plaintext::<CurrentNetwork>::Struct(
IndexMap::from_iter(vec![
(Identifier::from_str("a")?, Plaintext::<CurrentNetwork>::from_str("true")?),
(
Identifier::from_str("b")?,
Plaintext::<CurrentNetwork>::Array(
vec![
Plaintext::<CurrentNetwork>::from_str("true")?,
Plaintext::<CurrentNetwork>::from_str("false")?,
],
OnceLock::new(),
),
),
]),
OnceLock::new(),
));
// Test random deeply-nested struct.
run_test(Plaintext::<CurrentNetwork>::Struct(
IndexMap::from_iter(vec![
(Identifier::from_str("a")?, Plaintext::<CurrentNetwork>::from_str("true")?),
(
Identifier::from_str("b")?,
Plaintext::<CurrentNetwork>::Struct(
IndexMap::from_iter(vec![
(Identifier::from_str("c")?, Plaintext::<CurrentNetwork>::from_str("true")?),
(
Identifier::from_str("d")?,
Plaintext::<CurrentNetwork>::Struct(
IndexMap::from_iter(vec![
(Identifier::from_str("e")?, Plaintext::<CurrentNetwork>::from_str("true")?),
(
Identifier::from_str("f")?,
Plaintext::<CurrentNetwork>::Literal(
Literal::Field(Field::new(Uniform::rand(&mut rng))),
OnceLock::new(),
),
),
]),
OnceLock::new(),
),
),
(
Identifier::from_str("g")?,
Plaintext::Array(
vec![
Plaintext::<CurrentNetwork>::from_str("true")?,
Plaintext::<CurrentNetwork>::from_str("false")?,
],
OnceLock::new(),
),
),
]),
OnceLock::new(),
),
),
(
Identifier::from_str("h")?,
Plaintext::<CurrentNetwork>::Literal(
Literal::Field(Field::new(Uniform::rand(&mut rng))),
OnceLock::new(),
),
),
]),
OnceLock::new(),
));
// Test an array of literals.
run_test(Plaintext::<CurrentNetwork>::Array(
vec![
Plaintext::<CurrentNetwork>::from_str("0field")?,
Plaintext::<CurrentNetwork>::from_str("1field")?,
Plaintext::<CurrentNetwork>::from_str("2field")?,
Plaintext::<CurrentNetwork>::from_str("3field")?,
Plaintext::<CurrentNetwork>::from_str("4field")?,
],
OnceLock::new(),
));
// Test an array of structs.
run_test(Plaintext::<CurrentNetwork>::Array(
vec![
Plaintext::<CurrentNetwork>::from_str("{ x: 0field, y: 1field }")?,
Plaintext::<CurrentNetwork>::from_str("{ x: 2field, y: 3field }")?,
Plaintext::<CurrentNetwork>::from_str("{ x: 4field, y: 5field }")?,
Plaintext::<CurrentNetwork>::from_str("{ x: 6field, y: 7field }")?,
Plaintext::<CurrentNetwork>::from_str("{ x: 8field, y: 9field }")?,
],
OnceLock::new(),
));
// Test a non-uniform array.
run_test(Plaintext::<CurrentNetwork>::Array(
vec![
Plaintext::<CurrentNetwork>::from_str("true")?,
Plaintext::<CurrentNetwork>::from_str("1field")?,
Plaintext::<CurrentNetwork>::from_str("{ x: 4field, y: 1u8 }")?,
],
OnceLock::new(),
));
Ok(())
}
}