2014-08-12 02:26:14 +00:00
|
|
|
// Bitcoin secp256k1 bindings
|
|
|
|
// Written in 2014 by
|
|
|
|
// Dawid Ciężarkiewicz
|
|
|
|
// Andrew Poelstra
|
|
|
|
//
|
|
|
|
// To the extent possible under law, the author(s) have dedicated all
|
|
|
|
// copyright and related and neighboring rights to this software to
|
|
|
|
// the public domain worldwide. This software is distributed without
|
|
|
|
// any warranty.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the CC0 Public Domain Dedication
|
|
|
|
// along with this software.
|
|
|
|
// If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.
|
|
|
|
//
|
|
|
|
|
2015-10-09 16:39:42 +00:00
|
|
|
//! # Public and secret keys
|
2014-08-10 01:03:17 +00:00
|
|
|
|
2017-12-19 20:49:01 +00:00
|
|
|
#[cfg(any(test, feature = "rand"))] use rand::Rng;
|
2014-08-10 01:03:17 +00:00
|
|
|
|
2017-12-21 00:59:22 +00:00
|
|
|
use std::mem;
|
|
|
|
|
2015-10-14 14:35:02 +00:00
|
|
|
use super::{Secp256k1, ContextFlag};
|
2015-10-17 14:49:19 +00:00
|
|
|
use super::Error::{self, IncapableContext, InvalidPublicKey, InvalidSecretKey};
|
2014-09-05 01:21:09 +00:00
|
|
|
use constants;
|
|
|
|
use ffi;
|
2014-08-10 01:03:17 +00:00
|
|
|
|
|
|
|
/// Secret 256-bit key used as `x` in an ECDSA signature
|
2015-01-17 16:13:45 +00:00
|
|
|
pub struct SecretKey([u8; constants::SECRET_KEY_SIZE]);
|
|
|
|
impl_array_newtype!(SecretKey, u8, constants::SECRET_KEY_SIZE);
|
2015-07-28 16:03:10 +00:00
|
|
|
impl_pretty_debug!(SecretKey);
|
2014-08-10 01:03:17 +00:00
|
|
|
|
2014-09-12 13:28:35 +00:00
|
|
|
/// The number 1 encoded as a secret key
|
2016-08-07 21:33:38 +00:00
|
|
|
/// Deprecated; `static` is not what I want; use `ONE_KEY` instead
|
2014-09-12 13:28:35 +00:00
|
|
|
pub static ONE: SecretKey = SecretKey([0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 1]);
|
2014-09-01 16:13:31 +00:00
|
|
|
|
2016-08-07 21:33:38 +00:00
|
|
|
/// The number 0 encoded as a secret key
|
|
|
|
pub const ZERO_KEY: SecretKey = SecretKey([0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0]);
|
|
|
|
|
|
|
|
/// The number 1 encoded as a secret key
|
|
|
|
pub const ONE_KEY: SecretKey = SecretKey([0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 1]);
|
|
|
|
|
2015-07-28 16:03:10 +00:00
|
|
|
/// A Secp256k1 public key, used for verification of signatures
|
2018-05-22 09:33:11 +00:00
|
|
|
#[derive(Copy, Clone, PartialEq, Eq, Debug, PartialOrd, Ord, Hash)]
|
2015-07-28 16:03:10 +00:00
|
|
|
pub struct PublicKey(ffi::PublicKey);
|
2014-08-10 01:03:17 +00:00
|
|
|
|
2017-12-19 20:49:01 +00:00
|
|
|
#[cfg(any(test, feature = "rand"))]
|
2015-04-12 20:54:22 +00:00
|
|
|
fn random_32_bytes<R: Rng>(rng: &mut R) -> [u8; 32] {
|
2015-01-17 16:13:45 +00:00
|
|
|
let mut ret = [0u8; 32];
|
|
|
|
rng.fill_bytes(&mut ret);
|
2014-08-16 09:21:35 +00:00
|
|
|
ret
|
2014-08-10 01:03:17 +00:00
|
|
|
}
|
|
|
|
|
2014-09-12 13:28:35 +00:00
|
|
|
impl SecretKey {
|
2014-08-10 01:03:17 +00:00
|
|
|
/// Creates a new random secret key
|
|
|
|
#[inline]
|
2017-12-19 20:49:01 +00:00
|
|
|
#[cfg(any(test, feature = "rand"))]
|
2015-04-12 20:54:22 +00:00
|
|
|
pub fn new<R: Rng>(secp: &Secp256k1, rng: &mut R) -> SecretKey {
|
|
|
|
let mut data = random_32_bytes(rng);
|
2014-08-28 18:11:25 +00:00
|
|
|
unsafe {
|
2015-04-11 17:00:20 +00:00
|
|
|
while ffi::secp256k1_ec_seckey_verify(secp.ctx, data.as_ptr()) == 0 {
|
2015-04-12 20:54:22 +00:00
|
|
|
data = random_32_bytes(rng);
|
2014-08-28 18:11:25 +00:00
|
|
|
}
|
|
|
|
}
|
2014-09-12 13:28:35 +00:00
|
|
|
SecretKey(data)
|
2014-08-10 01:03:17 +00:00
|
|
|
}
|
|
|
|
|
2014-09-12 13:28:35 +00:00
|
|
|
/// Converts a `SECRET_KEY_SIZE`-byte slice to a secret key
|
2014-08-10 01:46:38 +00:00
|
|
|
#[inline]
|
2015-04-12 20:54:22 +00:00
|
|
|
pub fn from_slice(secp: &Secp256k1, data: &[u8])
|
2015-04-11 18:21:58 +00:00
|
|
|
-> Result<SecretKey, Error> {
|
2014-08-10 01:46:38 +00:00
|
|
|
match data.len() {
|
|
|
|
constants::SECRET_KEY_SIZE => {
|
2015-01-17 16:13:45 +00:00
|
|
|
let mut ret = [0; constants::SECRET_KEY_SIZE];
|
2014-08-10 01:46:38 +00:00
|
|
|
unsafe {
|
2015-04-11 17:00:20 +00:00
|
|
|
if ffi::secp256k1_ec_seckey_verify(secp.ctx, data.as_ptr()) == 0 {
|
2014-08-24 23:13:08 +00:00
|
|
|
return Err(InvalidSecretKey);
|
|
|
|
}
|
2014-08-10 01:46:38 +00:00
|
|
|
}
|
2017-05-08 11:18:35 +00:00
|
|
|
ret[..].copy_from_slice(data);
|
2014-09-12 13:28:35 +00:00
|
|
|
Ok(SecretKey(ret))
|
2014-08-10 01:46:38 +00:00
|
|
|
}
|
|
|
|
_ => Err(InvalidSecretKey)
|
|
|
|
}
|
|
|
|
}
|
2014-08-28 16:16:53 +00:00
|
|
|
|
|
|
|
#[inline]
|
|
|
|
/// Adds one secret key to another, modulo the curve order
|
2015-04-12 20:54:22 +00:00
|
|
|
pub fn add_assign(&mut self, secp: &Secp256k1, other: &SecretKey)
|
|
|
|
-> Result<(), Error> {
|
2014-08-28 16:16:53 +00:00
|
|
|
unsafe {
|
2015-04-11 17:00:20 +00:00
|
|
|
if ffi::secp256k1_ec_privkey_tweak_add(secp.ctx, self.as_mut_ptr(), other.as_ptr()) != 1 {
|
2015-10-17 14:49:19 +00:00
|
|
|
Err(InvalidSecretKey)
|
2014-08-28 16:16:53 +00:00
|
|
|
} else {
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-08-20 17:00:39 +00:00
|
|
|
|
|
|
|
#[inline]
|
|
|
|
/// Multiplies one secret key by another, modulo the curve order
|
|
|
|
pub fn mul_assign(&mut self, secp: &Secp256k1, other: &SecretKey)
|
|
|
|
-> Result<(), Error> {
|
|
|
|
unsafe {
|
|
|
|
if ffi::secp256k1_ec_privkey_tweak_mul(secp.ctx, self.as_mut_ptr(), other.as_ptr()) != 1 {
|
|
|
|
Err(InvalidSecretKey)
|
|
|
|
} else {
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-08-10 01:03:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl PublicKey {
|
|
|
|
/// Creates a new zeroed out public key
|
|
|
|
#[inline]
|
2015-07-28 16:03:10 +00:00
|
|
|
pub fn new() -> PublicKey {
|
|
|
|
PublicKey(ffi::PublicKey::new())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Determines whether a pubkey is valid
|
|
|
|
#[inline]
|
|
|
|
pub fn is_valid(&self) -> bool {
|
|
|
|
// The only invalid pubkey the API should be able to create is
|
|
|
|
// the zero one.
|
|
|
|
self.0[..].iter().any(|&x| x != 0)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Obtains a raw pointer suitable for use with FFI functions
|
|
|
|
#[inline]
|
|
|
|
pub fn as_ptr(&self) -> *const ffi::PublicKey {
|
|
|
|
&self.0 as *const _
|
2014-08-10 01:03:17 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 17:59:44 +00:00
|
|
|
/// Creates a new public key from a secret key.
|
2014-08-10 01:03:17 +00:00
|
|
|
#[inline]
|
2015-04-12 20:54:22 +00:00
|
|
|
pub fn from_secret_key(secp: &Secp256k1,
|
2015-07-28 16:03:10 +00:00
|
|
|
sk: &SecretKey)
|
2015-10-14 14:35:02 +00:00
|
|
|
-> Result<PublicKey, Error> {
|
|
|
|
if secp.caps == ContextFlag::VerifyOnly || secp.caps == ContextFlag::None {
|
|
|
|
return Err(IncapableContext);
|
|
|
|
}
|
2015-07-28 16:03:10 +00:00
|
|
|
let mut pk = unsafe { ffi::PublicKey::blank() };
|
2014-08-28 17:59:44 +00:00
|
|
|
unsafe {
|
2014-08-28 18:11:25 +00:00
|
|
|
// We can assume the return value because it's not possible to construct
|
|
|
|
// an invalid `SecretKey` without transmute trickery or something
|
2015-07-28 16:03:10 +00:00
|
|
|
let res = ffi::secp256k1_ec_pubkey_create(secp.ctx, &mut pk, sk.as_ptr());
|
2015-04-11 18:07:43 +00:00
|
|
|
debug_assert_eq!(res, 1);
|
2014-08-10 03:34:16 +00:00
|
|
|
}
|
2015-10-14 14:35:02 +00:00
|
|
|
Ok(PublicKey(pk))
|
2014-08-10 01:03:17 +00:00
|
|
|
}
|
|
|
|
|
2014-08-10 01:46:38 +00:00
|
|
|
/// Creates a public key directly from a slice
|
|
|
|
#[inline]
|
2015-04-12 20:54:22 +00:00
|
|
|
pub fn from_slice(secp: &Secp256k1, data: &[u8])
|
2015-07-28 16:03:10 +00:00
|
|
|
-> Result<PublicKey, Error> {
|
2014-08-10 01:46:38 +00:00
|
|
|
|
2015-07-28 16:03:10 +00:00
|
|
|
let mut pk = unsafe { ffi::PublicKey::blank() };
|
|
|
|
unsafe {
|
|
|
|
if ffi::secp256k1_ec_pubkey_parse(secp.ctx, &mut pk, data.as_ptr(),
|
2015-09-20 19:52:29 +00:00
|
|
|
data.len() as ::libc::size_t) == 1 {
|
2015-07-28 16:03:10 +00:00
|
|
|
Ok(PublicKey(pk))
|
|
|
|
} else {
|
|
|
|
Err(InvalidPublicKey)
|
|
|
|
}
|
2014-08-10 01:03:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2015-07-28 16:03:10 +00:00
|
|
|
/// Serialize the key as a byte-encoded pair of values. In compressed form
|
|
|
|
/// the y-coordinate is represented by only a single bit, as x determines
|
|
|
|
/// it up to one bit.
|
2017-12-19 20:36:46 +00:00
|
|
|
pub fn serialize(&self) -> [u8; constants::PUBLIC_KEY_SIZE] {
|
|
|
|
let secp = Secp256k1::with_caps(ContextFlag::None);
|
|
|
|
let mut ret = [0; constants::PUBLIC_KEY_SIZE];
|
2014-08-10 01:03:17 +00:00
|
|
|
|
2015-07-28 16:03:10 +00:00
|
|
|
unsafe {
|
2016-01-14 18:35:54 +00:00
|
|
|
let mut ret_len = constants::PUBLIC_KEY_SIZE as ::libc::size_t;
|
2017-12-19 20:36:46 +00:00
|
|
|
let err = ffi::secp256k1_ec_pubkey_serialize(
|
|
|
|
secp.ctx,
|
|
|
|
ret.as_mut_ptr(),
|
|
|
|
&mut ret_len,
|
|
|
|
self.as_ptr(),
|
|
|
|
ffi::SECP256K1_SER_COMPRESSED,
|
|
|
|
);
|
2015-11-19 00:22:16 +00:00
|
|
|
debug_assert_eq!(err, 1);
|
2017-12-19 20:36:46 +00:00
|
|
|
debug_assert_eq!(ret_len, ret.len());
|
|
|
|
}
|
|
|
|
ret
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Serialize the key as a byte-encoded pair of values, in uncompressed form
|
|
|
|
pub fn serialize_uncompressed(&self) -> [u8; constants::UNCOMPRESSED_PUBLIC_KEY_SIZE] {
|
|
|
|
let secp = Secp256k1::with_caps(ContextFlag::None);
|
|
|
|
let mut ret = [0; constants::UNCOMPRESSED_PUBLIC_KEY_SIZE];
|
|
|
|
|
|
|
|
unsafe {
|
|
|
|
let mut ret_len = constants::UNCOMPRESSED_PUBLIC_KEY_SIZE as ::libc::size_t;
|
|
|
|
let err = ffi::secp256k1_ec_pubkey_serialize(
|
|
|
|
secp.ctx,
|
|
|
|
ret.as_mut_ptr(),
|
|
|
|
&mut ret_len,
|
|
|
|
self.as_ptr(),
|
|
|
|
ffi::SECP256K1_SER_UNCOMPRESSED,
|
|
|
|
);
|
|
|
|
debug_assert_eq!(err, 1);
|
|
|
|
debug_assert_eq!(ret_len, ret.len());
|
2014-08-10 01:03:17 +00:00
|
|
|
}
|
2015-07-28 16:03:10 +00:00
|
|
|
ret
|
2014-08-10 01:03:17 +00:00
|
|
|
}
|
2014-08-28 16:16:53 +00:00
|
|
|
|
|
|
|
#[inline]
|
|
|
|
/// Adds the pk corresponding to `other` to the pk `self` in place
|
2015-04-12 20:54:22 +00:00
|
|
|
pub fn add_exp_assign(&mut self, secp: &Secp256k1, other: &SecretKey)
|
|
|
|
-> Result<(), Error> {
|
2015-10-14 17:21:15 +00:00
|
|
|
if secp.caps == ContextFlag::SignOnly || secp.caps == ContextFlag::None {
|
|
|
|
return Err(IncapableContext);
|
|
|
|
}
|
2014-08-28 16:16:53 +00:00
|
|
|
unsafe {
|
2015-07-28 16:03:10 +00:00
|
|
|
if ffi::secp256k1_ec_pubkey_tweak_add(secp.ctx, &mut self.0 as *mut _,
|
|
|
|
other.as_ptr()) == 1 {
|
2014-08-28 16:16:53 +00:00
|
|
|
Ok(())
|
2015-07-28 16:03:10 +00:00
|
|
|
} else {
|
2015-10-17 14:49:19 +00:00
|
|
|
Err(InvalidSecretKey)
|
2014-08-28 16:16:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-08-20 17:00:39 +00:00
|
|
|
|
|
|
|
#[inline]
|
|
|
|
/// Muliplies the pk `self` in place by the scalar `other`
|
|
|
|
pub fn mul_assign(&mut self, secp: &Secp256k1, other: &SecretKey)
|
|
|
|
-> Result<(), Error> {
|
|
|
|
if secp.caps == ContextFlag::SignOnly || secp.caps == ContextFlag::None {
|
|
|
|
return Err(IncapableContext);
|
|
|
|
}
|
|
|
|
unsafe {
|
|
|
|
if ffi::secp256k1_ec_pubkey_tweak_mul(secp.ctx, &mut self.0 as *mut _,
|
|
|
|
other.as_ptr()) == 1 {
|
|
|
|
Ok(())
|
|
|
|
} else {
|
|
|
|
Err(InvalidSecretKey)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-12-21 00:59:22 +00:00
|
|
|
|
|
|
|
/// Adds a second key to this one, returning the sum. Returns an error if
|
|
|
|
/// the result would be the point at infinity, i.e. we are adding this point
|
|
|
|
/// to its own negation
|
|
|
|
pub fn combine(&self, secp: &Secp256k1, other: &PublicKey) -> Result<PublicKey, Error> {
|
|
|
|
unsafe {
|
|
|
|
let mut ret = mem::uninitialized();
|
|
|
|
let ptrs = [self.as_ptr(), other.as_ptr()];
|
|
|
|
if ffi::secp256k1_ec_pubkey_combine(secp.ctx, &mut ret, ptrs.as_ptr(), 2) == 1 {
|
|
|
|
Ok(PublicKey(ret))
|
|
|
|
} else {
|
|
|
|
Err(InvalidPublicKey)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-08-10 01:03:17 +00:00
|
|
|
}
|
|
|
|
|
2015-10-14 14:35:02 +00:00
|
|
|
/// Creates a new public key from a FFI public key
|
|
|
|
impl From<ffi::PublicKey> for PublicKey {
|
|
|
|
#[inline]
|
|
|
|
fn from(pk: ffi::PublicKey) -> PublicKey {
|
|
|
|
PublicKey(pk)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-10 01:46:38 +00:00
|
|
|
#[cfg(test)]
|
|
|
|
mod test {
|
2015-10-14 17:21:15 +00:00
|
|
|
use super::super::{Secp256k1, ContextFlag};
|
2015-10-14 14:35:02 +00:00
|
|
|
use super::super::Error::{InvalidPublicKey, InvalidSecretKey, IncapableContext};
|
2015-04-06 05:13:38 +00:00
|
|
|
use super::{PublicKey, SecretKey};
|
2015-04-12 15:51:15 +00:00
|
|
|
use super::super::constants;
|
|
|
|
|
2015-04-12 20:54:22 +00:00
|
|
|
use rand::{Rng, thread_rng};
|
2014-08-10 02:02:09 +00:00
|
|
|
|
2018-03-21 22:01:08 +00:00
|
|
|
macro_rules! hex {
|
|
|
|
($hex:expr) => {
|
|
|
|
{
|
|
|
|
let mut vec = Vec::new();
|
|
|
|
let mut b = 0;
|
|
|
|
for (idx, c) in $hex.as_bytes().iter().enumerate() {
|
|
|
|
b <<= 4;
|
|
|
|
match *c {
|
|
|
|
b'A'...b'F' => b |= c - b'A' + 10,
|
|
|
|
b'a'...b'f' => b |= c - b'a' + 10,
|
|
|
|
b'0'...b'9' => b |= c - b'0',
|
|
|
|
_ => panic!("Bad hex"),
|
|
|
|
}
|
|
|
|
if (idx & 1) == 1 {
|
|
|
|
vec.push(b);
|
|
|
|
b = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
vec
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-12-21 00:59:22 +00:00
|
|
|
|
2014-08-10 02:02:09 +00:00
|
|
|
#[test]
|
|
|
|
fn skey_from_slice() {
|
2015-04-12 20:54:22 +00:00
|
|
|
let s = Secp256k1::new();
|
2015-04-11 17:00:20 +00:00
|
|
|
let sk = SecretKey::from_slice(&s, &[1; 31]);
|
2014-09-12 13:28:35 +00:00
|
|
|
assert_eq!(sk, Err(InvalidSecretKey));
|
|
|
|
|
2015-04-11 17:00:20 +00:00
|
|
|
let sk = SecretKey::from_slice(&s, &[1; 32]);
|
2014-09-12 13:28:35 +00:00
|
|
|
assert!(sk.is_ok());
|
2014-08-10 02:02:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn pubkey_from_slice() {
|
2015-04-12 20:54:22 +00:00
|
|
|
let s = Secp256k1::new();
|
2015-04-11 17:00:20 +00:00
|
|
|
assert_eq!(PublicKey::from_slice(&s, &[]), Err(InvalidPublicKey));
|
|
|
|
assert_eq!(PublicKey::from_slice(&s, &[1, 2, 3]), Err(InvalidPublicKey));
|
2014-08-10 01:46:38 +00:00
|
|
|
|
2015-04-11 17:00:20 +00:00
|
|
|
let uncompressed = PublicKey::from_slice(&s, &[4, 54, 57, 149, 239, 162, 148, 175, 246, 254, 239, 75, 154, 152, 10, 82, 234, 224, 85, 220, 40, 100, 57, 121, 30, 162, 94, 156, 135, 67, 74, 49, 179, 57, 236, 53, 162, 124, 149, 144, 168, 77, 74, 30, 72, 211, 229, 110, 111, 55, 96, 193, 86, 227, 183, 152, 195, 155, 51, 247, 123, 113, 60, 228, 188]);
|
2014-08-10 01:46:38 +00:00
|
|
|
assert!(uncompressed.is_ok());
|
|
|
|
|
2015-04-11 17:00:20 +00:00
|
|
|
let compressed = PublicKey::from_slice(&s, &[3, 23, 183, 225, 206, 31, 159, 148, 195, 42, 67, 115, 146, 41, 248, 140, 11, 3, 51, 41, 111, 180, 110, 143, 114, 134, 88, 73, 198, 174, 52, 184, 78]);
|
2014-08-10 01:46:38 +00:00
|
|
|
assert!(compressed.is_ok());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn keypair_slice_round_trip() {
|
2015-04-12 20:54:22 +00:00
|
|
|
let s = Secp256k1::new();
|
2014-08-10 01:46:38 +00:00
|
|
|
|
2015-07-28 16:03:10 +00:00
|
|
|
let (sk1, pk1) = s.generate_keypair(&mut thread_rng()).unwrap();
|
2015-04-11 17:00:20 +00:00
|
|
|
assert_eq!(SecretKey::from_slice(&s, &sk1[..]), Ok(sk1));
|
2017-12-19 20:36:46 +00:00
|
|
|
assert_eq!(PublicKey::from_slice(&s, &pk1.serialize()[..]), Ok(pk1));
|
|
|
|
assert_eq!(PublicKey::from_slice(&s, &pk1.serialize_uncompressed()[..]), Ok(pk1));
|
2014-08-10 01:46:38 +00:00
|
|
|
}
|
2014-08-10 02:02:09 +00:00
|
|
|
|
2014-08-24 23:13:08 +00:00
|
|
|
#[test]
|
|
|
|
fn invalid_secret_key() {
|
2015-04-12 20:54:22 +00:00
|
|
|
let s = Secp256k1::new();
|
2014-08-24 23:13:08 +00:00
|
|
|
// Zero
|
2015-04-11 17:00:20 +00:00
|
|
|
assert_eq!(SecretKey::from_slice(&s, &[0; 32]), Err(InvalidSecretKey));
|
2014-08-24 23:13:08 +00:00
|
|
|
// -1
|
2015-04-11 17:00:20 +00:00
|
|
|
assert_eq!(SecretKey::from_slice(&s, &[0xff; 32]), Err(InvalidSecretKey));
|
2014-08-24 23:13:08 +00:00
|
|
|
// Top of range
|
2015-04-11 17:00:20 +00:00
|
|
|
assert!(SecretKey::from_slice(&s,
|
|
|
|
&[0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
|
2015-01-17 16:13:45 +00:00
|
|
|
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFE,
|
|
|
|
0xBA, 0xAE, 0xDC, 0xE6, 0xAF, 0x48, 0xA0, 0x3B,
|
|
|
|
0xBF, 0xD2, 0x5E, 0x8C, 0xD0, 0x36, 0x41, 0x40]).is_ok());
|
2014-08-24 23:13:08 +00:00
|
|
|
// One past top of range
|
2015-04-11 17:00:20 +00:00
|
|
|
assert!(SecretKey::from_slice(&s,
|
|
|
|
&[0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
|
2015-01-17 16:13:45 +00:00
|
|
|
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFE,
|
|
|
|
0xBA, 0xAE, 0xDC, 0xE6, 0xAF, 0x48, 0xA0, 0x3B,
|
|
|
|
0xBF, 0xD2, 0x5E, 0x8C, 0xD0, 0x36, 0x41, 0x41]).is_err());
|
2014-08-24 23:13:08 +00:00
|
|
|
}
|
2014-08-28 16:16:53 +00:00
|
|
|
|
2015-10-14 14:35:02 +00:00
|
|
|
#[test]
|
|
|
|
fn test_pubkey_from_slice_bad_context() {
|
|
|
|
let s = Secp256k1::without_caps();
|
|
|
|
let sk = SecretKey::new(&s, &mut thread_rng());
|
2015-10-14 17:21:15 +00:00
|
|
|
assert_eq!(PublicKey::from_secret_key(&s, &sk), Err(IncapableContext));
|
|
|
|
|
|
|
|
let s = Secp256k1::with_caps(ContextFlag::VerifyOnly);
|
|
|
|
assert_eq!(PublicKey::from_secret_key(&s, &sk), Err(IncapableContext));
|
|
|
|
|
|
|
|
let s = Secp256k1::with_caps(ContextFlag::SignOnly);
|
|
|
|
assert!(PublicKey::from_secret_key(&s, &sk).is_ok());
|
|
|
|
|
|
|
|
let s = Secp256k1::with_caps(ContextFlag::Full);
|
|
|
|
assert!(PublicKey::from_secret_key(&s, &sk).is_ok());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_add_exp_bad_context() {
|
|
|
|
let s = Secp256k1::with_caps(ContextFlag::Full);
|
|
|
|
let (sk, mut pk) = s.generate_keypair(&mut thread_rng()).unwrap();
|
|
|
|
|
|
|
|
assert!(pk.add_exp_assign(&s, &sk).is_ok());
|
|
|
|
|
|
|
|
let s = Secp256k1::with_caps(ContextFlag::VerifyOnly);
|
|
|
|
assert!(pk.add_exp_assign(&s, &sk).is_ok());
|
|
|
|
|
|
|
|
let s = Secp256k1::with_caps(ContextFlag::SignOnly);
|
|
|
|
assert_eq!(pk.add_exp_assign(&s, &sk), Err(IncapableContext));
|
|
|
|
|
|
|
|
let s = Secp256k1::with_caps(ContextFlag::None);
|
|
|
|
assert_eq!(pk.add_exp_assign(&s, &sk), Err(IncapableContext));
|
2015-10-14 14:35:02 +00:00
|
|
|
}
|
|
|
|
|
2015-04-12 15:51:15 +00:00
|
|
|
#[test]
|
|
|
|
fn test_out_of_range() {
|
|
|
|
|
|
|
|
struct BadRng(u8);
|
|
|
|
impl Rng for BadRng {
|
|
|
|
fn next_u32(&mut self) -> u32 { unimplemented!() }
|
|
|
|
// This will set a secret key to a little over the
|
|
|
|
// group order, then decrement with repeated calls
|
|
|
|
// until it returns a valid key
|
|
|
|
fn fill_bytes(&mut self, data: &mut [u8]) {
|
|
|
|
let group_order: [u8; 32] = [
|
|
|
|
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
|
|
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe,
|
|
|
|
0xba, 0xae, 0xdc, 0xe6, 0xaf, 0x48, 0xa0, 0x3b,
|
|
|
|
0xbf, 0xd2, 0x5e, 0x8c, 0xd0, 0x36, 0x41, 0x41];
|
|
|
|
assert_eq!(data.len(), 32);
|
2017-05-08 11:18:35 +00:00
|
|
|
data.copy_from_slice(&group_order[..]);
|
2015-04-12 15:51:15 +00:00
|
|
|
data[31] = self.0;
|
|
|
|
self.0 -= 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-12 20:54:22 +00:00
|
|
|
let s = Secp256k1::new();
|
2015-07-28 16:03:10 +00:00
|
|
|
s.generate_keypair(&mut BadRng(0xff)).unwrap();
|
2015-04-12 15:51:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_pubkey_from_bad_slice() {
|
2015-04-12 20:54:22 +00:00
|
|
|
let s = Secp256k1::new();
|
2015-04-12 15:51:15 +00:00
|
|
|
// Bad sizes
|
2017-12-19 20:36:46 +00:00
|
|
|
assert_eq!(PublicKey::from_slice(&s, &[0; constants::PUBLIC_KEY_SIZE - 1]),
|
2015-04-12 15:51:15 +00:00
|
|
|
Err(InvalidPublicKey));
|
2017-12-19 20:36:46 +00:00
|
|
|
assert_eq!(PublicKey::from_slice(&s, &[0; constants::PUBLIC_KEY_SIZE + 1]),
|
2015-04-12 15:51:15 +00:00
|
|
|
Err(InvalidPublicKey));
|
|
|
|
assert_eq!(PublicKey::from_slice(&s, &[0; constants::UNCOMPRESSED_PUBLIC_KEY_SIZE - 1]),
|
|
|
|
Err(InvalidPublicKey));
|
|
|
|
assert_eq!(PublicKey::from_slice(&s, &[0; constants::UNCOMPRESSED_PUBLIC_KEY_SIZE + 1]),
|
|
|
|
Err(InvalidPublicKey));
|
|
|
|
|
|
|
|
// Bad parse
|
|
|
|
assert_eq!(PublicKey::from_slice(&s, &[0xff; constants::UNCOMPRESSED_PUBLIC_KEY_SIZE]),
|
|
|
|
Err(InvalidPublicKey));
|
2017-12-19 20:36:46 +00:00
|
|
|
assert_eq!(PublicKey::from_slice(&s, &[0x55; constants::PUBLIC_KEY_SIZE]),
|
2015-04-12 15:51:15 +00:00
|
|
|
Err(InvalidPublicKey));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_debug_output() {
|
|
|
|
struct DumbRng(u32);
|
|
|
|
impl Rng for DumbRng {
|
|
|
|
fn next_u32(&mut self) -> u32 {
|
|
|
|
self.0 = self.0.wrapping_add(1);
|
|
|
|
self.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-12 20:54:22 +00:00
|
|
|
let s = Secp256k1::new();
|
2015-07-28 16:03:10 +00:00
|
|
|
let (sk, _) = s.generate_keypair(&mut DumbRng(0)).unwrap();
|
2015-04-12 15:51:15 +00:00
|
|
|
|
2015-07-28 16:03:10 +00:00
|
|
|
assert_eq!(&format!("{:?}", sk),
|
2015-04-12 20:54:22 +00:00
|
|
|
"SecretKey(0200000001000000040000000300000006000000050000000800000007000000)");
|
2015-07-28 16:03:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_pubkey_serialize() {
|
|
|
|
struct DumbRng(u32);
|
|
|
|
impl Rng for DumbRng {
|
|
|
|
fn next_u32(&mut self) -> u32 {
|
|
|
|
self.0 = self.0.wrapping_add(1);
|
|
|
|
self.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let s = Secp256k1::new();
|
|
|
|
let (_, pk1) = s.generate_keypair(&mut DumbRng(0)).unwrap();
|
2017-12-19 20:36:46 +00:00
|
|
|
assert_eq!(&pk1.serialize_uncompressed()[..],
|
2015-07-28 16:03:10 +00:00
|
|
|
&[4, 149, 16, 196, 140, 38, 92, 239, 179, 65, 59, 224, 230, 183, 91, 238, 240, 46, 186, 252, 175, 102, 52, 249, 98, 178, 123, 72, 50, 171, 196, 254, 236, 1, 189, 143, 242, 227, 16, 87, 247, 183, 162, 68, 237, 140, 92, 205, 151, 129, 166, 58, 111, 96, 123, 64, 180, 147, 51, 12, 209, 89, 236, 213, 206][..]);
|
2017-12-19 20:36:46 +00:00
|
|
|
assert_eq!(&pk1.serialize()[..],
|
2015-07-28 16:03:10 +00:00
|
|
|
&[2, 149, 16, 196, 140, 38, 92, 239, 179, 65, 59, 224, 230, 183, 91, 238, 240, 46, 186, 252, 175, 102, 52, 249, 98, 178, 123, 72, 50, 171, 196, 254, 236][..]);
|
2015-04-12 15:51:15 +00:00
|
|
|
}
|
|
|
|
|
2014-08-28 16:16:53 +00:00
|
|
|
#[test]
|
|
|
|
fn test_addition() {
|
2015-04-12 20:54:22 +00:00
|
|
|
let s = Secp256k1::new();
|
2014-08-28 16:16:53 +00:00
|
|
|
|
2015-07-28 16:03:10 +00:00
|
|
|
let (mut sk1, mut pk1) = s.generate_keypair(&mut thread_rng()).unwrap();
|
|
|
|
let (mut sk2, mut pk2) = s.generate_keypair(&mut thread_rng()).unwrap();
|
2014-08-28 16:16:53 +00:00
|
|
|
|
2015-10-14 14:35:02 +00:00
|
|
|
assert_eq!(PublicKey::from_secret_key(&s, &sk1).unwrap(), pk1);
|
2015-04-11 17:00:20 +00:00
|
|
|
assert!(sk1.add_assign(&s, &sk2).is_ok());
|
|
|
|
assert!(pk1.add_exp_assign(&s, &sk2).is_ok());
|
2015-10-14 14:35:02 +00:00
|
|
|
assert_eq!(PublicKey::from_secret_key(&s, &sk1).unwrap(), pk1);
|
2014-08-28 17:59:44 +00:00
|
|
|
|
2015-10-14 14:35:02 +00:00
|
|
|
assert_eq!(PublicKey::from_secret_key(&s, &sk2).unwrap(), pk2);
|
2015-04-11 17:00:20 +00:00
|
|
|
assert!(sk2.add_assign(&s, &sk1).is_ok());
|
|
|
|
assert!(pk2.add_exp_assign(&s, &sk1).is_ok());
|
2015-10-14 14:35:02 +00:00
|
|
|
assert_eq!(PublicKey::from_secret_key(&s, &sk2).unwrap(), pk2);
|
2014-08-28 16:16:53 +00:00
|
|
|
}
|
2016-01-09 03:45:20 +00:00
|
|
|
|
2016-08-20 17:00:39 +00:00
|
|
|
#[test]
|
|
|
|
fn test_multiplication() {
|
|
|
|
let s = Secp256k1::new();
|
|
|
|
|
|
|
|
let (mut sk1, mut pk1) = s.generate_keypair(&mut thread_rng()).unwrap();
|
|
|
|
let (mut sk2, mut pk2) = s.generate_keypair(&mut thread_rng()).unwrap();
|
|
|
|
|
|
|
|
assert_eq!(PublicKey::from_secret_key(&s, &sk1).unwrap(), pk1);
|
|
|
|
assert!(sk1.mul_assign(&s, &sk2).is_ok());
|
|
|
|
assert!(pk1.mul_assign(&s, &sk2).is_ok());
|
|
|
|
assert_eq!(PublicKey::from_secret_key(&s, &sk1).unwrap(), pk1);
|
|
|
|
|
|
|
|
assert_eq!(PublicKey::from_secret_key(&s, &sk2).unwrap(), pk2);
|
|
|
|
assert!(sk2.mul_assign(&s, &sk1).is_ok());
|
|
|
|
assert!(pk2.mul_assign(&s, &sk1).is_ok());
|
|
|
|
assert_eq!(PublicKey::from_secret_key(&s, &sk2).unwrap(), pk2);
|
|
|
|
}
|
|
|
|
|
2016-01-09 03:45:20 +00:00
|
|
|
#[test]
|
|
|
|
fn pubkey_hash() {
|
2017-04-27 19:46:28 +00:00
|
|
|
use std::collections::hash_map::DefaultHasher;
|
|
|
|
use std::hash::{Hash, Hasher};
|
2016-01-09 03:45:20 +00:00
|
|
|
use std::collections::HashSet;
|
|
|
|
|
|
|
|
fn hash<T: Hash>(t: &T) -> u64 {
|
2017-04-27 19:46:28 +00:00
|
|
|
let mut s = DefaultHasher::new();
|
2016-01-09 03:45:20 +00:00
|
|
|
t.hash(&mut s);
|
|
|
|
s.finish()
|
|
|
|
}
|
|
|
|
|
|
|
|
let s = Secp256k1::new();
|
|
|
|
let mut set = HashSet::new();
|
|
|
|
const COUNT : usize = 1024;
|
|
|
|
let count = (0..COUNT).map(|_| {
|
|
|
|
let (_, pk) = s.generate_keypair(&mut thread_rng()).unwrap();
|
|
|
|
let hash = hash(&pk);
|
|
|
|
assert!(!set.contains(&hash));
|
|
|
|
set.insert(hash);
|
|
|
|
}).count();
|
|
|
|
assert_eq!(count, COUNT);
|
|
|
|
}
|
2017-12-21 00:59:22 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn pubkey_combine() {
|
|
|
|
let s = Secp256k1::with_caps(ContextFlag::None);
|
|
|
|
let compressed1 = PublicKey::from_slice(
|
|
|
|
&s,
|
|
|
|
&hex!("0241cc121c419921942add6db6482fb36243faf83317c866d2a28d8c6d7089f7ba"),
|
|
|
|
).unwrap();
|
|
|
|
let compressed2 = PublicKey::from_slice(
|
|
|
|
&s,
|
|
|
|
&hex!("02e6642fd69bd211f93f7f1f36ca51a26a5290eb2dd1b0d8279a87bb0d480c8443"),
|
|
|
|
).unwrap();
|
|
|
|
let exp_sum = PublicKey::from_slice(
|
|
|
|
&s,
|
|
|
|
&hex!("0384526253c27c7aef56c7b71a5cd25bebb66dddda437826defc5b2568bde81f07"),
|
|
|
|
).unwrap();
|
|
|
|
|
|
|
|
let sum1 = compressed1.combine(&s, &compressed2);
|
|
|
|
assert!(sum1.is_ok());
|
|
|
|
let sum2 = compressed2.combine(&s, &compressed1);
|
|
|
|
assert!(sum2.is_ok());
|
|
|
|
assert_eq!(sum1, sum2);
|
|
|
|
assert_eq!(sum1.unwrap(), exp_sum);
|
|
|
|
}
|
2018-05-29 11:11:18 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn pubkey_equal() {
|
|
|
|
let s = Secp256k1::new();
|
|
|
|
let pk1 = PublicKey::from_slice(
|
|
|
|
&s,
|
|
|
|
&hex!("0241cc121c419921942add6db6482fb36243faf83317c866d2a28d8c6d7089f7ba"),
|
|
|
|
).unwrap();
|
|
|
|
let pk2 = pk1.clone();
|
|
|
|
let pk3 = PublicKey::from_slice(
|
|
|
|
&s,
|
|
|
|
&hex!("02e6642fd69bd211f93f7f1f36ca51a26a5290eb2dd1b0d8279a87bb0d480c8443"),
|
|
|
|
).unwrap();
|
|
|
|
|
|
|
|
assert!(pk1 == pk2);
|
|
|
|
assert!(pk1 <= pk2);
|
|
|
|
assert!(pk2 <= pk1);
|
|
|
|
assert!(!(pk2 < pk1));
|
|
|
|
assert!(!(pk1 < pk2));
|
|
|
|
|
|
|
|
assert!(pk3 < pk1);
|
|
|
|
assert!(pk1 > pk3);
|
|
|
|
assert!(pk3 <= pk1);
|
|
|
|
assert!(pk1 >= pk3);
|
|
|
|
}
|
2014-08-10 01:46:38 +00:00
|
|
|
}
|
|
|
|
|
2014-08-10 01:03:17 +00:00
|
|
|
|