pub struct EcKeyRef<T>(_, _);
Expand description
Reference to EcKey
Implementations
sourceimpl<T> EcKeyRef<T> where
T: HasPrivate,
impl<T> EcKeyRef<T> where
T: HasPrivate,
sourcepub fn private_key_to_pem(&self) -> Result<Vec<u8>, ErrorStack>
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
.
sourcepub fn private_key_to_pem_passphrase(
&self,
cipher: Cipher,
passphrase: &[u8]
) -> Result<Vec<u8>, ErrorStack>
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
.
sourcepub fn private_key_to_der(&self) -> Result<Vec<u8>, ErrorStack>
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
.
sourcepub fn private_key(&self) -> &BigNumRef
pub fn private_key(&self) -> &BigNumRef
Return EcPoint
associated with the private key
OpenSSL documentation at EC_KEY_get0_private_key
sourceimpl<T> EcKeyRef<T> where
T: HasPublic,
impl<T> EcKeyRef<T> where
T: HasPublic,
sourcepub fn public_key(&self) -> &EcPointRef
pub fn public_key(&self) -> &EcPointRef
Returns the public key.
OpenSSL documentation at EC_KEY_get0_public_key
sourcepub fn public_key_to_pem(&self) -> Result<Vec<u8>, ErrorStack>
pub fn public_key_to_pem(&self) -> Result<Vec<u8>, ErrorStack>
Serialies the public key into a PEM-encoded SubjectPublicKeyInfo structure.
The output will have a header of -----BEGIN PUBLIC KEY-----
.
This corresponds to PEM_write_bio_EC_PUBKEY
.
sourcepub fn public_key_to_der(&self) -> Result<Vec<u8>, ErrorStack>
pub fn public_key_to_der(&self) -> Result<Vec<u8>, ErrorStack>
Serializes the public key into a DER-encoded SubjectPublicKeyInfo structure.
This corresponds to i2d_EC_PUBKEY
.
sourceimpl<T> EcKeyRef<T> where
T: HasParams,
impl<T> EcKeyRef<T> where
T: HasParams,
sourcepub fn group(&self) -> &EcGroupRef
pub fn group(&self) -> &EcGroupRef
Return EcGroup
of the EcKey
OpenSSL documentation at EC_KEY_get0_group
sourcepub fn check_key(&self) -> Result<(), ErrorStack>
pub fn check_key(&self) -> Result<(), ErrorStack>
Checks the key for validity.
OpenSSL documenation at EC_KEY_check_key
Trait Implementations
sourceimpl<T> ForeignTypeRef for EcKeyRef<T>
impl<T> ForeignTypeRef for EcKeyRef<T>
sourceimpl<T> ToOwned for EcKeyRef<T>
impl<T> ToOwned for EcKeyRef<T>
impl<T> Send for EcKeyRef<T>
impl<T> Sync for EcKeyRef<T>
Auto Trait Implementations
impl<T> !RefUnwindSafe for EcKeyRef<T>
impl<T> Unpin for EcKeyRef<T> where
T: Unpin,
impl<T> UnwindSafe for EcKeyRef<T> where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more