|
@@ -112,16 +112,25 @@ impl Id {
|
|
|
id: bytes[1..].try_into()?,
|
|
|
})
|
|
|
}
|
|
|
+
|
|
|
+ /// [`Id`] as bytes
|
|
|
+ pub fn as_bytes(&self) -> [u8; Self::BYTELEN + 1] {
|
|
|
+ let mut bytes = [0u8; Self::BYTELEN + 1];
|
|
|
+ bytes[0] = self.version.to_byte();
|
|
|
+ bytes[1..].copy_from_slice(&self.id);
|
|
|
+ bytes
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
-impl TryFrom<Id> for u64 {
|
|
|
- type Error = Error;
|
|
|
- fn try_from(value: Id) -> Result<Self, Self::Error> {
|
|
|
- let hex_bytes: [u8; 8] = value.to_bytes().try_into().map_err(|_| Error::Length)?;
|
|
|
+// Used to generate a compressed unique identifier as part of the NUT13 spec
|
|
|
+// This is a one-way function
|
|
|
+impl From<Id> for u32 {
|
|
|
+ fn from(value: Id) -> Self {
|
|
|
+ let hex_bytes: [u8; 8] = value.as_bytes();
|
|
|
|
|
|
let int = u64::from_be_bytes(hex_bytes);
|
|
|
|
|
|
- Ok(int % (2_u64.pow(31) - 1))
|
|
|
+ (int % (2_u64.pow(31) - 1)) as u32
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -490,11 +499,18 @@ mod test {
|
|
|
fn test_to_int() {
|
|
|
let id = Id::from_str("009a1f293253e41e").unwrap();
|
|
|
|
|
|
- let id_int = u64::try_from(id).unwrap();
|
|
|
+ let id_int = u32::from(id);
|
|
|
assert_eq!(864559728, id_int)
|
|
|
}
|
|
|
|
|
|
#[test]
|
|
|
+ fn test_id_from_invalid_byte_length() {
|
|
|
+ let three_bytes = [0x01, 0x02, 0x03];
|
|
|
+ let result = Id::from_bytes(&three_bytes);
|
|
|
+ assert!(result.is_err(), "Expected an invalid byte length error");
|
|
|
+ }
|
|
|
+
|
|
|
+ #[test]
|
|
|
fn test_keyset_bytes() {
|
|
|
let id = Id::from_str("009a1f293253e41e").unwrap();
|
|
|
|