pub type WrappedKey = WrappedKeyV40;
Aliased Type§
struct WrappedKey {
pub wrapping_key_id: u128,
pub key: WrappedKeyBytesV32,
}
Fields§
§wrapping_key_id: u128
The identifier of the wrapping key. The identifier has meaning to whatever is doing the unwrapping.
key: WrappedKeyBytesV32
AES 256 requires a 512 bit key, which is made of two 256 bit keys, one for the data and one for the tweak. It is safe to use the same 256 bit key for both (see https://csrc.nist.gov/CSRC/media/Projects/Block-Cipher-Techniques/documents/BCM/Comments/XTS/follow-up_XTS_comments-Ball.pdf) which is what we do here. Since the key is wrapped with AES-GCM-SIV, there are an additional 16 bytes paid per key (so the actual key material is 32 bytes once unwrapped).
Trait Implementations§
Source§impl From<WrappedKeyV32> for WrappedKey
impl From<WrappedKeyV32> for WrappedKey
Source§fn from(from: WrappedKeyV32) -> Self
fn from(from: WrappedKeyV32) -> Self
Converts to this type from the input type.
Source§impl Clone for WrappedKeyV40
impl Clone for WrappedKeyV40
Source§fn clone(&self) -> WrappedKeyV40
fn clone(&self) -> WrappedKeyV40
Returns a copy of the value. Read more
1.0.0 · 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 WrappedKeyV40
impl Debug for WrappedKeyV40
Source§impl<'de> Deserialize<'de> for WrappedKeyV40
impl<'de> Deserialize<'de> for WrappedKeyV40
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