pub struct TransparentDSAPrivateKey {
pub p: Vec<u8>,
pub q: Vec<u8>,
pub g: Vec<u8>,
pub x: Vec<u8>,
}
Expand description
See KMIP 1.0 section 2.1.7.2 Transparent DSA Private Key.
Fields§
§p: Vec<u8>
§q: Vec<u8>
§g: Vec<u8>
§x: Vec<u8>
Trait Implementations§
Source§impl Clone for TransparentDSAPrivateKey
impl Clone for TransparentDSAPrivateKey
Source§fn clone(&self) -> TransparentDSAPrivateKey
fn clone(&self) -> TransparentDSAPrivateKey
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 TransparentDSAPrivateKey
impl Debug for TransparentDSAPrivateKey
Source§impl<'de> Deserialize<'de> for TransparentDSAPrivateKey
impl<'de> Deserialize<'de> for TransparentDSAPrivateKey
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 TransparentDSAPrivateKey
impl PartialEq for TransparentDSAPrivateKey
Source§impl Serialize for TransparentDSAPrivateKey
impl Serialize for TransparentDSAPrivateKey
impl Eq for TransparentDSAPrivateKey
impl StructuralPartialEq for TransparentDSAPrivateKey
Auto Trait Implementations§
impl Freeze for TransparentDSAPrivateKey
impl RefUnwindSafe for TransparentDSAPrivateKey
impl Send for TransparentDSAPrivateKey
impl Sync for TransparentDSAPrivateKey
impl Unpin for TransparentDSAPrivateKey
impl UnwindSafe for TransparentDSAPrivateKey
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