forked from iotaledger/sd-jwt-payload
-
Notifications
You must be signed in to change notification settings - Fork 0
/
encoder.rs
386 lines (348 loc) · 12.8 KB
/
encoder.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
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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
// Copyright 2020-2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0
use super::Disclosure;
use super::Hasher;
#[cfg(feature = "sha")]
use super::Sha256Hasher;
use crate::Error;
use crate::Result;
use json_pointer::JsonPointer;
use rand::Rng;
use serde_json::json;
use serde_json::Map;
use serde_json::Value;
pub(crate) const DIGESTS_KEY: &str = "_sd";
pub(crate) const ARRAY_DIGEST_KEY: &str = "...";
pub(crate) const DEFAULT_SALT_SIZE: usize = 30;
pub(crate) const SD_ALG: &str = "_sd_alg";
pub const HEADER_TYP: &str = "sd-jwt";
/// Transforms a JSON object into an SD-JWT object by substituting selected values
/// with their corresponding disclosure digests.
#[cfg(not(feature = "sha"))]
pub struct SdObjectEncoder<H: Hasher> {
/// The object in JSON format.
pub(crate) object: Value,
/// Size of random data used to generate the salts for disclosures in bytes.
/// Constant length for readability considerations.
pub(crate) salt_size: usize,
/// The hash function used to create digests.
pub(crate) hasher: H,
}
/// Transforms a JSON object into an SD-JWT object by substituting selected values
/// with their corresponding disclosure digests.
#[cfg(feature = "sha")]
#[derive(Debug, Clone)]
pub struct SdObjectEncoder<H: Hasher = Sha256Hasher> {
/// The object in JSON format.
pub(crate) object: Value,
/// Size of random data used to generate the salts for disclosures in bytes.
/// Constant length for readability considerations.
pub(crate) salt_size: usize,
/// The hash function used to create digests.
pub(crate) hasher: H,
}
#[cfg(feature = "sha")]
impl SdObjectEncoder {
/// Creates a new [`SdObjectEncoder`] with `sha-256` hash function.
///
/// ## Error
/// Returns [`Error::DeserializationError`] if `object` is not a valid JSON object.
pub fn new(object: &str) -> Result<SdObjectEncoder<Sha256Hasher>> {
let object: Value = serde_json::from_str(object).map_err(|e| Error::DeserializationError(e.to_string()))?;
if !object.is_object() {
return Err(Error::DataTypeMismatch("expected object".to_owned()));
}
Ok(SdObjectEncoder {
object,
salt_size: DEFAULT_SALT_SIZE,
hasher: Sha256Hasher::new(),
})
}
/// Creates a new [`SdObjectEncoder`] with `sha-256` hash function from a serializable object.
///
/// ## Error
/// Returns [`Error::DeserializationError`] if `object` can not be serialized into a valid JSON object.
pub fn try_from_serializable<T: serde::Serialize>(object: T) -> std::result::Result<Self, crate::Error> {
let object: Value = serde_json::to_value(&object).map_err(|e| Error::DeserializationError(e.to_string()))?;
SdObjectEncoder::try_from(object)
}
}
#[cfg(feature = "sha")]
impl TryFrom<Value> for SdObjectEncoder {
type Error = crate::Error;
fn try_from(value: Value) -> std::result::Result<Self, Self::Error> {
if !value.is_object() {
return Err(Error::DataTypeMismatch("expected object".to_owned()));
}
Ok(SdObjectEncoder {
object: value,
salt_size: DEFAULT_SALT_SIZE,
hasher: Sha256Hasher::new(),
})
}
}
impl<H: Hasher> SdObjectEncoder<H> {
/// Creates a new [`SdObjectEncoder`] with custom hash function to create digests.
pub fn with_custom_hasher(object: &str, hasher: H) -> Result<Self> {
let object: Value = serde_json::to_value(object).map_err(|e| Error::DeserializationError(e.to_string()))?;
if !object.is_object() {
return Err(Error::DataTypeMismatch("expected object".to_owned()));
}
Ok(Self {
object,
salt_size: DEFAULT_SALT_SIZE,
hasher,
})
}
/// Substitutes a value with the digest of its disclosure.
/// If no salt is provided, the disclosure will be created with a random salt value.
///
/// `path` indicates the pointer to the value that will be concealed using the syntax of
/// [JSON pointer](https://datatracker.ietf.org/doc/html/rfc6901).
///
///
/// ## Example
/// ```
/// use sd_jwt_payload::SdObjectEncoder;
/// use sd_jwt_payload::json;
///
/// let obj = json!({
/// "id": "did:value",
/// "claim1": {
/// "abc": true
/// },
/// "claim2": ["val_1", "val_2"]
/// });
/// let mut encoder = SdObjectEncoder::try_from(obj).unwrap();
/// encoder.conceal("/id", None).unwrap(); //conceals "id": "did:value"
/// encoder.conceal("/claim1/abc", None).unwrap(); //"abc": true
/// encoder.conceal("/claim2/0", None).unwrap(); //conceals "val_1"
/// ```
///
/// ## Error
/// * [`Error::InvalidPath`] if pointer is invalid.
/// * [`Error::DataTypeMismatch`] if existing SD format is invalid.
pub fn conceal(&mut self, path: &str, salt: Option<String>) -> Result<Disclosure> {
// Determine salt.
let salt = salt.unwrap_or(Self::gen_rand(self.salt_size));
let element_pointer = path
.parse::<JsonPointer<_, _>>()
.map_err(|err| Error::InvalidPath(format!("{:?}", err)))?;
let mut parent_pointer = element_pointer.clone();
let element_key = parent_pointer
.pop()
.ok_or(Error::InvalidPath("path does not contain any values".to_string()))?;
let parent = parent_pointer
.get(&self.object)
.map_err(|err| Error::InvalidPath(format!("{:?}", err)))?;
match parent {
Value::Object(_) => {
let parent = parent_pointer
.get_mut(&mut self.object)
.map_err(|err| Error::InvalidPath(format!("{:?}", err)))?
.as_object_mut()
.ok_or(Error::InvalidPath("path does not contain any values".to_string()))?;
// Remove the value from the parent and create a disclosure for it.
let disclosure = Disclosure::new(
salt,
Some(element_key.to_owned()),
parent
.remove(&element_key)
.ok_or(Error::InvalidPath(format!("{} does not exist", element_key)))?,
);
// Hash the disclosure.
let hash = self.hasher.encoded_digest(disclosure.as_str());
// Add the hash to the "_sd" array if exists; otherwise, create the array and insert the hash.
Self::add_digest_to_object(parent, hash)?;
Ok(disclosure)
}
Value::Array(_) => {
let element = element_pointer.get_mut(&mut self.object).unwrap();
let disclosure = Disclosure::new(salt, None, element.clone());
let hash = self.hasher.encoded_digest(disclosure.as_str());
let tripledot = json!({ARRAY_DIGEST_KEY: hash});
*element = tripledot;
Ok(disclosure)
}
_ => Err(crate::Error::Unspecified(
"parent of element can can only be an object or an array".to_string(),
)),
}
}
/// Adds the `_sd_alg` property to the top level of the object.
/// The value is taken from the [`crate::Hasher::alg_name`] implementation.
pub fn add_sd_alg_property(&mut self) -> Option<Value> {
if let Some(object) = self.object.as_object_mut() {
object.insert(SD_ALG.to_string(), Value::String(self.hasher.alg_name().to_string()))
} else {
None // Should be unreachable since the `self.object` is checked to be an object on creation.
}
}
/// Returns the modified object as a string.
pub fn try_to_string(&self) -> Result<String> {
serde_json::to_string(&self.object)
.map_err(|_e| Error::Unspecified("error while serializing internal object".to_string()))
}
/// Adds a decoy digest to the specified path.
///
/// `path` indicates the pointer to the value that will be concealed using the syntax of
/// [JSON pointer](https://datatracker.ietf.org/doc/html/rfc6901).
///
/// Use `path` = "" to add decoys to the top level.
pub fn add_decoys(&mut self, path: &str, number_of_decoys: usize) -> Result<()> {
for _ in 0..number_of_decoys {
self.add_decoy(path)?;
}
Ok(())
}
fn add_decoy(&mut self, path: &str) -> Result<Disclosure> {
let mut element_pointer = path
.parse::<JsonPointer<_, _>>()
.map_err(|err| Error::InvalidPath(format!("{:?}", err)))?;
let value = element_pointer
.get_mut(&mut self.object)
.map_err(|err| Error::InvalidPath(format!("{:?}", err)))?;
if let Some(object) = value.as_object_mut() {
let (disclosure, hash) = Self::random_digest(&self.hasher, self.salt_size, true);
Self::add_digest_to_object(object, hash)?;
Ok(disclosure)
} else if let Some(array) = value.as_array_mut() {
let (disclosure, hash) = Self::random_digest(&self.hasher, self.salt_size, true);
let tripledot = json!({ARRAY_DIGEST_KEY: hash});
array.push(tripledot);
Ok(disclosure)
} else {
Err(Error::InvalidPath(format!(
"{:?} is neither an object nor an array",
element_pointer.pop()
)))
}
}
/// Add the hash to the "_sd" array if exists; otherwise, create the array and insert the hash.
fn add_digest_to_object(object: &mut Map<String, Value>, digest: String) -> Result<()> {
if let Some(sd_value) = object.get_mut(DIGESTS_KEY) {
if let Value::Array(value) = sd_value {
value.push(Value::String(digest))
} else {
return Err(Error::DataTypeMismatch(
"invalid object: existing `_sd` type is not an array".to_string(),
));
}
} else {
object.insert(DIGESTS_KEY.to_owned(), Value::Array(vec![Value::String(digest)]));
}
Ok(())
}
fn random_digest(hasher: &dyn Hasher, salt_len: usize, array_entry: bool) -> (Disclosure, String) {
let mut rng = rand::thread_rng();
let salt = Self::gen_rand(salt_len);
let decoy_value_length = rng.gen_range(20..=100);
let decoy_claim_name = if array_entry {
None
} else {
let decoy_claim_name_length = rng.gen_range(4..=10);
Some(Self::gen_rand(decoy_claim_name_length))
};
let decoy_value = Self::gen_rand(decoy_value_length);
let disclosure = Disclosure::new(salt, decoy_claim_name, Value::String(decoy_value));
let hash = hasher.encoded_digest(disclosure.as_str());
(disclosure, hash)
}
fn gen_rand(len: usize) -> String {
let mut bytes = vec![0; len];
let mut rng = rand::thread_rng();
rng.fill(&mut bytes[..]);
multibase::Base::Base64Url.encode(bytes)
}
/// Returns a reference to the internal object.
pub fn object(&self) -> Result<&Map<String, Value>> {
// Safety: encoder can be constructed from objects only.
self.object.as_object().ok_or(Error::DataTypeMismatch(
"encoder initialized with invalid JSON object".to_string(),
))
}
/// Returns the used salt length.
pub fn salt_size(&self) -> usize {
self.salt_size
}
/// Sets size of random data used to generate the salts for disclosures in bytes.
///
/// ## Warning
/// Salt size must be >= 16.
pub fn set_salt_size(&mut self, salt_size: usize) -> Result<()> {
if salt_size < 16 {
Err(Error::InvalidSaltSize)
} else {
self.salt_size = salt_size;
Ok(())
}
}
}
#[cfg(test)]
mod test {
use super::SdObjectEncoder;
use crate::Error;
use serde::Serialize;
use serde_json::json;
use serde_json::Value;
#[derive(Serialize)]
struct TestStruct {
id: String,
claim2: Vec<String>,
}
fn object() -> Value {
json!({
"id": "did:value",
"claim1": {
"abc": true
},
"claim2": ["arr-value1", "arr-value2"]
})
}
#[test]
fn simple() {
let mut encoder = SdObjectEncoder::try_from(object()).unwrap();
encoder.conceal("/claim1/abc", None).unwrap();
encoder.conceal("/id", None).unwrap();
encoder.add_decoys("", 10).unwrap();
encoder.add_decoys("/claim2", 10).unwrap();
assert!(encoder.object().unwrap().get("id").is_none());
assert_eq!(encoder.object.get("_sd").unwrap().as_array().unwrap().len(), 11);
assert_eq!(encoder.object.get("claim2").unwrap().as_array().unwrap().len(), 12);
}
#[test]
fn errors() {
let mut encoder = SdObjectEncoder::try_from(object()).unwrap();
encoder.conceal("/claim1/abc", None).unwrap();
assert!(matches!(
encoder.conceal("claim2/2", None).unwrap_err(),
Error::InvalidPath(_)
));
}
#[test]
fn test_wrong_path() {
let mut encoder = SdObjectEncoder::try_from(object()).unwrap();
assert!(matches!(
encoder.conceal("/claim12", None).unwrap_err(),
Error::InvalidPath(_)
));
assert!(matches!(
encoder.conceal("/claim12/0", None).unwrap_err(),
Error::InvalidPath(_)
));
}
#[test]
fn test_from_serializable() {
let test_value = TestStruct {
id: "did:value".to_string(),
claim2: vec!["arr-value1".to_string(), "arr-vlaue2".to_string()],
};
let mut encoder = SdObjectEncoder::try_from_serializable(test_value).unwrap();
encoder.conceal("/id", None).unwrap();
encoder.add_decoys("", 10).unwrap();
encoder.add_decoys("/claim2", 10).unwrap();
assert!(encoder.object.get("id").is_none());
assert_eq!(encoder.object.get("_sd").unwrap().as_array().unwrap().len(), 11);
assert_eq!(encoder.object.get("claim2").unwrap().as_array().unwrap().len(), 12);
}
}