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

[PM-6107] Use rayon to multithread encryption/decryption #215

Merged
merged 1 commit into from
Feb 8, 2024
Merged
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
40 changes: 40 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions crates/bitwarden-crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ num-bigint = ">=0.4, <0.5"
num-traits = ">=0.2.15, <0.3"
pbkdf2 = { version = ">=0.12.1, <0.13", default-features = false }
rand = ">=0.8.5, <0.9"
rayon = ">=1.8.1, <2.0"
rsa = ">=0.9.2, <0.10"
schemars = { version = ">=0.8, <0.9", features = ["uuid1"] }
serde = { version = ">=1.0, <2.0", features = ["derive"] }
Expand Down
34 changes: 23 additions & 11 deletions crates/bitwarden-crypto/src/encryptable.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
use std::{collections::HashMap, hash::Hash};

use rayon::prelude::*;
use uuid::Uuid;

use crate::{CryptoError, KeyDecryptable, KeyEncryptable, Result, SymmetricCryptoKey};

pub trait KeyContainer {
pub trait KeyContainer: Send + Sync {
fn get_key(&self, org_id: &Option<Uuid>) -> Option<&SymmetricCryptoKey>;
}

Expand Down Expand Up @@ -46,37 +47,48 @@
}
}

impl<T: Encryptable<Output>, Output> Encryptable<Vec<Output>> for Vec<T> {
impl<T: Encryptable<Output> + Send + Sync, Output: Send + Sync> Encryptable<Vec<Output>>
for Vec<T>
{
fn encrypt(self, enc: &dyn KeyContainer, org_id: &Option<Uuid>) -> Result<Vec<Output>> {
self.into_iter().map(|e| e.encrypt(enc, org_id)).collect()
self.into_par_iter()
.map(|e| e.encrypt(enc, org_id))
.collect()

Check warning on line 56 in crates/bitwarden-crypto/src/encryptable.rs

View check run for this annotation

Codecov / codecov/patch

crates/bitwarden-crypto/src/encryptable.rs#L54-L56

Added lines #L54 - L56 were not covered by tests
}
}

impl<T: Decryptable<Output>, Output> Decryptable<Vec<Output>> for Vec<T> {
impl<T: Decryptable<Output> + Send + Sync, Output: Send + Sync> Decryptable<Vec<Output>>
for Vec<T>
{
fn decrypt(&self, enc: &dyn KeyContainer, org_id: &Option<Uuid>) -> Result<Vec<Output>> {
self.iter().map(|e| e.decrypt(enc, org_id)).collect()
self.into_par_iter()
.map(|e| e.decrypt(enc, org_id))
.collect()

Check warning on line 66 in crates/bitwarden-crypto/src/encryptable.rs

View check run for this annotation

Codecov / codecov/patch

crates/bitwarden-crypto/src/encryptable.rs#L64-L66

Added lines #L64 - L66 were not covered by tests
}
}

impl<T: Encryptable<Output>, Output, Id: Hash + Eq> Encryptable<HashMap<Id, Output>>
for HashMap<Id, T>
impl<T: Encryptable<Output> + Send + Sync, Output: Send + Sync, Id: Hash + Eq + Send + Sync>
Encryptable<HashMap<Id, Output>> for HashMap<Id, T>
{
fn encrypt(self, enc: &dyn KeyContainer, org_id: &Option<Uuid>) -> Result<HashMap<Id, Output>> {
self.into_iter()
self.into_par_iter()

Check warning on line 74 in crates/bitwarden-crypto/src/encryptable.rs

View check run for this annotation

Codecov / codecov/patch

crates/bitwarden-crypto/src/encryptable.rs#L74

Added line #L74 was not covered by tests
.map(|(id, e)| Ok((id, e.encrypt(enc, org_id)?)))
.collect()
}
}

impl<T: Decryptable<Output>, Output, Id: Hash + Eq + Copy> Decryptable<HashMap<Id, Output>>
for HashMap<Id, T>
impl<
T: Decryptable<Output> + Send + Sync,
Output: Send + Sync,
Id: Hash + Eq + Copy + Send + Sync,
> Decryptable<HashMap<Id, Output>> for HashMap<Id, T>
{
fn decrypt(
&self,
enc: &dyn KeyContainer,
org_id: &Option<Uuid>,
) -> Result<HashMap<Id, Output>> {
self.iter()
self.into_par_iter()

Check warning on line 91 in crates/bitwarden-crypto/src/encryptable.rs

View check run for this annotation

Codecov / codecov/patch

crates/bitwarden-crypto/src/encryptable.rs#L91

Added line #L91 was not covered by tests
.map(|(id, e)| Ok((*id, e.decrypt(enc, org_id)?)))
.collect()
}
Expand Down
44 changes: 32 additions & 12 deletions crates/bitwarden-crypto/src/keys/key_encryptable.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
use std::{collections::HashMap, hash::Hash};

use rayon::prelude::*;

use crate::error::Result;

pub trait CryptoKey {}
Expand Down Expand Up @@ -44,37 +46,55 @@
}
}

impl<T: KeyEncryptable<Key, Output>, Key: CryptoKey, Output> KeyEncryptable<Key, Vec<Output>>
for Vec<T>
impl<
T: KeyEncryptable<Key, Output> + Send + Sync,
Key: CryptoKey + Send + Sync,
Output: Send + Sync,
> KeyEncryptable<Key, Vec<Output>> for Vec<T>
{
fn encrypt_with_key(self, key: &Key) -> Result<Vec<Output>> {
self.into_iter().map(|e| e.encrypt_with_key(key)).collect()
self.into_par_iter()
.map(|e| e.encrypt_with_key(key))
.collect()

Check warning on line 58 in crates/bitwarden-crypto/src/keys/key_encryptable.rs

View check run for this annotation

Codecov / codecov/patch

crates/bitwarden-crypto/src/keys/key_encryptable.rs#L56-L58

Added lines #L56 - L58 were not covered by tests
}
}

impl<T: KeyDecryptable<Key, Output>, Key: CryptoKey, Output> KeyDecryptable<Key, Vec<Output>>
for Vec<T>
impl<
T: KeyDecryptable<Key, Output> + Send + Sync,
Key: CryptoKey + Send + Sync,
Output: Send + Sync,
> KeyDecryptable<Key, Vec<Output>> for Vec<T>
{
fn decrypt_with_key(&self, key: &Key) -> Result<Vec<Output>> {
self.iter().map(|e| e.decrypt_with_key(key)).collect()
self.into_par_iter()
.map(|e| e.decrypt_with_key(key))
.collect()

Check warning on line 71 in crates/bitwarden-crypto/src/keys/key_encryptable.rs

View check run for this annotation

Codecov / codecov/patch

crates/bitwarden-crypto/src/keys/key_encryptable.rs#L69-L71

Added lines #L69 - L71 were not covered by tests
}
}

impl<T: KeyEncryptable<Key, Output>, Key: CryptoKey, Output, Id: Hash + Eq>
KeyEncryptable<Key, HashMap<Id, Output>> for HashMap<Id, T>
impl<
T: KeyEncryptable<Key, Output> + Send + Sync,
Key: CryptoKey + Send + Sync,
Output: Send + Sync,
Id: Hash + Eq + Send + Sync,
> KeyEncryptable<Key, HashMap<Id, Output>> for HashMap<Id, T>
{
fn encrypt_with_key(self, key: &Key) -> Result<HashMap<Id, Output>> {
self.into_iter()
self.into_par_iter()

Check warning on line 83 in crates/bitwarden-crypto/src/keys/key_encryptable.rs

View check run for this annotation

Codecov / codecov/patch

crates/bitwarden-crypto/src/keys/key_encryptable.rs#L83

Added line #L83 was not covered by tests
.map(|(id, e)| Ok((id, e.encrypt_with_key(key)?)))
.collect()
}
}

impl<T: KeyDecryptable<Key, Output>, Key: CryptoKey, Output, Id: Hash + Eq + Copy>
KeyDecryptable<Key, HashMap<Id, Output>> for HashMap<Id, T>
impl<
T: KeyDecryptable<Key, Output> + Send + Sync,
Key: CryptoKey + Send + Sync,
Output: Send + Sync,
Id: Hash + Eq + Copy + Send + Sync,
> KeyDecryptable<Key, HashMap<Id, Output>> for HashMap<Id, T>
{
fn decrypt_with_key(&self, key: &Key) -> Result<HashMap<Id, Output>> {
self.iter()
self.into_par_iter()

Check warning on line 97 in crates/bitwarden-crypto/src/keys/key_encryptable.rs

View check run for this annotation

Codecov / codecov/patch

crates/bitwarden-crypto/src/keys/key_encryptable.rs#L97

Added line #L97 was not covered by tests
.map(|(id, e)| Ok((*id, e.decrypt_with_key(key)?)))
.collect()
}
Expand Down
Loading