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
|
use crate::errors::Error;
use crate::version::private::Version;
use alloc::vec::Vec;
use core::fmt::Debug;
use core::marker::PhantomData;
/// A type `T` that can be generated for a given version `V`.
pub trait Generate<T, V: Version> {
/// Generate `T`.
fn generate() -> Result<T, Error>;
}
#[derive(Clone)]
/// A symmetric key used for `.local` tokens, given a version `V`.
pub struct SymmetricKey<V> {
pub(crate) bytes: Vec<u8>,
pub(crate) phantom: PhantomData<V>,
}
impl<V: Version> SymmetricKey<V> {
/// Create a `SymmetricKey` from `bytes`.
pub fn from(bytes: &[u8]) -> Result<Self, Error> {
V::validate_local_key(bytes)?;
Ok(Self {
bytes: bytes.to_vec(),
phantom: PhantomData,
})
}
/// Return this as a byte-slice.
pub fn as_bytes(&self) -> &[u8] {
self.bytes.as_slice()
}
}
impl<V> Drop for SymmetricKey<V> {
fn drop(&mut self) {
use zeroize::Zeroize;
self.bytes.iter_mut().zeroize();
}
}
impl<V> Debug for SymmetricKey<V> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "SymmetricKey {{***OMITTED***}}")
}
}
impl<V: Version> PartialEq<SymmetricKey<V>> for SymmetricKey<V> {
fn eq(&self, other: &SymmetricKey<V>) -> bool {
use subtle::ConstantTimeEq;
self.as_bytes().ct_eq(other.as_bytes()).into()
}
}
#[derive(Clone)]
/// An asymmetric secret key used for `.public` tokens, given a version `V`.
///
/// In case of Ed25519, which is used in V2 and V4, this is the seed concatenated with the public key.
pub struct AsymmetricSecretKey<V> {
pub(crate) bytes: Vec<u8>,
pub(crate) phantom: PhantomData<V>,
}
impl<V: Version> AsymmetricSecretKey<V> {
/// Create a `AsymmetricSecretKey` from `bytes`.
///
/// __PANIC__: If the version is V2 or V4, a panic will occur if an all-zero
/// secret seed is used.
pub fn from(bytes: &[u8]) -> Result<Self, Error> {
V::validate_secret_key(bytes)?;
Ok(Self {
bytes: bytes.to_vec(),
phantom: PhantomData,
})
}
/// Return this as a byte-slice.
pub fn as_bytes(&self) -> &[u8] {
self.bytes.as_slice()
}
}
impl<V> Drop for AsymmetricSecretKey<V> {
fn drop(&mut self) {
use zeroize::Zeroize;
self.bytes.iter_mut().zeroize();
}
}
impl<V> Debug for AsymmetricSecretKey<V> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "AsymmetricSecretKey {{***OMITTED***}}")
}
}
impl<V: Version> PartialEq<AsymmetricSecretKey<V>> for AsymmetricSecretKey<V> {
fn eq(&self, other: &AsymmetricSecretKey<V>) -> bool {
use subtle::ConstantTimeEq;
self.as_bytes().ct_eq(other.as_bytes()).into()
}
}
#[derive(Debug, Clone)]
/// An asymmetric public key used for `.public` tokens, given a version `V`.
pub struct AsymmetricPublicKey<V> {
pub(crate) bytes: Vec<u8>,
pub(crate) phantom: PhantomData<V>,
}
impl<V: Version> AsymmetricPublicKey<V> {
/// Create a `AsymmetricPublicKey` from `bytes`.
pub fn from(bytes: &[u8]) -> Result<Self, Error> {
V::validate_public_key(bytes)?;
Ok(Self {
bytes: bytes.to_vec(),
phantom: PhantomData,
})
}
/// Return this as a byte-slice.
pub fn as_bytes(&self) -> &[u8] {
self.bytes.as_slice()
}
}
impl<V: Version> PartialEq<AsymmetricPublicKey<V>> for AsymmetricPublicKey<V> {
fn eq(&self, other: &AsymmetricPublicKey<V>) -> bool {
use subtle::ConstantTimeEq;
self.as_bytes().ct_eq(other.as_bytes()).into()
}
}
#[derive(Debug, Clone)]
/// A keypair of an [`AsymmetricSecretKey`] and its corresponding [`AsymmetricPublicKey`].
pub struct AsymmetricKeyPair<V> {
/// The [`AsymmetricSecretKey`].
pub public: AsymmetricPublicKey<V>,
/// The [`AsymmetricPublicKey`].
pub secret: AsymmetricSecretKey<V>,
}
|