Skip to content

Commit c7c8056

Browse files
committed
Limit SharedSecret to 32 byte buffer
The `SharedSecret` uses sha256 to hash the secret, this implies the secret is 32 bytes of data. Currently we use a buffer of 256 bytes, this is unnecessary. Change the implementation of `SharedSecret` to use a 32 byte buffer.
1 parent 834f63c commit c7c8056

File tree

2 files changed

+49
-96
lines changed

2 files changed

+49
-96
lines changed

src/ecdh.rs

Lines changed: 49 additions & 79 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
//!
1717
1818
use core::ptr;
19-
use core::ops::Deref;
19+
use core::borrow::Borrow;
2020

2121
use key::{SecretKey, PublicKey};
2222
use ffi::{self, CPtr};
@@ -39,90 +39,18 @@ use secp256k1_sys::types::{c_int, c_uchar, c_void};
3939
/// assert_eq!(sec1, sec2);
4040
/// # }
4141
// ```
42-
#[derive(Copy, Clone)]
43-
pub struct SharedSecret {
44-
data: [u8; 256],
45-
len: usize,
46-
}
47-
impl_raw_debug!(SharedSecret);
48-
49-
50-
// This implementes `From<N>` for all `[u8; N]` arrays from 128bits(16 byte) to 2048bits allowing known hash lengths.
51-
// Lower than 128 bits isn't resistant to collisions any more.
52-
impl_from_array_len!(SharedSecret, 256, (16 20 28 32 48 64 96 128 256));
53-
54-
impl SharedSecret {
55-
56-
/// Creates an empty `SharedSecret`.
57-
pub(crate) fn empty() -> SharedSecret {
58-
SharedSecret {
59-
data: [0u8; 256],
60-
len: 0,
61-
}
62-
}
63-
64-
/// Gets a pointer to the underlying data with the specified capacity.
65-
pub(crate) fn get_data_mut_ptr(&mut self) -> *mut u8 {
66-
self.data.as_mut_ptr()
67-
}
68-
69-
/// Gets the capacity of the underlying data buffer.
70-
pub fn capacity(&self) -> usize {
71-
self.data.len()
72-
}
73-
74-
/// Gets the len of the used data.
75-
pub fn len(&self) -> usize {
76-
self.len
77-
}
78-
79-
/// Returns true if the underlying data buffer is empty.
80-
pub fn is_empty(&self) -> bool {
81-
self.data.is_empty()
82-
}
83-
84-
/// Sets the length of the object.
85-
pub(crate) fn set_len(&mut self, len: usize) {
86-
debug_assert!(len <= self.data.len());
87-
self.len = len;
88-
}
89-
}
90-
91-
impl PartialEq for SharedSecret {
92-
fn eq(&self, other: &SharedSecret) -> bool {
93-
self.as_ref() == other.as_ref()
94-
}
95-
}
96-
97-
impl AsRef<[u8]> for SharedSecret {
98-
fn as_ref(&self) -> &[u8] {
99-
&self.data[..self.len]
100-
}
101-
}
102-
103-
impl Deref for SharedSecret {
104-
type Target = [u8];
105-
fn deref(&self) -> &[u8] {
106-
&self.data[..self.len]
107-
}
108-
}
109-
110-
111-
unsafe extern "C" fn c_callback(output: *mut c_uchar, x: *const c_uchar, y: *const c_uchar, _data: *mut c_void) -> c_int {
112-
ptr::copy_nonoverlapping(x, output, 32);
113-
ptr::copy_nonoverlapping(y, output.offset(32), 32);
114-
1
115-
}
42+
#[derive(Copy, Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
43+
pub struct SharedSecret([u8; 32]);
11644

11745
impl SharedSecret {
11846
/// Creates a new shared secret from a pubkey and secret key.
11947
#[inline]
12048
pub fn new(point: &PublicKey, scalar: &SecretKey) -> SharedSecret {
121-
let mut ss = SharedSecret::empty();
49+
let mut buf = [0u8; 32];
12250
let res = unsafe {
12351
ffi::secp256k1_ecdh(
12452
ffi::secp256k1_context_no_precomp,
125-
ss.get_data_mut_ptr(),
53+
buf.as_mut_ptr(),
12654
point.as_c_ptr(),
12755
scalar.as_c_ptr(),
12856
ffi::secp256k1_ecdh_hash_function_default,
@@ -132,13 +60,27 @@ impl SharedSecret {
13260
// The default `secp256k1_ecdh_hash_function_default` should always return 1.
13361
// and the scalar was verified to be valid(0 > scalar > group_order) via the type system
13462
debug_assert_eq!(res, 1);
135-
ss.set_len(32); // The default hash function is SHA256, which is 32 bytes long.
136-
ss
63+
SharedSecret(buf)
64+
}
65+
}
66+
67+
impl Borrow<[u8]> for SharedSecret {
68+
fn borrow(&self) -> &[u8] {
69+
&self.0
70+
}
71+
}
72+
73+
impl AsRef<[u8]> for SharedSecret {
74+
fn as_ref(&self) -> &[u8] {
75+
&self.0
13776
}
13877
}
13978

14079
/// Creates a shared point from public key and secret key.
14180
///
81+
/// **Important: use of a strong cryptographic hash function may be critical to security! Do NOT use
82+
/// unless you understand cryptographical implications.** If not, use SharedSecret instead.
83+
///
14284
/// Can be used like `SharedSecret` but caller is responsible for then hashing the returned buffer.
14385
/// This allows for the use of a custom hash function since `SharedSecret` uses SHA256.
14486
///
@@ -183,6 +125,12 @@ pub fn shared_secret_point(point: &PublicKey, scalar: &SecretKey) -> [u8; 64] {
183125
xy
184126
}
185127

128+
unsafe extern "C" fn c_callback(output: *mut c_uchar, x: *const c_uchar, y: *const c_uchar, _data: *mut c_void) -> c_int {
129+
ptr::copy_nonoverlapping(x, output, 32);
130+
ptr::copy_nonoverlapping(y, output.offset(32), 32);
131+
1
132+
}
133+
186134
#[cfg(test)]
187135
#[allow(unused_imports)]
188136
mod tests {
@@ -221,6 +169,28 @@ mod tests {
221169
assert_eq!(x, new_x);
222170
assert_eq!(y, new_y);
223171
}
172+
173+
#[test]
174+
#[cfg(all(feature="rand-std", feature = "std", feature = "bitcoin_hashes"))]
175+
fn bitcoin_hashes_and_sys_generate_same_secret() {
176+
use hashes::{sha256, Hash, HashEngine};
177+
178+
let s = Secp256k1::signing_only();
179+
let (sk1, _) = s.generate_keypair(&mut thread_rng());
180+
let (_, pk2) = s.generate_keypair(&mut thread_rng());
181+
182+
let secret_sys = SharedSecret::new(&pk2, &sk1);
183+
184+
let point = shared_secret_point(&pk2, &sk1);
185+
186+
let version = (point[31] & 0x01) | 0x02;
187+
let mut engine = sha256::HashEngine::default();
188+
engine.input(&[version]);
189+
engine.input(&point.as_ref()[..32]);
190+
let secret_bh = sha256::Hash::from_engine(engine);
191+
192+
assert_eq!(secret_bh.as_inner(), secret_sys.as_ref());
193+
}
224194
}
225195

226196
#[cfg(all(test, feature = "unstable"))]

src/macros.rs

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -26,20 +26,3 @@ macro_rules! impl_pretty_debug {
2626
}
2727
}
2828
}
29-
30-
macro_rules! impl_from_array_len {
31-
($thing:ident, $capacity:tt, ($($N:tt)+)) => {
32-
$(
33-
impl From<[u8; $N]> for $thing {
34-
fn from(arr: [u8; $N]) -> Self {
35-
let mut data = [0u8; $capacity];
36-
data[..$N].copy_from_slice(&arr);
37-
$thing {
38-
data,
39-
len: $N,
40-
}
41-
}
42-
}
43-
)+
44-
}
45-
}

0 commit comments

Comments
 (0)