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
use crate::{
asn1::Any, ByteSlice, DecodeValue, Decoder, EncodeValue, Encoder, Error, ErrorKind, FixedTag,
Length, OrdIsValueOrd, Result, Tag,
};
const TRUE_OCTET: u8 = 0b11111111;
const FALSE_OCTET: u8 = 0b00000000;
impl<'a> DecodeValue<'a> for bool {
fn decode_value(decoder: &mut Decoder<'a>, length: Length) -> Result<Self> {
if length != Length::ONE {
return Err(decoder.error(ErrorKind::Length { tag: Self::TAG }));
}
match decoder.byte()? {
FALSE_OCTET => Ok(false),
TRUE_OCTET => Ok(true),
_ => Err(Self::TAG.non_canonical_error()),
}
}
}
impl EncodeValue for bool {
fn value_len(&self) -> Result<Length> {
Ok(Length::ONE)
}
fn encode_value(&self, encoder: &mut Encoder<'_>) -> Result<()> {
encoder.byte(if *self { TRUE_OCTET } else { FALSE_OCTET })
}
}
impl FixedTag for bool {
const TAG: Tag = Tag::Boolean;
}
impl OrdIsValueOrd for bool {}
impl From<bool> for Any<'static> {
fn from(value: bool) -> Any<'static> {
let value = ByteSlice::from(match value {
false => &[FALSE_OCTET],
true => &[TRUE_OCTET],
});
Any::from_tag_and_value(Tag::Boolean, value)
}
}
impl TryFrom<Any<'_>> for bool {
type Error = Error;
fn try_from(any: Any<'_>) -> Result<bool> {
any.try_into()
}
}
#[cfg(test)]
mod tests {
use crate::{Decodable, Encodable};
#[test]
fn decode() {
assert_eq!(true, bool::from_der(&[0x01, 0x01, 0xFF]).unwrap());
assert_eq!(false, bool::from_der(&[0x01, 0x01, 0x00]).unwrap());
}
#[test]
fn encode() {
let mut buffer = [0u8; 3];
assert_eq!(
&[0x01, 0x01, 0xFF],
true.encode_to_slice(&mut buffer).unwrap()
);
assert_eq!(
&[0x01, 0x01, 0x00],
false.encode_to_slice(&mut buffer).unwrap()
);
}
#[test]
fn reject_non_canonical() {
assert!(bool::from_der(&[0x01, 0x01, 0x01]).is_err());
}
}