[−][src]Struct openssl::ec::EcKeyRef
Reference to EcKey
Methods
impl<T> EcKeyRef<T> where
T: HasPrivate,
[src]
impl<T> EcKeyRef<T> where
T: HasPrivate,
pub fn private_key_to_pem(&self) -> Result<Vec<u8>, ErrorStack>
[src]
pub fn private_key_to_pem(&self) -> Result<Vec<u8>, ErrorStack>
Serializes the private key to a PEM-encoded ECPrivateKey structure.
The output will have a header of -----BEGIN EC PRIVATE KEY-----
.
This corresponds to PEM_write_bio_ECPrivateKey
.
pub fn private_key_to_pem_passphrase(
&self,
cipher: Cipher,
passphrase: &[u8]
) -> Result<Vec<u8>, ErrorStack>
[src]
pub fn private_key_to_pem_passphrase(
&self,
cipher: Cipher,
passphrase: &[u8]
) -> Result<Vec<u8>, ErrorStack>
Serializes the private key to a PEM-encoded encrypted ECPrivateKey structure.
The output will have a header of -----BEGIN EC PRIVATE KEY-----
.
This corresponds to PEM_write_bio_ECPrivateKey
.
pub fn private_key_to_der(&self) -> Result<Vec<u8>, ErrorStack>
[src]
pub fn private_key_to_der(&self) -> Result<Vec<u8>, ErrorStack>
Serializes the private key into a DER-encoded ECPrivateKey structure.
This corresponds to i2d_ECPrivateKey
.
pub fn private_key(&self) -> &BigNumRef
[src]
pub fn private_key(&self) -> &BigNumRef
Return [EcPoint
] associated with the private key
OpenSSL documentation at EC_KEY_get0_private_key
impl<T> EcKeyRef<T> where
T: HasPublic,
[src]
impl<T> EcKeyRef<T> where
T: HasPublic,
pub fn public_key(&self) -> &EcPointRef
[src]
pub fn public_key(&self) -> &EcPointRef
Returns the public key.
OpenSSL documentation at EC_KEY_get0_pubic_key
impl<T> EcKeyRef<T> where
T: HasParams,
[src]
impl<T> EcKeyRef<T> where
T: HasParams,
pub fn group(&self) -> &EcGroupRef
[src]
pub fn group(&self) -> &EcGroupRef
Return [EcGroup
] of the EcKey
OpenSSL documentation at EC_KEY_get0_group
pub fn check_key(&self) -> Result<(), ErrorStack>
[src]
pub fn check_key(&self) -> Result<(), ErrorStack>
Checks the key for validity.
OpenSSL documenation at EC_KEY_check_key
Trait Implementations
impl<T> Borrow<EcKeyRef<T>> for EcKey<T>
[src]
impl<T> Borrow<EcKeyRef<T>> for EcKey<T>
impl<T> AsRef<EcKeyRef<T>> for EcKey<T>
[src]
impl<T> AsRef<EcKeyRef<T>> for EcKey<T>
impl<T> ForeignTypeRef for EcKeyRef<T>
[src]
impl<T> ForeignTypeRef for EcKeyRef<T>
type CType = EC_KEY
The raw C type.
ⓘImportant traits for &'a mut Runsafe fn from_ptr<'a>(ptr: *mut Self::CType) -> &'a Self
[src]
unsafe fn from_ptr<'a>(ptr: *mut Self::CType) -> &'a Self
Constructs a shared instance of this type from its raw type.
ⓘImportant traits for &'a mut Runsafe fn from_ptr_mut<'a>(ptr: *mut Self::CType) -> &'a mut Self
[src]
unsafe fn from_ptr_mut<'a>(ptr: *mut Self::CType) -> &'a mut Self
Constructs a mutable reference of this type from its raw type.
fn as_ptr(&self) -> *mut Self::CType
[src]
fn as_ptr(&self) -> *mut Self::CType
Returns a raw pointer to the wrapped value.
impl<T> Send for EcKeyRef<T>
[src]
impl<T> Send for EcKeyRef<T>
impl<T> Sync for EcKeyRef<T>
[src]
impl<T> Sync for EcKeyRef<T>
impl<T> ToOwned for EcKeyRef<T>
[src]
impl<T> ToOwned for EcKeyRef<T>
type Owned = EcKey<T>
fn to_owned(&self) -> EcKey<T>
[src]
fn to_owned(&self) -> EcKey<T>
Creates owned data from borrowed data, usually by cloning. Read more
fn clone_into(&self, target: &mut Self::Owned)
[src]
fn clone_into(&self, target: &mut Self::Owned)
🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
Blanket Implementations
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
type Owned = T
fn to_owned(&self) -> T
[src]
fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
fn clone_into(&self, target: &mut T)
[src]
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T> From for T
[src]
impl<T> From for T
impl<T, U> Into for T where
U: From<T>,
[src]
impl<T, U> Into for T where
U: From<T>,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
impl<T, U> TryFrom for T where
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
try_from
)Performs the conversion.
impl<T> Borrow for T where
T: ?Sized,
[src]
impl<T> Borrow for T where
T: ?Sized,
ⓘImportant traits for &'a mut Rfn borrow(&self) -> &T
[src]
fn borrow(&self) -> &T
Immutably borrows from an owned value. Read more
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
try_from
)Performs the conversion.
impl<T> BorrowMut for T where
T: ?Sized,
[src]
impl<T> BorrowMut for T where
T: ?Sized,
ⓘImportant traits for &'a mut Rfn borrow_mut(&mut self) -> &mut T
[src]
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> Any for T where
T: 'static + ?Sized,
[src]
impl<T> Any for T where
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
fn get_type_id(&self) -> TypeId
🔬 This is a nightly-only experimental API. (get_type_id
)
this method will likely be replaced by an associated static
Gets the TypeId
of self
. Read more