Struct openssl::ec::EcKeyRef [−][src]
Reference to EcKey
Implementations
impl<T> EcKeyRef<T> where
T: HasPrivate,
[src][−]
T: HasPrivate,
pub fn private_key_to_pem(&self) -> Result<Vec<u8>, ErrorStack>
[src][−]
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][−]
&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][−]
Serializes the private key into a DER-encoded ECPrivateKey structure.
This corresponds to i2d_ECPrivateKey
.
pub fn private_key(&self) -> &BigNumRef
[src][−]
Return EcPoint
associated with the private key
OpenSSL documentation at EC_KEY_get0_private_key
impl<T> EcKeyRef<T> where
T: HasPublic,
[src][−]
T: HasPublic,
pub fn public_key(&self) -> &EcPointRef
[src][−]
Returns the public key.
OpenSSL documentation at EC_KEY_get0_public_key
pub fn public_key_to_pem(&self) -> Result<Vec<u8>, ErrorStack>
[src][−]
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
.
pub fn public_key_to_der(&self) -> Result<Vec<u8>, ErrorStack>
[src][−]
Serializes the public key into a DER-encoded SubjectPublicKeyInfo structure.
This corresponds to i2d_EC_PUBKEY
.
impl<T> EcKeyRef<T> where
T: HasParams,
[src][−]
T: HasParams,
pub fn group(&self) -> &EcGroupRef
[src][−]
Return EcGroup
of the EcKey
OpenSSL documentation at EC_KEY_get0_group
pub fn check_key(&self) -> Result<(), ErrorStack>
[src][−]
Checks the key for validity.
OpenSSL documenation at EC_KEY_check_key
Trait Implementations
impl<T> AsRef<EcKeyRef<T>> for EcKey<T>
[src][+]
impl<T> Borrow<EcKeyRef<T>> for EcKey<T>
[src][+]
impl<T> ForeignTypeRef for EcKeyRef<T>
[src][+]
impl<T> Send for EcKeyRef<T>
[src]
impl<T> Sync for EcKeyRef<T>
[src]
impl<T> ToOwned for EcKeyRef<T>
[src][+]
Auto Trait Implementations
impl<T> !RefUnwindSafe for EcKeyRef<T>
impl<T> Unpin for EcKeyRef<T> where
T: Unpin,
T: Unpin,
impl<T> UnwindSafe for EcKeyRef<T> where
T: UnwindSafe,
T: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,