pub enum AesKeySize {
Bits128 = 128,
Bits192 = 192,
Bits256 = 256,
}Expand description
Supported AES key sizes for AES-GCM encryption.
The Iceberg spec supports 128, 192, and 256-bit keys for AES-GCM. See: https://iceberg.apache.org/gcm-stream-spec/#goals
Variants§
Bits128 = 128
128-bit AES key (16 bytes)
Bits192 = 192
192-bit AES key (24 bytes)
Bits256 = 256
256-bit AES key (32 bytes)
Implementations§
Source§impl AesKeySize
impl AesKeySize
Sourcepub fn key_length(&self) -> usize
pub fn key_length(&self) -> usize
Returns the key length in bytes for this key size.
Sourcepub fn from_key_length(len: usize) -> Result<Self>
pub fn from_key_length(len: usize) -> Result<Self>
Returns the key size for a given DEK length in bytes.
Matches Java’s encryption.data-key-length property semantics:
16 → 128-bit, 24 → 192-bit, 32 → 256-bit.
Trait Implementations§
Source§impl Clone for AesKeySize
impl Clone for AesKeySize
Source§fn clone(&self) -> AesKeySize
fn clone(&self) -> AesKeySize
Returns a duplicate 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 AesKeySize
impl Debug for AesKeySize
Source§impl FromStr for AesKeySize
impl FromStr for AesKeySize
Source§impl PartialEq for AesKeySize
impl PartialEq for AesKeySize
impl Copy for AesKeySize
impl Eq for AesKeySize
impl StructuralPartialEq for AesKeySize
Auto Trait Implementations§
impl Freeze for AesKeySize
impl RefUnwindSafe for AesKeySize
impl Send for AesKeySize
impl Sync for AesKeySize
impl Unpin for AesKeySize
impl UnwindSafe for AesKeySize
Blanket Implementations§
§impl<U> As for U
impl<U> As for U
§fn as_<T>(self) -> Twhere
T: CastFrom<U>,
fn as_<T>(self) -> Twhere
T: CastFrom<U>,
Casts
self to type T. The semantics of numeric casting with the as operator are followed, so <T as As>::as_::<U> can be used in the same way as T as U for numeric conversions. Read moreSource§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,
§impl<T> Downcast for Twhere
T: AsAny + ?Sized,
impl<T> Downcast for Twhere
T: AsAny + ?Sized,
§fn downcast_ref<T>(&self) -> Option<&T>where
T: AsAny,
fn downcast_ref<T>(&self) -> Option<&T>where
T: AsAny,
Forward to the method defined on the type
Any.§fn downcast_mut<T>(&mut self) -> Option<&mut T>where
T: AsAny,
fn downcast_mut<T>(&mut self) -> Option<&mut T>where
T: AsAny,
Forward to the method defined on the type
Any.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more