#[repr(u32)]pub enum AttributeId {
Show 48 variants
SecretValue = 3_221_225_472,
RsaModulus = 3_489_661_232,
PublicExponent = 3_489_661_488,
PrivateExponent = 3_221_226_288,
RsaPrime1 = 3_221_226_544,
RsaPrime2 = 3_221_226_800,
RsaExponent1 = 3_221_227_056,
RsaExponent2 = 3_221_227_312,
RsaCoefficient = 3_221_227_568,
DsaPrime = 3_489_665_073,
DsaSubprimme = 3_489_665_329,
DsaBase = 3_489_665_585,
DsaPublicValue = 3_489_661_233,
DsaPrivateValue = 3_221_226_033,
DhPrime = 3_489_665_074,
DhSubprime = 3_489_665_330,
DhBase = 3_489_665_586,
DhXBits = 4_026_536_754,
DhPublicValue = 3_489_661_234,
DhPrivateValue = 3_221_226_034,
RsaOaepLabel = 3_489_663_280,
RsaOaepMgfHash = 3_489_663_281,
RsaPssSaltLength = 4_026_534_448,
EccPublicValueX = 3_489_661_249,
EccPublicValueY = 3_489_661_505,
EccPrivateValue = 3_221_226_305,
EccEphemeralPublicValueX = 3_489_661_254,
EccEphemeralPublicValueY = 3_489_661_510,
EccCurve = 4_026_532_929,
EddsaCtx = 3_489_662_531,
Ed25519PublicValue = 3_489_662_787,
Ed25519PrivateValue = 3_221_227_587,
X25519PublicValue = 3_489_663_300,
X25519PrivateValue = 3_221_228_100,
Ed448PublicValue = 3_489_660_930,
Ed448PrivateValue = 3_221_225_475,
EddsaPrehash = 4_026_531_844,
X448PublicValue = 3_489_663_557,
X448PrivateValue = 3_221_228_102,
Sm2IdInitiator = 3_489_662_022,
Sm2IdResponder = 3_489_662_278,
Sm2KepUser = 4_026_533_446,
Sm2KepConfirmationIn = 3_489_662_790,
Sm2KepConfirmationOut = 3_489_663_046,
HkdfSalt = 3_489_663_302,
HkdfInfo = 3_489_663_558,
HkdfHashAlgorithm = 4_026_534_726,
KdfKeySize = 4_026_534_982,
}
Variants§
SecretValue = 3_221_225_472
RsaModulus = 3_489_661_232
PublicExponent = 3_489_661_488
PrivateExponent = 3_221_226_288
RsaPrime1 = 3_221_226_544
RsaPrime2 = 3_221_226_800
RsaExponent1 = 3_221_227_056
RsaExponent2 = 3_221_227_312
RsaCoefficient = 3_221_227_568
DsaPrime = 3_489_665_073
DsaSubprimme = 3_489_665_329
DsaBase = 3_489_665_585
DsaPublicValue = 3_489_661_233
DsaPrivateValue = 3_221_226_033
DhPrime = 3_489_665_074
DhSubprime = 3_489_665_330
DhBase = 3_489_665_586
DhXBits = 4_026_536_754
DhPublicValue = 3_489_661_234
DhPrivateValue = 3_221_226_034
RsaOaepLabel = 3_489_663_280
RsaOaepMgfHash = 3_489_663_281
RsaPssSaltLength = 4_026_534_448
EccPublicValueX = 3_489_661_249
EccPublicValueY = 3_489_661_505
EccPrivateValue = 3_221_226_305
EccEphemeralPublicValueX = 3_489_661_254
EccEphemeralPublicValueY = 3_489_661_510
EccCurve = 4_026_532_929
EddsaCtx = 3_489_662_531
Ed25519PublicValue = 3_489_662_787
Ed25519PrivateValue = 3_221_227_587
X25519PublicValue = 3_489_663_300
X25519PrivateValue = 3_221_228_100
Ed448PublicValue = 3_489_660_930
Ed448PrivateValue = 3_221_225_475
EddsaPrehash = 4_026_531_844
X448PublicValue = 3_489_663_557
X448PrivateValue = 3_221_228_102
Sm2IdInitiator = 3_489_662_022
Sm2IdResponder = 3_489_662_278
Sm2KepUser = 4_026_533_446
Sm2KepConfirmationIn = 3_489_662_790
Sm2KepConfirmationOut = 3_489_663_046
HkdfSalt = 3_489_663_302
HkdfInfo = 3_489_663_558
HkdfHashAlgorithm = 4_026_534_726
KdfKeySize = 4_026_534_982
Implementations§
Trait Implementations§
Source§impl Clone for AttributeId
impl Clone for AttributeId
Source§fn clone(&self) -> AttributeId
fn clone(&self) -> AttributeId
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 AttributeId
impl Debug for AttributeId
Source§impl FromPrimitive for AttributeId
impl FromPrimitive for AttributeId
Source§fn from_i64(n: i64) -> Option<Self>
fn from_i64(n: i64) -> Option<Self>
Converts an
i64
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned.Source§fn from_u64(n: u64) -> Option<Self>
fn from_u64(n: u64) -> Option<Self>
Converts an
u64
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned.Source§fn from_isize(n: isize) -> Option<Self>
fn from_isize(n: isize) -> Option<Self>
Converts an
isize
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned.Source§fn from_i8(n: i8) -> Option<Self>
fn from_i8(n: i8) -> Option<Self>
Converts an
i8
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned.Source§fn from_i16(n: i16) -> Option<Self>
fn from_i16(n: i16) -> Option<Self>
Converts an
i16
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned.Source§fn from_i32(n: i32) -> Option<Self>
fn from_i32(n: i32) -> Option<Self>
Converts an
i32
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned.Source§fn from_i128(n: i128) -> Option<Self>
fn from_i128(n: i128) -> Option<Self>
Converts an
i128
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned. Read moreSource§fn from_usize(n: usize) -> Option<Self>
fn from_usize(n: usize) -> Option<Self>
Converts a
usize
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned.Source§fn from_u8(n: u8) -> Option<Self>
fn from_u8(n: u8) -> Option<Self>
Converts an
u8
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned.Source§fn from_u16(n: u16) -> Option<Self>
fn from_u16(n: u16) -> Option<Self>
Converts an
u16
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned.Source§fn from_u32(n: u32) -> Option<Self>
fn from_u32(n: u32) -> Option<Self>
Converts an
u32
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned.Source§fn from_u128(n: u128) -> Option<Self>
fn from_u128(n: u128) -> Option<Self>
Converts an
u128
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned. Read moreSource§impl PartialEq for AttributeId
impl PartialEq for AttributeId
impl Copy for AttributeId
impl Eq for AttributeId
impl StructuralPartialEq for AttributeId
Auto Trait Implementations§
impl Freeze for AttributeId
impl RefUnwindSafe for AttributeId
impl Send for AttributeId
impl Sync for AttributeId
impl Unpin for AttributeId
impl UnwindSafe for AttributeId
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
)