Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade base64 to 0.21 #123

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ edition = "2021"
common = {path = "../common", version = "0.1.0"}
crypto = {path = "../crypto", version = "0.1.0"}

base64 = "0.13"
base64 = "0.21.7"
csv = "1.1.1"
fernet = "0.2.1"
hex = "0.4.2"
Expand Down
4 changes: 3 additions & 1 deletion protocol/src/dpmc/helper.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ use std::path::Path;
use std::sync::Arc;
use std::sync::RwLock;

use base64::engine::general_purpose::URL_SAFE;
use base64::Engine;
use common::permutations::gen_permute_pattern;
use common::permutations::permute;
use common::permutations::undo_permute;
Expand Down Expand Up @@ -162,7 +164,7 @@ impl HelperDpmcProtocol for HelperDpmc {
let y = self.ec_cipher.to_bytes(&x);
y[0].buffer.clone()
};
base64::encode_config(aes_key_bytes, base64::URL_SAFE)
URL_SAFE.encode(aes_key_bytes)
};

let alpha_t = {
Expand Down
4 changes: 3 additions & 1 deletion protocol/src/dpmc/partner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ use std::convert::TryInto;
use std::sync::Arc;
use std::sync::RwLock;

use base64::engine::general_purpose::URL_SAFE;
use base64::Engine;
use common::permutations::gen_permute_pattern;
use common::permutations::permute;
use common::timer;
Expand Down Expand Up @@ -120,7 +122,7 @@ impl PartnerDpmc {
.ec_cipher
.to_bytes(&[self.partner_scalar * (*helper_pk)]);
let aes_key_bytes = x[0].buffer.clone();
base64::encode_config(aes_key_bytes, base64::URL_SAFE)
URL_SAFE.encode(aes_key_bytes)
};
Ok(())
}
Expand Down
Loading