[][src]Struct rsa::RSAPublicKey

pub struct RSAPublicKey { /* fields omitted */ }

Represents the public part of an RSA key.

Implementations

impl RSAPublicKey[src]

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

Create a new key from its components.

pub fn from_pkcs1(der: &[u8]) -> Result<RSAPublicKey>[src]

Parse a PKCS1 encoded RSA Public Key.

The der data is expected to be the base64 decoded content following a -----BEGIN RSA PUBLIC KEY----- header.

https://tls.mbed.org/kb/cryptography/asn1-key-structures-in-der-and-pem

Example

use rsa::RSAPublicKey;

let file_content = r#"
-----BEGIN RSA PUBLIC KEY-----
MEgCQQCuWe45NapeQ6rkb5T5hYMgQwr3T0NE9rItqDwFJjcNmf6m9kq/wRAaFqWo
BX/BpdSuD0YqSUrnQ5ejf1XW9gmJAgMBAAE=
-----END RSA PUBLIC KEY-----
"#;

let der_encoded = file_content
    .lines()
    .filter(|line| !line.starts_with("-"))
    .fold(String::new(), |mut data, line| {
        data.push_str(&line);
        data
    });
let der_bytes = base64::decode(&der_encoded).expect("failed to decode base64 content");
let public_key = RSAPublicKey::from_pkcs1(&der_bytes).expect("failed to parse key");

pub fn from_pkcs8(der: &[u8]) -> Result<RSAPublicKey>[src]

Parse a PKCS8 encoded RSA Public Key.

The der data is expected to be the base64 decoded content following a -----BEGIN PUBLIC KEY----- header.

https://tls.mbed.org/kb/cryptography/asn1-key-structures-in-der-and-pem

Example

use rsa::RSAPublicKey;

let file_content = r#"
-----BEGIN PUBLIC KEY-----
MFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBAK5Z7jk1ql5DquRvlPmFgyBDCvdPQ0T2
si2oPAUmNw2Z/qb2Sr/BEBoWpagFf8Gl1K4PRipJSudDl6N/Vdb2CYkCAwEAAQ==
-----END PUBLIC KEY-----
"#;

let der_encoded = file_content
    .lines()
    .filter(|line| !line.starts_with("-"))
    .fold(String::new(), |mut data, line| {
        data.push_str(&line);
        data
    });
let der_bytes = base64::decode(&der_encoded).expect("failed to decode base64 content");
let public_key = RSAPublicKey::from_pkcs8(&der_bytes).expect("failed to parse key");

Trait Implementations

impl Clone for RSAPublicKey[src]

impl Debug for RSAPublicKey[src]

impl Eq for RSAPublicKey[src]

impl<'_> From<&'_ RSAPrivateKey> for RSAPublicKey[src]

impl From<RSAPrivateKey> for RSAPublicKey[src]

impl PartialEq<RSAPublicKey> for RSAPublicKey[src]

impl PublicKey for RSAPublicKey[src]

impl<'a> PublicKey for &'a RSAPublicKey[src]

impl PublicKeyParts for RSAPublicKey[src]

impl<'a> PublicKeyParts for &'a RSAPublicKey[src]

fn n(&self) -> &BigUint[src]

Returns the modulus of the key.

fn e(&self) -> &BigUint[src]

Returns the public exponent of the key.

impl StructuralEq for RSAPublicKey[src]

impl StructuralPartialEq for RSAPublicKey[src]

impl TryFrom<Pem> for RSAPublicKey[src]

type Error = Error

The type returned in the event of a conversion error.

fn try_from(pem: Pem) -> Result<RSAPublicKey>[src]

Parses a PKCS8 or PKCS1 encoded RSA Public Key.

Expects one of the following pem headers:

  • -----BEGIN PUBLIC KEY-----
  • -----BEGIN RSA PUBLIC KEY-----

Example

use std::convert::TryFrom;
use rsa::RSAPublicKey;

let file_content = r#"
-----BEGIN PUBLIC KEY-----
MFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBAK5Z7jk1ql5DquRvlPmFgyBDCvdPQ0T2
si2oPAUmNw2Z/qb2Sr/BEBoWpagFf8Gl1K4PRipJSudDl6N/Vdb2CYkCAwEAAQ==
-----END PUBLIC KEY-----
"#;

let pem = rsa::pem::parse(file_content).expect("failed to parse pem file");
let public_key = RSAPublicKey::try_from(pem).expect("failed to parse key");

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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