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
use crate::{Ciphertext, Entry, Literal, Plaintext, Visibility};
use snarkvm_circuit_network::Aleo;
use snarkvm_circuit_types::{environment::prelude::*, Boolean, Field, U64};
#[derive(Clone)]
pub enum Balance<A: Aleo, Private: Visibility<A>> {
Public(U64<A>),
Private(Private),
}
#[cfg(console)]
impl<A: Aleo> Inject for Balance<A, Plaintext<A>> {
type Primitive = console::Balance<A::Network, console::Plaintext<A::Network>>;
fn new(_: Mode, owner: Self::Primitive) -> Self {
match owner {
console::Balance::Public(balance) => Self::Public(U64::new(Mode::Private, balance)),
console::Balance::Private(console::Plaintext::Literal(console::Literal::U64(balance), ..)) => {
Self::Private(Plaintext::Literal(Literal::U64(U64::new(Mode::Private, balance)), Default::default()))
}
_ => A::halt("Balance::<Plaintext>::new: Invalid primitive type for balance"),
}
}
}
#[cfg(console)]
impl<A: Aleo> Inject for Balance<A, Ciphertext<A>> {
type Primitive = console::Balance<A::Network, console::Ciphertext<A::Network>>;
fn new(_: Mode, owner: Self::Primitive) -> Self {
match owner {
console::Balance::Public(balance) => Self::Public(U64::new(Mode::Private, balance)),
console::Balance::Private(ciphertext) => Self::Private(Ciphertext::new(Mode::Private, ciphertext)),
}
}
}
impl<A: Aleo> Deref for Balance<A, Plaintext<A>> {
type Target = U64<A>;
fn deref(&self) -> &Self::Target {
match self {
Self::Public(public) => public,
Self::Private(Plaintext::Literal(Literal::U64(balance), ..)) => balance,
_ => A::halt("Internal error: plaintext deref corrupted in record balance"),
}
}
}
impl<A: Aleo, Private: Visibility<A>> Balance<A, Private> {
pub fn is_public(&self) -> Boolean<A> {
Boolean::constant(matches!(self, Self::Public(..)))
}
pub fn is_private(&self) -> Boolean<A> {
Boolean::constant(matches!(self, Self::Private(..)))
}
}
impl<A: Aleo> Balance<A, Plaintext<A>> {
pub fn to_entry(&self) -> Entry<A, Plaintext<A>> {
match self {
Self::Public(balance) => Entry::Public(Plaintext::from(Literal::U64(balance.clone()))),
Self::Private(plaintext, ..) => Entry::Private(plaintext.clone()),
}
}
}
impl<A: Aleo, Private: Visibility<A>> Equal<Self> for Balance<A, Private> {
type Output = Boolean<A>;
fn is_equal(&self, other: &Self) -> Self::Output {
match (self, other) {
(Self::Public(a), Self::Public(b)) => a.is_equal(b),
(Self::Private(a), Self::Private(b)) => a.is_equal(b),
(Self::Public(_), _) | (Self::Private(_), _) => Boolean::constant(false),
}
}
fn is_not_equal(&self, other: &Self) -> Self::Output {
match (self, other) {
(Self::Public(a), Self::Public(b)) => a.is_not_equal(b),
(Self::Private(a), Self::Private(b)) => a.is_not_equal(b),
(Self::Public(_), _) | (Self::Private(_), _) => Boolean::constant(true),
}
}
}
impl<A: Aleo> Balance<A, Plaintext<A>> {
pub fn encrypt(&self, randomizer: &[Field<A>]) -> Balance<A, Ciphertext<A>> {
match self {
Self::Public(balance) => {
if !randomizer.is_empty() {
A::halt(format!("Expected 0 randomizers, found {}", randomizer.len()))
}
A::assert(!balance.to_bits_le()[52..].iter().fold(Boolean::constant(false), |acc, bit| acc | bit));
Balance::Public(balance.clone())
}
Self::Private(Plaintext::Literal(Literal::U64(balance), ..)) => {
if randomizer.len() != 1 {
A::halt(format!("Expected 1 randomizer, found {}", randomizer.len()))
}
A::assert(!balance.to_bits_le()[52..].iter().fold(Boolean::constant(false), |acc, bit| acc | bit));
let ciphertext = balance.to_field() + &randomizer[0];
Balance::Private(Ciphertext::from_fields(&[ciphertext]))
}
_ => A::halt("Internal error: plaintext encryption corrupted in record balance"),
}
}
}
impl<A: Aleo> Balance<A, Ciphertext<A>> {
pub fn decrypt(&self, randomizer: &[Field<A>]) -> Balance<A, Plaintext<A>> {
match self {
Self::Public(balance) => {
if !randomizer.is_empty() {
A::halt(format!("Expected 0 randomizers, found {}", randomizer.len()))
}
A::assert(!balance.to_bits_le()[52..].iter().fold(Boolean::constant(false), |acc, bit| acc | bit));
Balance::Public(balance.clone())
}
Self::Private(ciphertext) => {
if randomizer.len() != 1 {
A::halt(format!("Expected 1 randomizer, found {}", randomizer.len()))
}
if ciphertext.len() != 1 {
A::halt(format!("Expected 1 ciphertext, found {}", ciphertext.len()))
}
let balance = U64::from_field(&ciphertext[0] - &randomizer[0]);
A::assert(!balance.to_bits_le()[52..].iter().fold(Boolean::constant(false), |acc, bit| acc | bit));
Balance::Private(Plaintext::from(Literal::U64(balance)))
}
}
}
}
impl<A: Aleo> ToBits for Balance<A, Plaintext<A>> {
type Boolean = Boolean<A>;
fn to_bits_le(&self) -> Vec<Boolean<A>> {
let mut bits_le = vec![self.is_private()];
match self {
Self::Public(public) => bits_le.extend(public.to_bits_le()),
Self::Private(Plaintext::Literal(Literal::U64(balance), ..)) => bits_le.extend(balance.to_bits_le()),
_ => A::halt("Internal error: plaintext to_bits_le corrupted in record balance"),
}
bits_le
}
fn to_bits_be(&self) -> Vec<Boolean<A>> {
let mut bits_be = vec![self.is_private()];
match self {
Self::Public(public) => bits_be.extend(public.to_bits_be()),
Self::Private(Plaintext::Literal(Literal::U64(balance), ..)) => bits_be.extend(balance.to_bits_be()),
_ => A::halt("Internal error: plaintext to_bits_be corrupted in record balance"),
}
bits_be
}
}
impl<A: Aleo> ToBits for Balance<A, Ciphertext<A>> {
type Boolean = Boolean<A>;
fn to_bits_le(&self) -> Vec<Boolean<A>> {
let mut bits_le = vec![self.is_private()];
match self {
Self::Public(public) => bits_le.extend(public.to_bits_le()),
Self::Private(ciphertext) => {
match ciphertext.len() == 1 {
true => bits_le.extend(ciphertext[0].to_bits_le()),
false => A::halt("Internal error: ciphertext to_bits_le corrupted in record balance"),
}
}
}
bits_le
}
fn to_bits_be(&self) -> Vec<Boolean<A>> {
let mut bits_be = vec![self.is_private()];
match self {
Self::Public(public) => bits_be.extend(public.to_bits_be()),
Self::Private(ciphertext) => {
match ciphertext.len() == 1 {
true => bits_be.extend(ciphertext[0].to_bits_be()),
false => A::halt("Internal error: ciphertext to_bits_be corrupted in record balance"),
}
}
}
bits_be
}
}