azure_storage_blobs 0.21.0

Azure Blob Storage crate from the Azure SDK for Rust
Documentation
use azure_core::headers::{self, AsHeaders, HeaderName, HeaderValue};

const DEFAULT_ENCRYPTION_ALGORITHM: &str = "AES256";

#[derive(Clone, Debug)]
pub struct CPKInfo {
    encryption_key: String,
    encryption_key_sha256: String,

    // only support AES256
    encryption_algorithm: Option<String>,
}

impl CPKInfo {
    pub fn new(key: String, key_sha256: String, algorithm: Option<String>) -> Self {
        Self {
            encryption_key: key,
            encryption_key_sha256: key_sha256,

            encryption_algorithm: algorithm,
        }
    }
}

impl From<(String, String)> for CPKInfo {
    fn from(s: (String, String)) -> Self {
        Self::new(s.0, s.1, None)
    }
}

impl From<(String, String, String)> for CPKInfo {
    fn from(s: (String, String, String)) -> Self {
        Self::new(s.0, s.1, Some(s.2))
    }
}

impl AsHeaders for CPKInfo {
    type Iter = std::vec::IntoIter<(HeaderName, HeaderValue)>;

    fn as_headers(&self) -> Self::Iter {
        let algorithm = self
            .encryption_algorithm
            .as_deref()
            .unwrap_or(DEFAULT_ENCRYPTION_ALGORITHM)
            .to_owned();
        let headers = vec![
            (headers::ENCRYPTION_ALGORITHM, algorithm.into()),
            (headers::ENCRYPTION_KEY, self.encryption_key.clone().into()),
            (
                headers::ENCRYPTION_KEY_SHA256,
                self.encryption_key_sha256.clone().into(),
            ),
        ];
        headers.into_iter()
    }
}

impl AsHeaders for &CPKInfo {
    type Iter = <CPKInfo as AsHeaders>::Iter;

    fn as_headers(&self) -> Self::Iter {
        (*self).as_headers()
    }
}