aboutsummaryrefslogtreecommitdiff
path: root/openssl/src
diff options
context:
space:
mode:
authorCyberunner23 <[email protected]>2016-01-05 13:22:56 -0500
committerCyberunner23 <[email protected]>2016-01-05 13:22:56 -0500
commit1d3277fbee500fda7974250fe58b49ec7b6ba284 (patch)
tree8063681cfd9f766b7842a5aa5a2ad4240d02f981 /openssl/src
parentAdded PEM_read_bio_RSAPrivateKey and PEM_read_bio_RSA_PUBKEY (diff)
downloadrust-openssl-1d3277fbee500fda7974250fe58b49ec7b6ba284.tar.xz
rust-openssl-1d3277fbee500fda7974250fe58b49ec7b6ba284.zip
Added private_rsa_key_from_pem and public_rsa_key_from_pem.
Diffstat (limited to 'openssl/src')
-rw-r--r--openssl/src/crypto/pkey.rs48
1 files changed, 48 insertions, 0 deletions
diff --git a/openssl/src/crypto/pkey.rs b/openssl/src/crypto/pkey.rs
index 10891224..d6f09931 100644
--- a/openssl/src/crypto/pkey.rs
+++ b/openssl/src/crypto/pkey.rs
@@ -118,6 +118,54 @@ impl PKey {
}
}
+ /// Reads an RSA private key from PEM, takes ownership of handle
+ pub fn private_rsa_key_from_pem<R>(reader: &mut R) -> Result<PKey, SslError>
+ where R: Read
+ {
+ let mut mem_bio = try!(MemBio::new());
+ try!(io::copy(reader, &mut mem_bio).map_err(StreamError));
+
+ unsafe {
+ let rsa = try_ssl_null!(ffi::PEM_read_bio_RSAPrivateKey(mem_bio.get_handle(),
+ ptr::null_mut(),
+ None,
+ ptr::null_mut()));
+ let evp = ffi::EVP_PKEY_new();
+ if ffi::EVP_PKEY_set1_RSA(evp, rsa) == 0 {
+ return Err(SslError::get());
+ }
+
+ Ok(PKey {
+ evp: evp,
+ parts: Parts::Public,
+ })
+ }
+ }
+
+ /// Reads an RSA public key from PEM, takes ownership of handle
+ pub fn public_rsa_key_from_pem<R>(reader: &mut R) -> Result<PKey, SslError>
+ where R: Read
+ {
+ let mut mem_bio = try!(MemBio::new());
+ try!(io::copy(reader, &mut mem_bio).map_err(StreamError));
+
+ unsafe {
+ let rsa = try_ssl_null!(ffi::PEM_read_bio_RSA_PUBKEY(mem_bio.get_handle(),
+ ptr::null_mut(),
+ None,
+ ptr::null_mut()));
+ let evp = ffi::EVP_PKEY_new();
+ if ffi::EVP_PKEY_set1_RSA(evp, rsa) == 0 {
+ return Err(SslError::get());
+ }
+
+ Ok(PKey {
+ evp: evp,
+ parts: Parts::Public,
+ })
+ }
+ }
+
fn _tostr(&self, f: unsafe extern "C" fn(*mut ffi::RSA, *const *mut u8) -> c_int) -> Vec<u8> {
unsafe {
let rsa = ffi::EVP_PKEY_get1_RSA(self.evp);