bc_components/sskr_mod.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
use bc_rand::{ RandomNumberGenerator, SecureRandomNumberGenerator };
use bc_ur::prelude::*;
use sskr::SSKRError;
use anyhow::{ Result, Error };
use crate::tags;
pub use sskr::{ Spec as SSKRSpec, GroupSpec as SSKRGroupSpec, Secret as SSKRSecret };
/// An SSKR share.
#[derive(Debug, PartialEq, Eq, Clone, Hash)]
pub struct SSKRShare(Vec<u8>);
impl SSKRShare {
/// Restores an `SSKRShare` from an array of bytes.
pub fn from_data(data: impl Into<Vec<u8>>) -> Self {
Self(data.into())
}
/// Returns the data of this `SSKRShare`.
pub fn data(&self) -> &Vec<u8> {
&self.0
}
/// Restores an `SSKRShare` from a hex string.
pub fn from_hex(hex: impl AsRef<str>) -> Self {
Self::from_data(hex::decode(hex.as_ref()).unwrap())
}
/// Returns the data of this `SSKRShare` as a hex string.
pub fn hex(&self) -> String {
hex::encode(self.data())
}
}
impl SSKRShare {
/// Returns the unique identifier of the split to which this share belongs.
pub fn identifier(&self) -> u16 {
(u16::from(self.0[0]) << 8) | u16::from(self.0[1])
}
/// Returns the unique identifier of the split to which this share belongs as a hex string.
pub fn identifier_hex(&self) -> String {
hex::encode(&self.0[0..=1])
}
/// Returns the minimum number of groups whose quorum must be met to
/// reconstruct the secret.
pub fn group_threshold(&self) -> usize {
usize::from(self.0[2] >> 4) + 1
}
pub fn group_count(&self) -> usize {
usize::from(self.0[2] & 0xf) + 1
}
/// Returns the index of the group to which this share belongs.
pub fn group_index(&self) -> usize {
usize::from(self.0[3] >> 4)
}
/// Returns the minimum number of shares within the group
/// to which this share belongs that must be combined to meet
/// the group threshold.
pub fn member_threshold(&self) -> usize {
usize::from(self.0[3] & 0xf) + 1
}
/// Returns the index of this share within the group to which it belongs.
pub fn member_index(&self) -> usize {
usize::from(self.0[4] & 0xf)
}
}
impl CBORTagged for SSKRShare {
fn cbor_tags() -> Vec<Tag> {
tags_for_values(&[tags::TAG_SSKR_SHARE, tags::TAG_SSKR_SHARE_V1])
}
}
impl From<SSKRShare> for CBOR {
fn from(value: SSKRShare) -> Self {
value.tagged_cbor()
}
}
impl CBORTaggedEncodable for SSKRShare {
fn untagged_cbor(&self) -> CBOR {
CBOR::to_byte_string(&self.0)
}
}
impl TryFrom<CBOR> for SSKRShare {
type Error = Error;
fn try_from(cbor: CBOR) -> Result<Self, Self::Error> {
Self::from_tagged_cbor(cbor)
}
}
impl CBORTaggedDecodable for SSKRShare {
fn from_untagged_cbor(cbor: CBOR) -> Result<Self> {
let data = CBOR::try_into_byte_string(cbor)?;
let instance = Self::from_data(data);
Ok(instance)
}
}
/// Generates SSKR shares for the given `Spec` and `Secret`.
///
/// # Arguments
///
/// * `spec` - The `Spec` instance that defines the group and member thresholds.
/// * `master_secret` - The `Secret` instance to be split into shares.
pub fn sskr_generate(
spec: &SSKRSpec,
master_secret: &SSKRSecret
) -> Result<Vec<Vec<SSKRShare>>, SSKRError> {
let mut rng = SecureRandomNumberGenerator;
sskr_generate_using(spec, master_secret, &mut rng)
}
/// Generates SSKR shares for the given `Spec` and `Secret` using the provided
/// random number generator.
///
/// # Arguments
///
/// * `spec` - The `Spec` instance that defines the group and member thresholds.
/// * `master_secret` - The `Secret` instance to be split into shares.
/// * `random_generator` - The random number generator to use for generating
/// shares.
pub fn sskr_generate_using(
spec: &SSKRSpec,
master_secret: &SSKRSecret,
rng: &mut impl RandomNumberGenerator
) -> Result<Vec<Vec<SSKRShare>>, SSKRError> {
let shares = sskr::sskr_generate_using(spec, master_secret, rng)?;
let shares = shares
.into_iter()
.map(|group| {
group
.into_iter()
.map(|share| { SSKRShare::from_data(share) })
.collect()
})
.collect();
Ok(shares)
}
/// Combines the given SSKR shares into a `Secret`.
///
/// # Arguments
///
/// * `shares` - A slice of SSKR shares to be combined.
///
/// # Errors
///
/// Returns an error if the shares do not meet the necessary quorum of groups
/// and member shares within each group.
pub fn sskr_combine(shares: &[SSKRShare]) -> Result<SSKRSecret, SSKRError> {
let shares: Vec<Vec<u8>> = shares
.iter()
.map(|share| share.data().to_vec())
.collect();
sskr::sskr_combine(&shares)
}