Enum win_crypto_ng::asymmetric::builder::DsaParams
source · pub enum DsaParams {
V1(DsaParamsV1),
V2(DsaParamsV2),
}
Expand description
Algorithm-specific DH parameters.
Variants§
V1(DsaParamsV1)
Used with key of size in the 512..=1024
range.
V2(DsaParamsV2)
Used with key of size in the 1024..=3072
range.
Trait Implementations§
impl BuilderParams for DsaParams
Auto Trait Implementations§
impl RefUnwindSafe for DsaParams
impl Send for DsaParams
impl Sync for DsaParams
impl Unpin for DsaParams
impl UnwindSafe for DsaParams
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