#rsa #encryption #publickey #asn1 #pkcs1

rsa_public_encrypt_pkcs1

RSA PKCS#1 encryption from ASN.1 DER encoded public key in pure Rust

4 releases (breaking)

Uses old Rust 2015

0.4.0 Jul 18, 2021
0.3.0 Dec 28, 2020
0.2.0 Nov 6, 2018
0.1.0 Nov 4, 2018

#1152 in Cryptography

Download history 130/week @ 2022-12-06 60/week @ 2022-12-13 63/week @ 2022-12-20 108/week @ 2022-12-27 62/week @ 2023-01-03 127/week @ 2023-01-10 65/week @ 2023-01-17 68/week @ 2023-01-24 101/week @ 2023-01-31 91/week @ 2023-02-07 87/week @ 2023-02-14 133/week @ 2023-02-21 88/week @ 2023-02-28 112/week @ 2023-03-07 156/week @ 2023-03-14 92/week @ 2023-03-21

473 downloads per month
Used in 7 crates (3 directly)

ISC license

10KB
80 lines

rsa_public_encrypt_pkcs1

crate documentation Travis status

RSA PKCS#1 public key encryption using an ASN.1 DER encoded public key.

Implemented in pure Rust based on RFC8017: PKCS #1: RSA Cryptography Specifications Version 2.2, section 7.2.1 RSAES-PKCS1-v1_5.

Warning: Use at your own risk. Not extensively tested or reviewed. May contain serious bugs.

See also: rust-openssl. Example code written for rust-openssl:

        let mut shared_e = vec![0; rsa.size() as usize];
        let mut token_e = vec![0; rsa.size() as usize];
        rsa.public_encrypt(&shared, &mut shared_e, Padding::PKCS1)?;
        rsa.public_encrypt(&packet.verify_token.data, &mut token_e, Padding::PKCS1)?;

could be rewritten using this crate as follows:

        let shared_e = rsa_public_encrypt_pkcs1::encrypt(&packet.public_key.data, &shared)?;
        let token_e = rsa_public_encrypt_pkcs1::encrypt(&packet.public_key.data, &packet.verify_token.data)?;

Dependencies

~3MB
~61K SLoC