Changed all as_*ptr() to the safer CPtr trait
This commit is contained in:
parent
66ab70f991
commit
b7e20c5b12
|
@ -1,5 +1,5 @@
|
||||||
use core::marker::PhantomData;
|
use core::marker::PhantomData;
|
||||||
use ffi;
|
use ffi::{self, CPtr};
|
||||||
use types::{c_uint, c_void};
|
use types::{c_uint, c_void};
|
||||||
use Error;
|
use Error;
|
||||||
use Secp256k1;
|
use Secp256k1;
|
||||||
|
@ -181,7 +181,7 @@ impl<'buf, C: Context + 'buf> Secp256k1<C> {
|
||||||
Ok(Secp256k1 {
|
Ok(Secp256k1 {
|
||||||
ctx: unsafe {
|
ctx: unsafe {
|
||||||
ffi::secp256k1_context_preallocated_create(
|
ffi::secp256k1_context_preallocated_create(
|
||||||
buf.as_mut_ptr() as *mut c_void,
|
buf.as_mut_c_ptr() as *mut c_void,
|
||||||
C::FLAGS)
|
C::FLAGS)
|
||||||
},
|
},
|
||||||
phantom: PhantomData,
|
phantom: PhantomData,
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
use core::{ops, ptr};
|
use core::{ops, ptr};
|
||||||
|
|
||||||
use key::{SecretKey, PublicKey};
|
use key::{SecretKey, PublicKey};
|
||||||
use ffi;
|
use ffi::{self, CPtr};
|
||||||
|
|
||||||
/// A tag used for recovering the public key from a compact signature
|
/// A tag used for recovering the public key from a compact signature
|
||||||
#[derive(Copy, Clone, PartialEq, Eq, Debug)]
|
#[derive(Copy, Clone, PartialEq, Eq, Debug)]
|
||||||
|
@ -34,8 +34,8 @@ impl SharedSecret {
|
||||||
let res = ffi::secp256k1_ecdh(
|
let res = ffi::secp256k1_ecdh(
|
||||||
ffi::secp256k1_context_no_precomp,
|
ffi::secp256k1_context_no_precomp,
|
||||||
&mut ss,
|
&mut ss,
|
||||||
point.as_ptr(),
|
point.as_c_ptr(),
|
||||||
scalar.as_ptr(),
|
scalar.as_c_ptr(),
|
||||||
ffi::secp256k1_ecdh_hash_function_default,
|
ffi::secp256k1_ecdh_hash_function_default,
|
||||||
ptr::null_mut(),
|
ptr::null_mut(),
|
||||||
);
|
);
|
||||||
|
|
32
src/key.rs
32
src/key.rs
|
@ -117,7 +117,7 @@ impl SecretKey {
|
||||||
unsafe {
|
unsafe {
|
||||||
while ffi::secp256k1_ec_seckey_verify(
|
while ffi::secp256k1_ec_seckey_verify(
|
||||||
ffi::secp256k1_context_no_precomp,
|
ffi::secp256k1_context_no_precomp,
|
||||||
data.as_ptr(),
|
data.as_c_ptr(),
|
||||||
) == 0
|
) == 0
|
||||||
{
|
{
|
||||||
data = random_32_bytes(rng);
|
data = random_32_bytes(rng);
|
||||||
|
@ -135,7 +135,7 @@ impl SecretKey {
|
||||||
unsafe {
|
unsafe {
|
||||||
if ffi::secp256k1_ec_seckey_verify(
|
if ffi::secp256k1_ec_seckey_verify(
|
||||||
ffi::secp256k1_context_no_precomp,
|
ffi::secp256k1_context_no_precomp,
|
||||||
data.as_ptr(),
|
data.as_c_ptr(),
|
||||||
) == 0
|
) == 0
|
||||||
{
|
{
|
||||||
return Err(InvalidSecretKey);
|
return Err(InvalidSecretKey);
|
||||||
|
@ -162,8 +162,8 @@ impl SecretKey {
|
||||||
unsafe {
|
unsafe {
|
||||||
if ffi::secp256k1_ec_privkey_tweak_add(
|
if ffi::secp256k1_ec_privkey_tweak_add(
|
||||||
ffi::secp256k1_context_no_precomp,
|
ffi::secp256k1_context_no_precomp,
|
||||||
self.as_mut_ptr(),
|
self.as_mut_c_ptr(),
|
||||||
other.as_ptr(),
|
other.as_c_ptr(),
|
||||||
) != 1
|
) != 1
|
||||||
{
|
{
|
||||||
Err(Error::InvalidTweak)
|
Err(Error::InvalidTweak)
|
||||||
|
@ -187,8 +187,8 @@ impl SecretKey {
|
||||||
unsafe {
|
unsafe {
|
||||||
if ffi::secp256k1_ec_privkey_tweak_mul(
|
if ffi::secp256k1_ec_privkey_tweak_mul(
|
||||||
ffi::secp256k1_context_no_precomp,
|
ffi::secp256k1_context_no_precomp,
|
||||||
self.as_mut_ptr(),
|
self.as_mut_c_ptr(),
|
||||||
other.as_ptr(),
|
other.as_c_ptr(),
|
||||||
) != 1
|
) != 1
|
||||||
{
|
{
|
||||||
Err(Error::InvalidTweak)
|
Err(Error::InvalidTweak)
|
||||||
|
@ -223,7 +223,7 @@ impl PublicKey {
|
||||||
unsafe {
|
unsafe {
|
||||||
// We can assume the return value because it's not possible to construct
|
// We can assume the return value because it's not possible to construct
|
||||||
// an invalid `SecretKey` without transmute trickery or something
|
// an invalid `SecretKey` without transmute trickery or something
|
||||||
let res = ffi::secp256k1_ec_pubkey_create(secp.ctx, &mut pk, sk.as_ptr());
|
let res = ffi::secp256k1_ec_pubkey_create(secp.ctx, &mut pk, sk.as_c_ptr());
|
||||||
debug_assert_eq!(res, 1);
|
debug_assert_eq!(res, 1);
|
||||||
}
|
}
|
||||||
PublicKey(pk)
|
PublicKey(pk)
|
||||||
|
@ -237,7 +237,7 @@ impl PublicKey {
|
||||||
if ffi::secp256k1_ec_pubkey_parse(
|
if ffi::secp256k1_ec_pubkey_parse(
|
||||||
ffi::secp256k1_context_no_precomp,
|
ffi::secp256k1_context_no_precomp,
|
||||||
&mut pk,
|
&mut pk,
|
||||||
data.as_ptr(),
|
data.as_c_ptr(),
|
||||||
data.len() as usize,
|
data.len() as usize,
|
||||||
) == 1
|
) == 1
|
||||||
{
|
{
|
||||||
|
@ -259,9 +259,9 @@ impl PublicKey {
|
||||||
let mut ret_len = constants::PUBLIC_KEY_SIZE as usize;
|
let mut ret_len = constants::PUBLIC_KEY_SIZE as usize;
|
||||||
let err = ffi::secp256k1_ec_pubkey_serialize(
|
let err = ffi::secp256k1_ec_pubkey_serialize(
|
||||||
ffi::secp256k1_context_no_precomp,
|
ffi::secp256k1_context_no_precomp,
|
||||||
ret.as_mut_ptr(),
|
ret.as_mut_c_ptr(),
|
||||||
&mut ret_len,
|
&mut ret_len,
|
||||||
self.as_ptr(),
|
self.as_c_ptr(),
|
||||||
ffi::SECP256K1_SER_COMPRESSED,
|
ffi::SECP256K1_SER_COMPRESSED,
|
||||||
);
|
);
|
||||||
debug_assert_eq!(err, 1);
|
debug_assert_eq!(err, 1);
|
||||||
|
@ -278,9 +278,9 @@ impl PublicKey {
|
||||||
let mut ret_len = constants::UNCOMPRESSED_PUBLIC_KEY_SIZE as usize;
|
let mut ret_len = constants::UNCOMPRESSED_PUBLIC_KEY_SIZE as usize;
|
||||||
let err = ffi::secp256k1_ec_pubkey_serialize(
|
let err = ffi::secp256k1_ec_pubkey_serialize(
|
||||||
ffi::secp256k1_context_no_precomp,
|
ffi::secp256k1_context_no_precomp,
|
||||||
ret.as_mut_ptr(),
|
ret.as_mut_c_ptr(),
|
||||||
&mut ret_len,
|
&mut ret_len,
|
||||||
self.as_ptr(),
|
self.as_c_ptr(),
|
||||||
ffi::SECP256K1_SER_UNCOMPRESSED,
|
ffi::SECP256K1_SER_UNCOMPRESSED,
|
||||||
);
|
);
|
||||||
debug_assert_eq!(err, 1);
|
debug_assert_eq!(err, 1);
|
||||||
|
@ -303,7 +303,7 @@ impl PublicKey {
|
||||||
}
|
}
|
||||||
unsafe {
|
unsafe {
|
||||||
if ffi::secp256k1_ec_pubkey_tweak_add(secp.ctx, &mut self.0 as *mut _,
|
if ffi::secp256k1_ec_pubkey_tweak_add(secp.ctx, &mut self.0 as *mut _,
|
||||||
other.as_ptr()) == 1 {
|
other.as_c_ptr()) == 1 {
|
||||||
Ok(())
|
Ok(())
|
||||||
} else {
|
} else {
|
||||||
Err(Error::InvalidTweak)
|
Err(Error::InvalidTweak)
|
||||||
|
@ -325,7 +325,7 @@ impl PublicKey {
|
||||||
}
|
}
|
||||||
unsafe {
|
unsafe {
|
||||||
if ffi::secp256k1_ec_pubkey_tweak_mul(secp.ctx, &mut self.0 as *mut _,
|
if ffi::secp256k1_ec_pubkey_tweak_mul(secp.ctx, &mut self.0 as *mut _,
|
||||||
other.as_ptr()) == 1 {
|
other.as_c_ptr()) == 1 {
|
||||||
Ok(())
|
Ok(())
|
||||||
} else {
|
} else {
|
||||||
Err(Error::InvalidTweak)
|
Err(Error::InvalidTweak)
|
||||||
|
@ -339,11 +339,11 @@ impl PublicKey {
|
||||||
pub fn combine(&self, other: &PublicKey) -> Result<PublicKey, Error> {
|
pub fn combine(&self, other: &PublicKey) -> Result<PublicKey, Error> {
|
||||||
unsafe {
|
unsafe {
|
||||||
let mut ret = ffi::PublicKey::new();
|
let mut ret = ffi::PublicKey::new();
|
||||||
let ptrs = [self.as_ptr(), other.as_ptr()];
|
let ptrs = [self.as_c_ptr(), other.as_c_ptr()];
|
||||||
if ffi::secp256k1_ec_pubkey_combine(
|
if ffi::secp256k1_ec_pubkey_combine(
|
||||||
ffi::secp256k1_context_no_precomp,
|
ffi::secp256k1_context_no_precomp,
|
||||||
&mut ret,
|
&mut ret,
|
||||||
ptrs.as_ptr(),
|
ptrs.as_c_ptr(),
|
||||||
2
|
2
|
||||||
) == 1
|
) == 1
|
||||||
{
|
{
|
||||||
|
|
24
src/lib.rs
24
src/lib.rs
|
@ -253,7 +253,7 @@ impl Signature {
|
||||||
if ffi::secp256k1_ecdsa_signature_parse_der(
|
if ffi::secp256k1_ecdsa_signature_parse_der(
|
||||||
ffi::secp256k1_context_no_precomp,
|
ffi::secp256k1_context_no_precomp,
|
||||||
&mut ret,
|
&mut ret,
|
||||||
data.as_ptr(),
|
data.as_c_ptr(),
|
||||||
data.len() as usize,
|
data.len() as usize,
|
||||||
) == 1
|
) == 1
|
||||||
{
|
{
|
||||||
|
@ -275,7 +275,7 @@ impl Signature {
|
||||||
if ffi::secp256k1_ecdsa_signature_parse_compact(
|
if ffi::secp256k1_ecdsa_signature_parse_compact(
|
||||||
ffi::secp256k1_context_no_precomp,
|
ffi::secp256k1_context_no_precomp,
|
||||||
&mut ret,
|
&mut ret,
|
||||||
data.as_ptr(),
|
data.as_c_ptr(),
|
||||||
) == 1
|
) == 1
|
||||||
{
|
{
|
||||||
Ok(Signature(ret))
|
Ok(Signature(ret))
|
||||||
|
@ -295,7 +295,7 @@ impl Signature {
|
||||||
if ffi::ecdsa_signature_parse_der_lax(
|
if ffi::ecdsa_signature_parse_der_lax(
|
||||||
ffi::secp256k1_context_no_precomp,
|
ffi::secp256k1_context_no_precomp,
|
||||||
&mut ret,
|
&mut ret,
|
||||||
data.as_ptr(),
|
data.as_c_ptr(),
|
||||||
data.len() as usize,
|
data.len() as usize,
|
||||||
) == 1
|
) == 1
|
||||||
{
|
{
|
||||||
|
@ -329,8 +329,8 @@ impl Signature {
|
||||||
// was already normalized. We don't care.
|
// was already normalized. We don't care.
|
||||||
ffi::secp256k1_ecdsa_signature_normalize(
|
ffi::secp256k1_ecdsa_signature_normalize(
|
||||||
ffi::secp256k1_context_no_precomp,
|
ffi::secp256k1_context_no_precomp,
|
||||||
self.as_mut_ptr(),
|
self.as_mut_c_ptr(),
|
||||||
self.as_ptr(),
|
self.as_c_ptr(),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -357,7 +357,7 @@ impl Signature {
|
||||||
ffi::secp256k1_context_no_precomp,
|
ffi::secp256k1_context_no_precomp,
|
||||||
ret.get_data_mut_ptr(),
|
ret.get_data_mut_ptr(),
|
||||||
&mut len,
|
&mut len,
|
||||||
self.as_ptr(),
|
self.as_c_ptr(),
|
||||||
);
|
);
|
||||||
debug_assert!(err == 1);
|
debug_assert!(err == 1);
|
||||||
ret.set_len(len);
|
ret.set_len(len);
|
||||||
|
@ -372,8 +372,8 @@ impl Signature {
|
||||||
unsafe {
|
unsafe {
|
||||||
let err = ffi::secp256k1_ecdsa_signature_serialize_compact(
|
let err = ffi::secp256k1_ecdsa_signature_serialize_compact(
|
||||||
ffi::secp256k1_context_no_precomp,
|
ffi::secp256k1_context_no_precomp,
|
||||||
ret.as_mut_ptr(),
|
ret.as_mut_c_ptr(),
|
||||||
self.as_ptr(),
|
self.as_c_ptr(),
|
||||||
);
|
);
|
||||||
debug_assert!(err == 1);
|
debug_assert!(err == 1);
|
||||||
}
|
}
|
||||||
|
@ -595,7 +595,7 @@ impl<C: Context> Secp256k1<C> {
|
||||||
let mut seed = [0; 32];
|
let mut seed = [0; 32];
|
||||||
rng.fill_bytes(&mut seed);
|
rng.fill_bytes(&mut seed);
|
||||||
unsafe {
|
unsafe {
|
||||||
let err = ffi::secp256k1_context_randomize(self.ctx, seed.as_ptr());
|
let err = ffi::secp256k1_context_randomize(self.ctx, seed.as_c_ptr());
|
||||||
// This function cannot fail; it has an error return for future-proofing.
|
// This function cannot fail; it has an error return for future-proofing.
|
||||||
// We do not expose this error since it is impossible to hit, and we have
|
// We do not expose this error since it is impossible to hit, and we have
|
||||||
// precedent for not exposing impossible errors (for example in
|
// precedent for not exposing impossible errors (for example in
|
||||||
|
@ -621,8 +621,8 @@ impl<C: Signing> Secp256k1<C> {
|
||||||
unsafe {
|
unsafe {
|
||||||
// We can assume the return value because it's not possible to construct
|
// We can assume the return value because it's not possible to construct
|
||||||
// an invalid signature from a valid `Message` and `SecretKey`
|
// an invalid signature from a valid `Message` and `SecretKey`
|
||||||
assert_eq!(ffi::secp256k1_ecdsa_sign(self.ctx, &mut ret, msg.as_ptr(),
|
assert_eq!(ffi::secp256k1_ecdsa_sign(self.ctx, &mut ret, msg.as_c_ptr(),
|
||||||
sk.as_ptr(), ffi::secp256k1_nonce_function_rfc6979,
|
sk.as_c_ptr(), ffi::secp256k1_nonce_function_rfc6979,
|
||||||
ptr::null()), 1);
|
ptr::null()), 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -652,7 +652,7 @@ impl<C: Verification> Secp256k1<C> {
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn verify(&self, msg: &Message, sig: &Signature, pk: &key::PublicKey) -> Result<(), Error> {
|
pub fn verify(&self, msg: &Message, sig: &Signature, pk: &key::PublicKey) -> Result<(), Error> {
|
||||||
unsafe {
|
unsafe {
|
||||||
if ffi::secp256k1_ecdsa_verify(self.ctx, sig.as_ptr(), msg.as_ptr(), pk.as_ptr()) == 0 {
|
if ffi::secp256k1_ecdsa_verify(self.ctx, sig.as_c_ptr(), msg.as_c_ptr(), pk.as_c_ptr()) == 0 {
|
||||||
Err(Error::IncorrectSignature)
|
Err(Error::IncorrectSignature)
|
||||||
} else {
|
} else {
|
||||||
Ok(())
|
Ok(())
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
|
|
||||||
use core::mem;
|
use core::mem;
|
||||||
use types::*;
|
use types::*;
|
||||||
use ffi::{Context, NonceFn, PublicKey, Signature};
|
use ffi::{Context, NonceFn, PublicKey, Signature, CPtr};
|
||||||
|
|
||||||
/// Library-internal representation of a Secp256k1 signature + recovery ID
|
/// Library-internal representation of a Secp256k1 signature + recovery ID
|
||||||
#[repr(C)]
|
#[repr(C)]
|
||||||
|
|
|
@ -66,7 +66,7 @@ impl RecoverableSignature {
|
||||||
} else if ffi::secp256k1_ecdsa_recoverable_signature_parse_compact(
|
} else if ffi::secp256k1_ecdsa_recoverable_signature_parse_compact(
|
||||||
super_ffi::secp256k1_context_no_precomp,
|
super_ffi::secp256k1_context_no_precomp,
|
||||||
&mut ret,
|
&mut ret,
|
||||||
data.as_ptr(),
|
data.as_c_ptr(),
|
||||||
recid.0,
|
recid.0,
|
||||||
) == 1
|
) == 1
|
||||||
{
|
{
|
||||||
|
@ -97,9 +97,9 @@ impl RecoverableSignature {
|
||||||
unsafe {
|
unsafe {
|
||||||
let err = ffi::secp256k1_ecdsa_recoverable_signature_serialize_compact(
|
let err = ffi::secp256k1_ecdsa_recoverable_signature_serialize_compact(
|
||||||
super_ffi::secp256k1_context_no_precomp,
|
super_ffi::secp256k1_context_no_precomp,
|
||||||
ret.as_mut_ptr(),
|
ret.as_mut_c_ptr(),
|
||||||
&mut recid,
|
&mut recid,
|
||||||
self.as_ptr(),
|
self.as_c_ptr(),
|
||||||
);
|
);
|
||||||
assert!(err == 1);
|
assert!(err == 1);
|
||||||
}
|
}
|
||||||
|
@ -115,7 +115,7 @@ impl RecoverableSignature {
|
||||||
let err = ffi::secp256k1_ecdsa_recoverable_signature_convert(
|
let err = ffi::secp256k1_ecdsa_recoverable_signature_convert(
|
||||||
super_ffi::secp256k1_context_no_precomp,
|
super_ffi::secp256k1_context_no_precomp,
|
||||||
&mut ret,
|
&mut ret,
|
||||||
self.as_ptr(),
|
self.as_c_ptr(),
|
||||||
);
|
);
|
||||||
assert!(err == 1);
|
assert!(err == 1);
|
||||||
}
|
}
|
||||||
|
@ -157,8 +157,8 @@ impl<C: Signing> Secp256k1<C> {
|
||||||
ffi::secp256k1_ecdsa_sign_recoverable(
|
ffi::secp256k1_ecdsa_sign_recoverable(
|
||||||
self.ctx,
|
self.ctx,
|
||||||
&mut ret,
|
&mut ret,
|
||||||
msg.as_ptr(),
|
msg.as_c_ptr(),
|
||||||
sk.as_ptr(),
|
sk.as_c_ptr(),
|
||||||
super_ffi::secp256k1_nonce_function_rfc6979,
|
super_ffi::secp256k1_nonce_function_rfc6979,
|
||||||
ptr::null()
|
ptr::null()
|
||||||
),
|
),
|
||||||
|
@ -180,7 +180,7 @@ impl<C: Verification> Secp256k1<C> {
|
||||||
|
|
||||||
unsafe {
|
unsafe {
|
||||||
if ffi::secp256k1_ecdsa_recover(self.ctx, &mut pk,
|
if ffi::secp256k1_ecdsa_recover(self.ctx, &mut pk,
|
||||||
sig.as_ptr(), msg.as_ptr()) != 1 {
|
sig.as_c_ptr(), msg.as_c_ptr()) != 1 {
|
||||||
return Err(Error::InvalidSignature);
|
return Err(Error::InvalidSignature);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue