|
11 | 11 | //! This construction is primarily used in the STAR protocol for
|
12 | 12 | //! providing secure randomness to clients.
|
13 | 13 |
|
| 14 | +use base64::{engine::Engine as _, prelude::BASE64_STANDARD}; |
14 | 15 | use curve25519_dalek::traits::Identity;
|
15 | 16 | use rand::{rngs::OsRng, Rng};
|
16 | 17 |
|
@@ -288,15 +289,15 @@ fn point_serialize<S>(p: &Point, s: S) -> Result<S::Ok, S::Error>
|
288 | 289 | where
|
289 | 290 | S: ser::Serializer,
|
290 | 291 | {
|
291 |
| - s.serialize_str(&base64::encode(p.0 .0)) |
| 292 | + s.serialize_str(&BASE64_STANDARD.encode(p.0 .0)) |
292 | 293 | }
|
293 | 294 |
|
294 | 295 | fn point_deserialize<'de, D>(d: D) -> Result<Point, D::Error>
|
295 | 296 | where
|
296 | 297 | D: de::Deserializer<'de>,
|
297 | 298 | {
|
298 | 299 | 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)?; |
300 | 301 | let fixed_data: [u8; 32] = data
|
301 | 302 | .try_into()
|
302 | 303 | .map_err(|_| de::Error::custom("Ristretto must be 32 bytes"))?;
|
@@ -623,7 +624,7 @@ mod tests {
|
623 | 624 | .expect("Should serialize to bincode");
|
624 | 625 |
|
625 | 626 | 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); |
627 | 628 |
|
628 | 629 | ServerPublicKey::load_from_bincode(&pk_bincode)
|
629 | 630 | .expect("Should load bincode");
|
@@ -651,7 +652,7 @@ mod tests {
|
651 | 652 | .expect("Should serialize to bincode");
|
652 | 653 |
|
653 | 654 | let expected = "BwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcHBwcPDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw8PDw==";
|
654 |
| - assert_eq!(base64::encode(&proof_bincode), expected); |
| 655 | + assert_eq!(BASE64_STANDARD.encode(&proof_bincode), expected); |
655 | 656 |
|
656 | 657 | ProofDLEQ::load_from_bincode(&proof_bincode).expect("Should load bincode");
|
657 | 658 | }
|
|
0 commit comments