Commit 3ee2bf93 authored by Daniel Albert's avatar Daniel Albert
Browse files

Fix up RSA integration

parent 74db7db5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -108,7 +108,7 @@ impl BigNum {
        }
        let r = ffi::BN_dup(orig);
        if r.is_null() {
            panic!("Unexpected null pointer from BN_dup(..)")
            Err(SslError::get())
        } else {
            Ok(BigNum(r))
        }
+1 −1
Original line number Diff line number Diff line
@@ -41,6 +41,6 @@ impl RSA {

impl fmt::Debug for RSA {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "Currently no debug output. Sorry :(")
        write!(f, "RSA")
    }
}