Skip to content

Commit 00eb72b

Browse files
bridiverDJAndries
authored andcommitted
bump base64 to 0.22
1 parent 5fc5671 commit 00eb72b

File tree

5 files changed

+19
-15
lines changed

5 files changed

+19
-15
lines changed

ppoprf/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ppoprf"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
authors = ["Alex Davidson <coela@alxdavids.xyz>", "Ralph Ankele <rankele@brave.com>"]
55
description = "Puncturable Partially-Oblivious Pseudo-Random Function"
66
documentation = "https://docs.rs/ppoprf"
@@ -16,7 +16,7 @@ bitvec = { version = "1.0.1", features = ["serde"] }
1616
curve25519-dalek = { version = "4.0.0", features = [ "rand_core", "serde" ] }
1717
serde = { version = "1.0.147", features = ["derive"] }
1818
strobe-rs = "0.10.0"
19-
base64 = "0.13.0"
19+
base64 = "0.22"
2020
bincode = "1.3.3"
2121
derive_more = "0.99"
2222
zeroize = { version = "1.5.5", features = [ "derive" ] }

ppoprf/examples/client.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
//! cargo run --example client
1414
//! ```
1515
16+
use base64::{engine::Engine as _, prelude::BASE64_STANDARD};
1617
use env_logger::Env;
1718
use log::info;
1819
use ppoprf::ppoprf;
@@ -86,7 +87,7 @@ fn fetch_randomness(url: &str) -> reqwest::Result<()> {
8687
// used, which we don't currently coordinate, so skip this step.
8788
//let mut out = vec![0u8; ppoprf::COMPRESSED_POINT_LEN];
8889
//ppoprf::Client::finalize(message.as_bytes(), &md, &unblinded, &mut out);
89-
let point = base64::encode(unblinded.as_bytes());
90+
let point = BASE64_STANDARD.encode(unblinded.as_bytes());
9091
let proof = result.proof.is_some();
9192
let meta = if proof { " proof" } else { "" };
9293
info!(" {}{}", &point, &meta);

ppoprf/src/ppoprf.rs

+5-4
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
//! This construction is primarily used in the STAR protocol for
1212
//! providing secure randomness to clients.
1313
14+
use base64::{engine::Engine as _, prelude::BASE64_STANDARD};
1415
use curve25519_dalek::traits::Identity;
1516
use rand::{rngs::OsRng, Rng};
1617

@@ -288,15 +289,15 @@ fn point_serialize<S>(p: &Point, s: S) -> Result<S::Ok, S::Error>
288289
where
289290
S: ser::Serializer,
290291
{
291-
s.serialize_str(&base64::encode(p.0 .0))
292+
s.serialize_str(&BASE64_STANDARD.encode(p.0 .0))
292293
}
293294

294295
fn point_deserialize<'de, D>(d: D) -> Result<Point, D::Error>
295296
where
296297
D: de::Deserializer<'de>,
297298
{
298299
let s: &str = de::Deserialize::deserialize(d)?;
299-
let data = base64::decode(s).map_err(de::Error::custom)?;
300+
let data = BASE64_STANDARD.decode(s).map_err(de::Error::custom)?;
300301
let fixed_data: [u8; 32] = data
301302
.try_into()
302303
.map_err(|_| de::Error::custom("Ristretto must be 32 bytes"))?;
@@ -623,7 +624,7 @@ mod tests {
623624
.expect("Should serialize to bincode");
624625

625626
let expected = "qvgkBOX3v6c1LOCT5Kq+gkNThdZKqHAJClbRqjYWmAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH21zz6BGKHRL9pORR/hTW+FKDvE+OrKUQTF3tUHwjaCQJ4y7Cc0Y+Qgk+M41esYWMnb7xw31kKOFOtBW9K8W9mKwMMGFZGUxdw8a0YR+AcaR4oHwziNgXQOiYl9+HURiPWKgSC7x8pf72mezXiE73bnAQ+Ydwj1TiaXpObtvV73UFFQQXqHR1+dcom/BojKL4hyvKQwXEyjBip91w+Akrlxwv8NAaOL9VPRsgI/LJ+qWvbblaC1onIB9giUBNgnKk4P5juHAfkpVyW6kyQjufMFaegMpo9P47w84s4Bo4AtMizA3rcPw==";
626-
assert_eq!(base64::encode(&pk_bincode), expected);
627+
assert_eq!(BASE64_STANDARD.encode(&pk_bincode), expected);
627628

628629
ServerPublicKey::load_from_bincode(&pk_bincode)
629630
.expect("Should load bincode");
@@ -651,7 +652,7 @@ mod tests {
651652
.expect("Should serialize to bincode");
652653

653654
let expected = "BwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcPDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw==";
654-
assert_eq!(base64::encode(&proof_bincode), expected);
655+
assert_eq!(BASE64_STANDARD.encode(&proof_bincode), expected);
655656

656657
ProofDLEQ::load_from_bincode(&proof_bincode).expect("Should load bincode");
657658
}

star-wasm/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "star-wasm"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
authors = ["Rémi Berson <remi@brave.com>"]
55
description = "WASM bindings for the STAR protocol"
66
repository = "https://github.com/brave/sta-rs"
@@ -19,7 +19,7 @@ default = []
1919
sta-rs = { path = "../star", default-features = false }
2020
getrandom = { version = "0.2", features = ["js"] }
2121
wasm-bindgen = "0.2"
22-
base64 = "0.20"
22+
base64 = "0.22"
2323
console_error_panic_hook = "0.1.7"
2424

2525
[dev-dependencies]

star-wasm/src/lib.rs

+8-6
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
88
use wasm_bindgen::prelude::*;
99

10-
use base64::{decode, encode};
10+
use base64::{engine::Engine as _, prelude::BASE64_STANDARD};
1111

1212
use sta_rs::{
1313
derive_ske_key, share_recover, MessageGenerator, Share, SingleMeasurement,
@@ -50,9 +50,9 @@ pub fn create_share(measurement: &[u8], threshold: u32, epoch: &str) -> String {
5050
}
5151
let WASMSharingMaterial { key, share, tag } = share_result.unwrap();
5252

53-
let key_b64 = encode(key);
54-
let share_b64 = encode(share.to_bytes());
55-
let tag_b64 = encode(tag);
53+
let key_b64 = BASE64_STANDARD.encode(key);
54+
let share_b64 = BASE64_STANDARD.encode(share.to_bytes());
55+
let tag_b64 = BASE64_STANDARD.encode(tag);
5656

5757
format!(
5858
r#"{{"key": "{key_b64}", "share": "{share_b64}", "tag": "{tag_b64}"}}"#
@@ -67,7 +67,9 @@ pub fn group_shares(serialized_shares: &str, epoch: &str) -> Option<String> {
6767
// 1. deserialize shares into Vec<Share>
6868
let shares: Vec<Share> = serialized_shares
6969
.split('\n')
70-
.map(|chunk| Share::from_bytes(&decode(chunk).unwrap()).unwrap())
70+
.map(|chunk| {
71+
Share::from_bytes(&BASE64_STANDARD.decode(chunk).unwrap()).unwrap()
72+
})
7173
.collect();
7274

7375
// 2. call recover(shares)
@@ -81,5 +83,5 @@ pub fn group_shares(serialized_shares: &str, epoch: &str) -> Option<String> {
8183
let mut enc_key = vec![0u8; 16];
8284
derive_ske_key(&message, epoch.as_bytes(), &mut enc_key);
8385

84-
Some(encode(&enc_key))
86+
Some(BASE64_STANDARD.encode(&enc_key))
8587
}

0 commit comments

Comments
 (0)