Make the BigNum generation from a native pointer unsafe
This commit is contained in:
parent
578fac7e80
commit
1238405637
|
|
@ -102,17 +102,15 @@ impl BigNum {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn new_from_ffi(orig: *mut ffi::BIGNUM) -> Result<BigNum, SslError> {
|
pub unsafe fn new_from_ffi(orig: *mut ffi::BIGNUM) -> Result<BigNum, SslError> {
|
||||||
if orig.is_null() {
|
if orig.is_null() {
|
||||||
panic!("Null Pointer was supplied to BigNum::new_from_ffi");
|
panic!("Null Pointer was supplied to BigNum::new_from_ffi");
|
||||||
}
|
}
|
||||||
unsafe {
|
let r = ffi::BN_dup(orig);
|
||||||
let r = ffi::BN_dup(orig);
|
if r.is_null() {
|
||||||
if r.is_null() {
|
panic!("Unexpected null pointer from BN_dup(..)")
|
||||||
panic!("Unexpected null pointer from BN_dup(..)")
|
} else {
|
||||||
} else {
|
Ok(BigNum(r))
|
||||||
Ok(BigNum(r))
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue