pub struct EncryptedData {
pub algorithm: EncryptionAlgorithm,
pub nonce: String,
pub ciphertext: String,
pub key_id: String,
pub associated_data: Option<String>,
}Expand description
加密结果
Fields§
§algorithm: EncryptionAlgorithm加密算法
nonce: StringNonce(Base64)
ciphertext: String密文(Base64)
key_id: String密钥 ID
associated_data: Option<String>关联数据(可选)
Implementations§
Source§impl EncryptedData
impl EncryptedData
Sourcepub fn to_string(&self) -> Result<String, EncryptionError>
pub fn to_string(&self) -> Result<String, EncryptionError>
序列化为字符串
Sourcepub fn from_string(s: &str) -> Result<Self, EncryptionError>
pub fn from_string(s: &str) -> Result<Self, EncryptionError>
从字符串解析
Trait Implementations§
Source§impl Clone for EncryptedData
impl Clone for EncryptedData
Source§fn clone(&self) -> EncryptedData
fn clone(&self) -> EncryptedData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for EncryptedData
impl Debug for EncryptedData
Source§impl<'de> Deserialize<'de> for EncryptedData
impl<'de> Deserialize<'de> for EncryptedData
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for EncryptedData
impl RefUnwindSafe for EncryptedData
impl Send for EncryptedData
impl Sync for EncryptedData
impl Unpin for EncryptedData
impl UnsafeUnpin for EncryptedData
impl UnwindSafe for EncryptedData
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more