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
use super::client::Keypair;
use crate::{
utils, ClientFullId, ClientPublicId, Ed25519Digest, Error, PublicKey, Signature, XorName,
};
use multibase::Decodable;
use rand::{CryptoRng, Rng};
use serde::{Deserialize, Serialize};
use std::fmt::{self, Debug, Display, Formatter};
use threshold_crypto::{SecretKey as BlsSecretKey, SecretKeyShare as BlsSecretKeyShare};
#[derive(Serialize, Deserialize)]
pub struct FullId {
keypair: Keypair,
public_id: PublicId,
}
impl FullId {
pub fn new_ed25519<T: CryptoRng + Rng>(rng: &mut T, owner: ClientPublicId) -> Self {
Self::new(ClientFullId::new_ed25519(rng), owner)
}
pub fn new_bls<T: CryptoRng + Rng>(rng: &mut T, owner: ClientPublicId) -> Self {
Self::new(ClientFullId::new_bls(rng), owner)
}
pub fn new_bls_share(bls_secret_key_share: BlsSecretKeyShare, owner: ClientPublicId) -> Self {
Self::new(ClientFullId::new_bls_share(bls_secret_key_share), owner)
}
fn new(new_id: ClientFullId, owner: ClientPublicId) -> Self {
let public_id = PublicId {
public_key: *new_id.public_id().public_key(),
owner,
};
Self {
keypair: new_id.keypair,
public_id,
}
}
pub fn sign<T: AsRef<[u8]>>(&self, data: T) -> Signature {
match &self.keypair {
Keypair::Ed25519(keys) => Signature::Ed25519(keys.sign::<Ed25519Digest>(data.as_ref())),
Keypair::Bls(keys) => Signature::Bls(keys.secret.inner().sign(data)),
Keypair::BlsShare(keys) => Signature::BlsShare(keys.secret.inner().sign(data)),
}
}
pub fn public_id(&self) -> &PublicId {
&self.public_id
}
#[doc(hidden)]
pub fn with_keys(bls_sk: BlsSecretKey, owner: PublicKey) -> Self {
Self::new(
ClientFullId::with_bls_key(bls_sk),
ClientPublicId::new(XorName::from(owner), owner),
)
}
}
#[derive(Clone, Eq, PartialEq, Serialize, Deserialize, PartialOrd, Ord, Hash)]
pub struct PublicId {
public_key: PublicKey,
owner: ClientPublicId,
}
impl PublicId {
pub fn owner_name(&self) -> &XorName {
self.owner.name()
}
pub fn public_key(&self) -> &PublicKey {
&self.public_key
}
pub fn owner(&self) -> &ClientPublicId {
&self.owner
}
pub fn encode_to_zbase32(&self) -> String {
utils::encode(&self)
}
pub fn decode_from_zbase32<T: Decodable>(encoded: T) -> Result<Self, Error> {
utils::decode(encoded)
}
}
impl Debug for PublicId {
fn fmt(&self, formatter: &mut Formatter) -> fmt::Result {
write!(
formatter,
"App({:?}, owner: {:?})",
self.public_key,
self.owner.public_key()
)
}
}
impl Display for PublicId {
fn fmt(&self, formatter: &mut Formatter) -> fmt::Result {
Debug::fmt(self, formatter)
}
}