Struct rsa::RsaPublicKey

source ·
pub struct RsaPublicKey { /* private fields */ }
Expand description

Represents the public part of an RSA key.

Implementations§

source§

impl RsaPublicKey

source

pub const MIN_PUB_EXPONENT: u64 = 2u64

Minimum value of the public exponent e.

source

pub const MAX_PUB_EXPONENT: u64 = 8_589_934_591u64

Maximum value of the public exponent e.

source

pub const MAX_SIZE: usize = 4_096usize

Maximum size of the modulus n in bits.

source

pub fn new(n: BigUint, e: BigUint) -> Result<Self>

Create a new public key from its components.

This function accepts public keys with a modulus size up to 4096-bits, i.e. RsaPublicKey::MAX_SIZE.

source

pub fn new_with_max_size( n: BigUint, e: BigUint, max_size: usize, ) -> Result<Self>

Create a new public key from its components.

source

pub fn new_unchecked(n: BigUint, e: BigUint) -> Self

Create a new public key, bypassing checks around the modulus and public exponent size.

This method is not recommended, and only intended for unusual use cases. Most applications should use RsaPublicKey::new or RsaPublicKey::new_with_max_size instead.

Trait Implementations§

source§

impl<D> AsRef<RsaPublicKey> for VerifyingKey<D>
where D: Digest,

source§

fn as_ref(&self) -> &RsaPublicKey

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<D> AsRef<RsaPublicKey> for VerifyingKey<D>
where D: Digest,

source§

fn as_ref(&self) -> &RsaPublicKey

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl Clone for RsaPublicKey

source§

fn clone(&self) -> RsaPublicKey

Returns a copy of the value. Read more
1.0.0§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for RsaPublicKey

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl DecodePublicKey for RsaPublicKey

source§

fn from_public_key_der(bytes: &[u8]) -> Result<Self, Error>

Deserialize object from ASN.1 DER-encoded SubjectPublicKeyInfo (binary format).
source§

fn from_public_key_pem(s: &str) -> Result<Self, Error>

Deserialize PEM-encoded SubjectPublicKeyInfo. Read more
source§

impl EncodePublicKey for RsaPublicKey

source§

fn to_public_key_der(&self) -> Result<Document>

Serialize a Document containing a SPKI-encoded public key.
source§

fn to_public_key_pem(&self, line_ending: LineEnding) -> Result<String, Error>

Serialize this public key as PEM-encoded SPKI with the given LineEnding.
source§

impl From<&RsaPrivateKey> for RsaPublicKey

source§

fn from(private_key: &RsaPrivateKey) -> Self

Converts to this type from the input type.
source§

impl From<RsaPrivateKey> for RsaPublicKey

source§

fn from(private_key: RsaPrivateKey) -> Self

Converts to this type from the input type.
source§

impl<D> From<RsaPublicKey> for VerifyingKey<D>
where D: Digest,

source§

fn from(key: RsaPublicKey) -> Self

Converts to this type from the input type.
source§

impl<D> From<RsaPublicKey> for VerifyingKey<D>
where D: Digest,

source§

fn from(key: RsaPublicKey) -> Self

Converts to this type from the input type.
source§

impl<D> From<VerifyingKey<D>> for RsaPublicKey
where D: Digest,

source§

fn from(key: VerifyingKey<D>) -> Self

Converts to this type from the input type.
source§

impl<D> From<VerifyingKey<D>> for RsaPublicKey
where D: Digest,

source§

fn from(key: VerifyingKey<D>) -> Self

Converts to this type from the input type.
source§

impl Hash for RsaPublicKey

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given [Hasher]. Read more
1.3.0§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given [Hasher]. Read more
source§

impl PartialEq for RsaPublicKey

source§

fn eq(&self, other: &RsaPublicKey) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PublicKey for RsaPublicKey

source§

fn encrypt<R: CryptoRngCore, P: PaddingScheme>( &self, rng: &mut R, padding: P, msg: &[u8], ) -> Result<Vec<u8>>

Encrypt the given message.
source§

fn verify<S: SignatureScheme>( &self, scheme: S, hashed: &[u8], sig: &[u8], ) -> Result<()>

Verify a signed message. Read more
source§

impl PublicKeyParts for RsaPublicKey

source§

fn n(&self) -> &BigUint

Returns the modulus of the key.
source§

fn e(&self) -> &BigUint

Returns the public exponent of the key.
source§

fn size(&self) -> usize

Returns the modulus size in bytes. Raw signatures and ciphertexts for or by this public key will have the same size.
source§

impl TryFrom<SubjectPublicKeyInfo<'_>> for RsaPublicKey

source§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(spki: SubjectPublicKeyInfo<'_>) -> Result<Self>

Performs the conversion.
source§

impl Eq for RsaPublicKey

source§

impl StructuralPartialEq for RsaPublicKey

Auto Trait Implementations§

§

impl Freeze for RsaPublicKey

§

impl RefUnwindSafe for RsaPublicKey

§

impl Send for RsaPublicKey

§

impl Sync for RsaPublicKey

§

impl Unpin for RsaPublicKey

§

impl UnwindSafe for RsaPublicKey

Blanket Implementations§

§

impl<T> Any for T
where T: 'static + ?Sized,

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> Borrow<T> for T
where T: ?Sized,

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

impl<T> BorrowMut<T> for T
where T: ?Sized,

§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> CloneToUninit for T
where T: Clone,

§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> DecodeRsaPublicKey for T
where T: DecodePublicKey,

source§

fn from_pkcs1_der(public_key: &[u8]) -> Result<T, Error>

Deserialize object from ASN.1 DER-encoded RsaPublicKey (binary format).
source§

fn from_pkcs1_pem(s: &str) -> Result<Self, Error>

Deserialize PEM-encoded RsaPublicKey. Read more
source§

impl<T> EncodeRsaPublicKey for T
where T: EncodePublicKey,

source§

fn to_pkcs1_der(&self) -> Result<Document, Error>

Serialize a Document containing a PKCS#1-encoded public key.
source§

fn to_pkcs1_pem(&self, line_ending: LineEnding) -> Result<String, Error>

Serialize this public key as PEM-encoded PKCS#1 with the given line ending.
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T, U> Into<U> for T
where U: From<T>,

§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

source§

impl<T> Same for T

source§

type Output = T

Should always be Self
§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V