pub struct WrappedKeyV40 {
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 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
Source§impl PartialEq for WrappedKeyV40
impl PartialEq for WrappedKeyV40
Source§impl Serialize for WrappedKeyV40
impl Serialize for WrappedKeyV40
Source§impl TypeFingerprint for WrappedKeyV40
impl TypeFingerprint for WrappedKeyV40
fn fingerprint() -> String
impl StructuralPartialEq for WrappedKeyV40
Auto Trait Implementations§
impl Freeze for WrappedKeyV40
impl RefUnwindSafe for WrappedKeyV40
impl Send for WrappedKeyV40
impl Sync for WrappedKeyV40
impl Unpin for WrappedKeyV40
impl UnwindSafe for WrappedKeyV40
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)