Struct rsa::RsaPublicKey
source · [−]pub struct RsaPublicKey { /* private fields */ }
Expand description
Represents the public part of an RSA key.
Implementations
Trait Implementations
sourceimpl Clone for RsaPublicKey
impl Clone for RsaPublicKey
sourcefn clone(&self) -> RsaPublicKey
fn clone(&self) -> RsaPublicKey
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for RsaPublicKey
impl Debug for RsaPublicKey
sourceimpl From<&'_ RsaPrivateKey> for RsaPublicKey
impl From<&'_ RsaPrivateKey> for RsaPublicKey
sourcefn from(private_key: &RsaPrivateKey) -> Self
fn from(private_key: &RsaPrivateKey) -> Self
Converts to this type from the input type.
sourceimpl From<RsaPrivateKey> for RsaPublicKey
impl From<RsaPrivateKey> for RsaPublicKey
sourcefn from(private_key: RsaPrivateKey) -> Self
fn from(private_key: RsaPrivateKey) -> Self
Converts to this type from the input type.
sourceimpl FromRsaPublicKey for RsaPublicKey
impl FromRsaPublicKey for RsaPublicKey
sourcefn from_pkcs1_public_key(pkcs1_key: RsaPublicKey<'_>) -> Result<Self>
fn from_pkcs1_public_key(pkcs1_key: RsaPublicKey<'_>) -> Result<Self>
Parse RsaPublicKey
into a RsaPublicKey
.
sourcefn from_pkcs1_der(bytes: &[u8]) -> Result<Self, Error>
fn from_pkcs1_der(bytes: &[u8]) -> Result<Self, Error>
Deserialize object from ASN.1 DER-encoded RsaPublicKey
(binary format). Read more
sourcefn from_pkcs1_pem(s: &str) -> Result<Self, Error>
fn from_pkcs1_pem(s: &str) -> Result<Self, Error>
Deserialize PEM-encoded RsaPublicKey
. Read more
sourcefn read_pkcs1_der_file(path: &Path) -> Result<Self, Error>
fn read_pkcs1_der_file(path: &Path) -> Result<Self, Error>
Load RsaPublicKey
from an ASN.1 DER-encoded file on the local
filesystem (binary format). Read more
sourcefn read_pkcs1_pem_file(path: &Path) -> Result<Self, Error>
fn read_pkcs1_pem_file(path: &Path) -> Result<Self, Error>
Load RsaPublicKey
from a PEM-encoded file on the local filesystem.
sourceimpl PartialEq<RsaPublicKey> for RsaPublicKey
impl PartialEq<RsaPublicKey> for RsaPublicKey
sourcefn eq(&self, other: &RsaPublicKey) -> bool
fn eq(&self, other: &RsaPublicKey) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &RsaPublicKey) -> bool
fn ne(&self, other: &RsaPublicKey) -> bool
This method tests for !=
.
sourceimpl PublicKey for RsaPublicKey
impl PublicKey for RsaPublicKey
sourcefn encrypt<R: Rng>(
&self,
rng: &mut R,
padding: PaddingScheme,
msg: &[u8]
) -> Result<Vec<u8>>
fn encrypt<R: Rng>(
&self,
rng: &mut R,
padding: PaddingScheme,
msg: &[u8]
) -> Result<Vec<u8>>
Encrypt the given message.
sourcefn verify(
&self,
padding: PaddingScheme,
hashed: &[u8],
sig: &[u8]
) -> Result<()>
fn verify(
&self,
padding: PaddingScheme,
hashed: &[u8],
sig: &[u8]
) -> Result<()>
Verify a signed message.
hashed
must be the result of hashing the input using the hashing function
passed in through hash
.
If the message is valid Ok(())
is returned, otherwiese an Err
indicating failure. Read more
sourceimpl<'a> PublicKey for &'a RsaPublicKey
impl<'a> PublicKey for &'a RsaPublicKey
sourcefn encrypt<R: Rng>(
&self,
rng: &mut R,
padding: PaddingScheme,
msg: &[u8]
) -> Result<Vec<u8>>
fn encrypt<R: Rng>(
&self,
rng: &mut R,
padding: PaddingScheme,
msg: &[u8]
) -> Result<Vec<u8>>
Encrypt the given message.
sourcefn verify(
&self,
padding: PaddingScheme,
hashed: &[u8],
sig: &[u8]
) -> Result<()>
fn verify(
&self,
padding: PaddingScheme,
hashed: &[u8],
sig: &[u8]
) -> Result<()>
Verify a signed message.
hashed
must be the result of hashing the input using the hashing function
passed in through hash
.
If the message is valid Ok(())
is returned, otherwiese an Err
indicating failure. Read more
sourceimpl PublicKeyParts for RsaPublicKey
impl PublicKeyParts for RsaPublicKey
sourceimpl<'a> PublicKeyParts for &'a RsaPublicKey
impl<'a> PublicKeyParts for &'a RsaPublicKey
sourceimpl ToRsaPublicKey for RsaPublicKey
impl ToRsaPublicKey for RsaPublicKey
sourcefn to_pkcs1_der(&self) -> Result<RsaPublicKeyDocument>
fn to_pkcs1_der(&self) -> Result<RsaPublicKeyDocument>
Serialize a RsaPublicKeyDocument
containing a PKCS#1-encoded public key.
sourcefn to_pkcs1_pem(&self) -> Result<String, Error>
fn to_pkcs1_pem(&self) -> Result<String, Error>
Serialize this public key as PEM-encoded PKCS#1.
sourcefn to_pkcs1_pem_with_le(&self, line_ending: LineEnding) -> Result<String, Error>
fn to_pkcs1_pem_with_le(&self, line_ending: LineEnding) -> Result<String, Error>
Serialize this public key as PEM-encoded PKCS#1 with the given line ending.
impl Eq for RsaPublicKey
impl StructuralEq for RsaPublicKey
impl StructuralPartialEq for RsaPublicKey
Auto Trait Implementations
impl RefUnwindSafe for RsaPublicKey
impl Send for RsaPublicKey
impl Sync for RsaPublicKey
impl Unpin for RsaPublicKey
impl UnwindSafe for RsaPublicKey
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
sourceimpl<K> FromPublicKey for K where
K: FromRsaPublicKey,
impl<K> FromPublicKey for K where
K: FromRsaPublicKey,
sourcefn from_spki(pkcs8_key: SubjectPublicKeyInfo<'_>) -> Result<K, Error>
fn from_spki(pkcs8_key: SubjectPublicKeyInfo<'_>) -> Result<K, Error>
Parse SubjectPublicKeyInfo
into a public key object.
sourcefn from_public_key_der(bytes: &[u8]) -> Result<Self, Error>
fn from_public_key_der(bytes: &[u8]) -> Result<Self, Error>
Deserialize object from ASN.1 DER-encoded SubjectPublicKeyInfo
(binary format). Read more
sourcefn from_public_key_doc(doc: &PublicKeyDocument) -> Result<Self, Error>
fn from_public_key_doc(doc: &PublicKeyDocument) -> Result<Self, Error>
Deserialize PKCS#8 private key from a PrivateKeyDocument
.
sourcefn from_public_key_pem(s: &str) -> Result<Self, Error>
fn from_public_key_pem(s: &str) -> Result<Self, Error>
Deserialize PEM-encoded SubjectPublicKeyInfo
. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<K> ToPublicKey for K where
K: ToRsaPublicKey,
impl<K> ToPublicKey for K where
K: ToRsaPublicKey,
sourcefn to_public_key_der(&self) -> Result<PublicKeyDocument, Error>
fn to_public_key_der(&self) -> Result<PublicKeyDocument, Error>
Serialize a PublicKeyDocument
containing a SPKI-encoded public key.
sourcefn to_public_key_pem(&self) -> Result<String, Error>
fn to_public_key_pem(&self) -> Result<String, Error>
Serialize this public key as PEM-encoded SPKI.
sourcefn to_public_key_pem_with_le(
&self,
line_ending: LineEnding
) -> Result<String, Error>
fn to_public_key_pem_with_le(
&self,
line_ending: LineEnding
) -> Result<String, Error>
Serialize this public key as PEM-encoded SPKI with the given LineEnding
.