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
use crate::{
decoder::{Decode, Decoder},
encoder::{Encode, Encoder},
Algorithm, EcdsaCurve, Error, Result,
};
use core::fmt;
use sec1::consts::{U32, U48, U66};
#[cfg_attr(docsrs, doc(cfg(feature = "ecdsa")))]
#[derive(Copy, Clone, Debug, Eq, PartialEq, PartialOrd, Ord)]
pub enum EcdsaPublicKey {
NistP256(sec1::EncodedPoint<U32>),
NistP384(sec1::EncodedPoint<U48>),
NistP521(sec1::EncodedPoint<U66>),
}
impl EcdsaPublicKey {
const MAX_SIZE: usize = 133;
pub fn from_sec1_bytes(bytes: &[u8]) -> Result<Self> {
match bytes {
[tag, rest @ ..] => {
let point_size = match sec1::point::Tag::from_u8(*tag)? {
sec1::point::Tag::CompressedEvenY | sec1::point::Tag::CompressedOddY => {
rest.len()
}
sec1::point::Tag::Uncompressed => rest.len() / 2,
_ => return Err(Error::Algorithm),
};
match point_size {
32 => Ok(Self::NistP256(sec1::EncodedPoint::from_bytes(bytes)?)),
48 => Ok(Self::NistP384(sec1::EncodedPoint::from_bytes(bytes)?)),
66 => Ok(Self::NistP521(sec1::EncodedPoint::from_bytes(bytes)?)),
_ => Err(Error::Length),
}
}
_ => Err(Error::Length),
}
}
pub fn as_sec1_bytes(&self) -> &[u8] {
match self {
EcdsaPublicKey::NistP256(point) => point.as_bytes(),
EcdsaPublicKey::NistP384(point) => point.as_bytes(),
EcdsaPublicKey::NistP521(point) => point.as_bytes(),
}
}
pub fn algorithm(&self) -> Algorithm {
Algorithm::Ecdsa(self.curve())
}
pub fn curve(&self) -> EcdsaCurve {
match self {
EcdsaPublicKey::NistP256(_) => EcdsaCurve::NistP256,
EcdsaPublicKey::NistP384(_) => EcdsaCurve::NistP384,
EcdsaPublicKey::NistP521(_) => EcdsaCurve::NistP521,
}
}
}
impl AsRef<[u8]> for EcdsaPublicKey {
fn as_ref(&self) -> &[u8] {
self.as_sec1_bytes()
}
}
impl Decode for EcdsaPublicKey {
fn decode(decoder: &mut impl Decoder) -> Result<Self> {
let curve = EcdsaCurve::decode(decoder)?;
let mut buf = [0u8; Self::MAX_SIZE];
let key = Self::from_sec1_bytes(decoder.decode_byte_slice(&mut buf)?)?;
if key.curve() == curve {
Ok(key)
} else {
Err(Error::Algorithm)
}
}
}
impl Encode for EcdsaPublicKey {
fn encoded_len(&self) -> Result<usize> {
Ok(4 + self.curve().encoded_len()? + self.as_ref().len())
}
fn encode(&self, encoder: &mut impl Encoder) -> Result<()> {
self.curve().encode(encoder)?;
encoder.encode_byte_slice(self.as_ref())
}
}
impl fmt::Display for EcdsaPublicKey {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{:X}", self)
}
}
impl fmt::LowerHex for EcdsaPublicKey {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
for byte in self.as_sec1_bytes() {
write!(f, "{:02x}", byte)?;
}
Ok(())
}
}
impl fmt::UpperHex for EcdsaPublicKey {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
for byte in self.as_sec1_bytes() {
write!(f, "{:02X}", byte)?;
}
Ok(())
}
}