2018-09-09 10:34:29 +00:00
|
|
|
// Rust Bitcoin Library
|
|
|
|
// Written by
|
|
|
|
// The Rust Bitcoin developers
|
|
|
|
//
|
|
|
|
// 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/>.
|
|
|
|
//
|
|
|
|
|
2021-11-05 21:58:18 +00:00
|
|
|
//! Raw PSBT key-value pairs.
|
2018-08-10 15:28:48 +00:00
|
|
|
//!
|
|
|
|
//! Raw PSBT key-value pairs as defined at
|
2021-05-03 11:46:10 +00:00
|
|
|
//! <https://github.com/bitcoin/bips/blob/master/bip-0174.mediawiki>.
|
2021-11-05 21:58:18 +00:00
|
|
|
//!
|
2018-08-10 15:28:48 +00:00
|
|
|
|
2021-06-09 10:34:44 +00:00
|
|
|
use prelude::*;
|
2021-06-09 10:40:41 +00:00
|
|
|
use core::fmt;
|
2018-08-10 15:28:48 +00:00
|
|
|
|
2021-06-09 10:34:44 +00:00
|
|
|
use io;
|
2020-12-05 14:10:44 +00:00
|
|
|
use consensus::encode::{self, ReadExt, WriteExt, Decodable, Encodable, VarInt, serialize, deserialize, MAX_VEC_SIZE};
|
2020-12-22 12:22:43 +00:00
|
|
|
use hashes::hex;
|
2018-08-10 15:28:48 +00:00
|
|
|
use util::psbt::Error;
|
2021-06-09 10:34:44 +00:00
|
|
|
use util::read_to_end;
|
2018-08-10 15:28:48 +00:00
|
|
|
|
|
|
|
/// A PSBT key in its raw byte form.
|
2019-08-09 15:03:12 +00:00
|
|
|
#[derive(Debug, PartialEq, Hash, Eq, Clone, Ord, PartialOrd)]
|
2020-10-25 18:03:20 +00:00
|
|
|
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
|
2018-08-10 15:28:48 +00:00
|
|
|
pub struct Key {
|
|
|
|
/// The type of this PSBT key.
|
|
|
|
pub type_value: u8,
|
|
|
|
/// The key itself in raw byte form.
|
2020-10-25 18:27:45 +00:00
|
|
|
#[cfg_attr(feature = "serde", serde(with = "::serde_utils::hex_bytes"))]
|
2018-08-10 15:28:48 +00:00
|
|
|
pub key: Vec<u8>,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// A PSBT key-value pair in its raw byte form.
|
|
|
|
#[derive(Debug, PartialEq)]
|
2020-10-25 18:03:20 +00:00
|
|
|
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
|
2018-08-10 15:28:48 +00:00
|
|
|
pub struct Pair {
|
|
|
|
/// The key of this key-value pair.
|
|
|
|
pub key: Key,
|
|
|
|
/// The value of this key-value pair in raw byte form.
|
2020-10-25 18:27:45 +00:00
|
|
|
#[cfg_attr(feature = "serde", serde(with = "::serde_utils::hex_bytes"))]
|
2018-08-10 15:28:48 +00:00
|
|
|
pub value: Vec<u8>,
|
|
|
|
}
|
|
|
|
|
2020-12-05 14:10:44 +00:00
|
|
|
/// Default implementation for proprietary key subtyping
|
|
|
|
pub type ProprietaryType = u8;
|
|
|
|
|
|
|
|
/// Proprietary keys (i.e. keys starting with 0xFC byte) with their internal
|
|
|
|
/// structure according to BIP 174.
|
|
|
|
#[derive(Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Debug)]
|
2020-10-25 18:03:20 +00:00
|
|
|
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
|
2020-12-05 14:10:44 +00:00
|
|
|
pub struct ProprietaryKey<Subtype = ProprietaryType> where Subtype: Copy + From<u8> + Into<u8> {
|
|
|
|
/// Proprietary type prefix used for grouping together keys under some
|
|
|
|
/// application and avoid namespace collision
|
2020-10-25 18:27:45 +00:00
|
|
|
#[cfg_attr(feature = "serde", serde(with = "::serde_utils::hex_bytes"))]
|
2020-12-05 14:10:44 +00:00
|
|
|
pub prefix: Vec<u8>,
|
|
|
|
/// Custom proprietary subtype
|
|
|
|
pub subtype: Subtype,
|
|
|
|
/// Additional key bytes (like serialized public key data etc)
|
2020-10-25 18:27:45 +00:00
|
|
|
#[cfg_attr(feature = "serde", serde(with = "::serde_utils::hex_bytes"))]
|
2020-12-05 14:10:44 +00:00
|
|
|
pub key: Vec<u8>,
|
|
|
|
}
|
|
|
|
|
2018-08-10 15:28:48 +00:00
|
|
|
impl fmt::Display for Key {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
2020-12-22 12:22:43 +00:00
|
|
|
write!(f, "type: {:#x}, key: ", self.type_value)?;
|
|
|
|
hex::format_hex(&self.key[..], f)
|
2018-08-10 15:28:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-11 17:06:42 +00:00
|
|
|
impl Decodable for Key {
|
|
|
|
fn consensus_decode<D: io::Read>(mut d: D) -> Result<Self, encode::Error> {
|
|
|
|
let VarInt(byte_size): VarInt = Decodable::consensus_decode(&mut d)?;
|
2018-08-10 15:28:48 +00:00
|
|
|
|
|
|
|
if byte_size == 0 {
|
|
|
|
return Err(Error::NoMorePairs.into());
|
|
|
|
}
|
|
|
|
|
|
|
|
let key_byte_size: u64 = byte_size - 1;
|
|
|
|
|
|
|
|
if key_byte_size > MAX_VEC_SIZE as u64 {
|
2019-07-11 17:06:42 +00:00
|
|
|
return Err(encode::Error::OversizedVectorAllocation {
|
|
|
|
requested: key_byte_size as usize,
|
|
|
|
max: MAX_VEC_SIZE,
|
|
|
|
})
|
2018-08-10 15:28:48 +00:00
|
|
|
}
|
|
|
|
|
2019-07-11 17:06:42 +00:00
|
|
|
let type_value: u8 = Decodable::consensus_decode(&mut d)?;
|
2018-08-10 15:28:48 +00:00
|
|
|
|
|
|
|
let mut key = Vec::with_capacity(key_byte_size as usize);
|
|
|
|
for _ in 0..key_byte_size {
|
2019-07-11 17:06:42 +00:00
|
|
|
key.push(Decodable::consensus_decode(&mut d)?);
|
2018-08-10 15:28:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Ok(Key {
|
2021-11-03 09:20:34 +00:00
|
|
|
type_value,
|
|
|
|
key,
|
2018-08-10 15:28:48 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-11 14:56:37 +00:00
|
|
|
impl Encodable for Key {
|
|
|
|
fn consensus_encode<S: io::Write>(
|
|
|
|
&self,
|
|
|
|
mut s: S,
|
2020-10-09 15:04:10 +00:00
|
|
|
) -> Result<usize, io::Error> {
|
2019-05-23 20:28:10 +00:00
|
|
|
let mut len = 0;
|
2019-07-11 14:56:37 +00:00
|
|
|
len += VarInt((self.key.len() + 1) as u64).consensus_encode(&mut s)?;
|
2018-08-10 15:28:48 +00:00
|
|
|
|
2019-07-11 14:56:37 +00:00
|
|
|
len += self.type_value.consensus_encode(&mut s)?;
|
2018-08-10 15:28:48 +00:00
|
|
|
|
|
|
|
for key in &self.key {
|
2019-07-11 14:56:37 +00:00
|
|
|
len += key.consensus_encode(&mut s)?
|
2018-08-10 15:28:48 +00:00
|
|
|
}
|
|
|
|
|
2019-05-23 20:28:10 +00:00
|
|
|
Ok(len)
|
2018-08-10 15:28:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-11 14:56:37 +00:00
|
|
|
impl Encodable for Pair {
|
|
|
|
fn consensus_encode<S: io::Write>(
|
|
|
|
&self,
|
|
|
|
mut s: S,
|
2020-10-09 15:04:10 +00:00
|
|
|
) -> Result<usize, io::Error> {
|
2019-07-11 14:56:37 +00:00
|
|
|
let len = self.key.consensus_encode(&mut s)?;
|
2019-05-23 20:28:10 +00:00
|
|
|
Ok(len + self.value.consensus_encode(s)?)
|
2018-08-10 15:28:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-11 17:06:42 +00:00
|
|
|
impl Decodable for Pair {
|
|
|
|
fn consensus_decode<D: io::Read>(mut d: D) -> Result<Self, encode::Error> {
|
2018-08-10 15:28:48 +00:00
|
|
|
Ok(Pair {
|
2019-07-11 17:06:42 +00:00
|
|
|
key: Decodable::consensus_decode(&mut d)?,
|
2018-08-10 15:28:48 +00:00
|
|
|
value: Decodable::consensus_decode(d)?,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
2020-12-05 14:10:44 +00:00
|
|
|
|
|
|
|
impl<Subtype> Encodable for ProprietaryKey<Subtype> where Subtype: Copy + From<u8> + Into<u8> {
|
2020-10-09 15:04:10 +00:00
|
|
|
fn consensus_encode<W: io::Write>(&self, mut e: W) -> Result<usize, io::Error> {
|
2020-12-05 14:10:44 +00:00
|
|
|
let mut len = self.prefix.consensus_encode(&mut e)? + 1;
|
|
|
|
e.emit_u8(self.subtype.into())?;
|
|
|
|
len += e.write(&self.key)?;
|
|
|
|
Ok(len)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<Subtype> Decodable for ProprietaryKey<Subtype> where Subtype: Copy + From<u8> + Into<u8> {
|
|
|
|
fn consensus_decode<D: io::Read>(mut d: D) -> Result<Self, encode::Error> {
|
|
|
|
let prefix = Vec::<u8>::consensus_decode(&mut d)?;
|
|
|
|
let subtype = Subtype::from(d.read_u8()?);
|
2021-06-09 10:34:44 +00:00
|
|
|
let key = read_to_end(d)?;
|
2020-12-05 14:10:44 +00:00
|
|
|
|
|
|
|
Ok(ProprietaryKey {
|
|
|
|
prefix,
|
|
|
|
subtype,
|
|
|
|
key
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<Subtype> ProprietaryKey<Subtype> where Subtype: Copy + From<u8> + Into<u8> {
|
|
|
|
/// Constructs [ProprietaryKey] from [Key]; returns
|
|
|
|
/// [Error::InvalidProprietaryKey] if `key` do not starts with 0xFC byte
|
|
|
|
pub fn from_key(key: Key) -> Result<Self, Error> {
|
|
|
|
if key.type_value != 0xFC {
|
|
|
|
return Err(Error::InvalidProprietaryKey)
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(deserialize(&key.key)?)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Constructs full [Key] corresponding to this proprietary key type
|
|
|
|
pub fn to_key(&self) -> Key {
|
|
|
|
Key {
|
|
|
|
type_value: 0xFC,
|
|
|
|
key: serialize(self)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|