zebra/zebra-chain/src/keys/sprout.rs

149 lines
4.0 KiB
Rust
Raw Normal View History

2020-03-13 14:38:42 -07:00
//! Sprout key types
//!
//! "The receiving key sk_enc, the incoming viewing key ivk = (apk,
//! sk_enc), and the shielded payment address addr_pk = (a_pk, pk_enc) are
//! derived from a_sk, as described in [Sprout Key Components][ps]
//!
//! [ps]: https://zips.z.cash/protocol/protocol.pdf#sproutkeycomponents
2020-03-13 14:38:42 -07:00
use std::fmt;
use byteorder::{ByteOrder, LittleEndian};
use rand_core::{CryptoRng, RngCore};
2020-02-25 15:14:59 -08:00
#[cfg(test)]
2020-03-26 19:20:30 -07:00
use proptest::prelude::*;
2020-02-25 15:14:59 -08:00
#[cfg(test)]
use proptest_derive::Arbitrary;
2020-03-26 19:18:51 -07:00
use sha2;
/// Our root secret key of the Sprout key derivation tree.
///
/// All other Sprout key types derive from the SpendingKey value.
/// Actually 252 bits.
#[derive(Copy, Clone, Debug, Eq, PartialEq)]
pub struct SpendingKey(pub [u8; 32]);
impl SpendingKey {
2020-03-27 23:01:10 -07:00
/// Generate a new _SpendingKey_ with the high 4 bits of the first
/// byte set to zero (ie, 256 random bits, clamped to 252).
pub fn new<T>(csprng: &mut T) -> Self
where
T: RngCore + CryptoRng,
{
let mut bytes = [0u8; 32];
csprng.fill_bytes(&mut bytes);
Self::from(bytes)
}
}
impl From<[u8; 32]> for SpendingKey {
2020-03-27 23:01:10 -07:00
/// Generate a _SpendingKey_ from existing bytes, with the high 4
/// bits of the first byte set to zero (ie, 256 bits clamped to
/// 252).
fn from(mut bytes: [u8; 32]) -> SpendingKey {
bytes[0] &= 0b0000_1111; // Force the 4 high-order bits to zero.
SpendingKey(bytes)
}
}
/// Derived from a _SpendingKey_.
pub type ReceivingKey = x25519_dalek::StaticSecret;
impl From<SpendingKey> for ReceivingKey {
/// For this invocation of SHA256Compress as PRF^addr, t=0, which
/// is populated by default in an empty block of all zeros to
/// start.
///
/// https://zips.z.cash/protocol/protocol.pdf#sproutkeycomponents
/// https://zips.z.cash/protocol/protocol.pdf#concreteprfs
fn from(spending_key: SpendingKey) -> ReceivingKey {
let mut state = [0u32; 8];
let mut block = [0u8; 64]; // Thus, t = 0
block[0..32].copy_from_slice(&spending_key.0[..]);
2020-03-24 02:18:14 -07:00
block[0] |= 0b1100_0000;
2020-03-26 19:18:51 -07:00
sha2::compress256(&mut state, &block);
let mut derived_bytes = [0u8; 32];
LittleEndian::write_u32_into(&state, &mut derived_bytes);
ReceivingKey::from(derived_bytes)
}
}
/// Derived from a _SpendingKey_.
2020-03-26 18:34:35 -07:00
#[derive(Copy, Clone, Eq, PartialEq)]
pub struct PayingKey(pub [u8; 32]);
2020-03-26 18:34:35 -07:00
impl fmt::Debug for PayingKey {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.debug_tuple("PayingKey")
.field(&hex::encode(&self.0))
.finish()
}
}
impl From<SpendingKey> for PayingKey {
/// For this invocation of SHA256Compress as PRF^addr, t=1.
///
/// https://zips.z.cash/protocol/protocol.pdf#sproutkeycomponents
/// https://zips.z.cash/protocol/protocol.pdf#concreteprfs
fn from(spending_key: SpendingKey) -> PayingKey {
let mut state = [0u32; 8];
let mut block = [0u8; 64];
block[0..32].copy_from_slice(&spending_key.0[..]);
2020-03-24 02:18:14 -07:00
block[0] |= 0b1100_0000;
block[32] = 1u8; // t = 1
2020-03-26 19:18:51 -07:00
sha2::compress256(&mut state, &block);
let mut derived_bytes = [0u8; 32];
LittleEndian::write_u32_into(&state, &mut derived_bytes);
PayingKey(derived_bytes)
}
}
/// Derived from a _ReceivingKey_.
pub type TransmissionKey = x25519_dalek::PublicKey;
/// The recipients possession of the associated incoming viewing key
/// is used to reconstruct the original note and memo field.
pub struct IncomingViewingKey {
paying_key: PayingKey,
receiving_key: ReceivingKey,
}
#[cfg(test)]
mod tests {
use rand_core::OsRng;
use super::*;
#[test]
2020-03-24 02:13:25 -07:00
// TODO: test vectors, not just random data
fn derive_keys() {
let spending_key = SpendingKey::new(&mut OsRng);
println!("{:?}", spending_key);
let receiving_key = ReceivingKey::from(spending_key);
let transmission_key = TransmissionKey::from(&receiving_key);
}
}
2020-02-25 15:14:59 -08:00
#[cfg(test)]
proptest! {
// #[test]
// fn test() {}
2020-02-25 15:14:59 -08:00
}