2017-04-29 21:14:34 +00:00
|
|
|
|
// Copyright (c) 2017 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
|
|
|
|
|
//
|
|
|
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
|
2017-07-20 19:03:15 +00:00
|
|
|
|
use try_from::TryFrom;
|
2017-05-18 22:09:29 +00:00
|
|
|
|
use std::str::FromStr;
|
2017-05-06 19:46:11 +00:00
|
|
|
|
|
2017-05-18 22:09:29 +00:00
|
|
|
|
use minidom::{Element, IntoAttributeValue};
|
2017-04-21 03:21:16 +00:00
|
|
|
|
|
|
|
|
|
use error::Error;
|
|
|
|
|
|
|
|
|
|
use ns;
|
|
|
|
|
|
2017-05-24 23:30:29 +00:00
|
|
|
|
use base64;
|
|
|
|
|
|
2017-05-18 22:09:29 +00:00
|
|
|
|
#[allow(non_camel_case_types)]
|
2017-05-29 04:14:49 +00:00
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
2017-05-18 22:09:29 +00:00
|
|
|
|
pub enum Algo {
|
|
|
|
|
Sha_1,
|
|
|
|
|
Sha_256,
|
|
|
|
|
Sha_512,
|
|
|
|
|
Sha3_256,
|
|
|
|
|
Sha3_512,
|
|
|
|
|
Blake2b_256,
|
|
|
|
|
Blake2b_512,
|
|
|
|
|
Unknown(String),
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl FromStr for Algo {
|
|
|
|
|
type Err = Error;
|
|
|
|
|
|
|
|
|
|
fn from_str(s: &str) -> Result<Algo, Error> {
|
|
|
|
|
Ok(match s {
|
|
|
|
|
"" => return Err(Error::ParseError("'algo' argument can’t be empty.")),
|
|
|
|
|
|
|
|
|
|
"sha-1" => Algo::Sha_1,
|
|
|
|
|
"sha-256" => Algo::Sha_256,
|
|
|
|
|
"sha-512" => Algo::Sha_512,
|
|
|
|
|
"sha3-256" => Algo::Sha3_256,
|
|
|
|
|
"sha3-512" => Algo::Sha3_512,
|
|
|
|
|
"blake2b-256" => Algo::Blake2b_256,
|
|
|
|
|
"blake2b-512" => Algo::Blake2b_512,
|
|
|
|
|
value => Algo::Unknown(value.to_owned()),
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-27 11:22:11 +00:00
|
|
|
|
impl From<Algo> for String {
|
|
|
|
|
fn from(algo: Algo) -> String {
|
|
|
|
|
String::from(match algo {
|
2017-05-18 22:09:29 +00:00
|
|
|
|
Algo::Sha_1 => "sha-1",
|
|
|
|
|
Algo::Sha_256 => "sha-256",
|
|
|
|
|
Algo::Sha_512 => "sha-512",
|
|
|
|
|
Algo::Sha3_256 => "sha3-256",
|
|
|
|
|
Algo::Sha3_512 => "sha3-512",
|
|
|
|
|
Algo::Blake2b_256 => "blake2b-256",
|
|
|
|
|
Algo::Blake2b_512 => "blake2b-512",
|
2017-05-27 11:22:11 +00:00
|
|
|
|
Algo::Unknown(text) => return text,
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl IntoAttributeValue for Algo {
|
|
|
|
|
fn into_attribute_value(self) -> Option<String> {
|
|
|
|
|
Some(String::from(self))
|
2017-05-18 22:09:29 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-29 04:14:49 +00:00
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
2017-04-21 03:21:16 +00:00
|
|
|
|
pub struct Hash {
|
2017-05-18 22:09:29 +00:00
|
|
|
|
pub algo: Algo,
|
2017-05-24 23:30:29 +00:00
|
|
|
|
pub hash: Vec<u8>,
|
2017-04-21 03:21:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-05-23 22:31:33 +00:00
|
|
|
|
impl TryFrom<Element> for Hash {
|
2017-07-20 19:03:15 +00:00
|
|
|
|
type Err = Error;
|
2017-05-06 19:46:11 +00:00
|
|
|
|
|
2017-05-23 22:31:33 +00:00
|
|
|
|
fn try_from(elem: Element) -> Result<Hash, Error> {
|
2017-05-06 19:46:11 +00:00
|
|
|
|
if !elem.is("hash", ns::HASHES) {
|
|
|
|
|
return Err(Error::ParseError("This is not a hash element."));
|
|
|
|
|
}
|
|
|
|
|
for _ in elem.children() {
|
|
|
|
|
return Err(Error::ParseError("Unknown child in hash element."));
|
|
|
|
|
}
|
2017-05-22 18:00:04 +00:00
|
|
|
|
let algo = get_attr!(elem, "algo", required);
|
2017-05-06 19:46:11 +00:00
|
|
|
|
let hash = match elem.text().as_ref() {
|
|
|
|
|
"" => return Err(Error::ParseError("Hash element shouldn’t be empty.")),
|
2017-05-24 23:30:29 +00:00
|
|
|
|
text => base64::decode(text)?,
|
2017-05-06 19:46:11 +00:00
|
|
|
|
};
|
|
|
|
|
Ok(Hash {
|
|
|
|
|
algo: algo,
|
|
|
|
|
hash: hash,
|
|
|
|
|
})
|
2017-04-21 03:21:16 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-23 22:31:33 +00:00
|
|
|
|
impl Into<Element> for Hash {
|
2017-05-06 19:46:11 +00:00
|
|
|
|
fn into(self) -> Element {
|
|
|
|
|
Element::builder("hash")
|
|
|
|
|
.ns(ns::HASHES)
|
2017-05-23 22:31:33 +00:00
|
|
|
|
.attr("algo", self.algo)
|
2017-05-24 23:30:29 +00:00
|
|
|
|
.append(base64::encode(&self.hash))
|
2017-05-06 19:46:11 +00:00
|
|
|
|
.build()
|
|
|
|
|
}
|
2017-04-23 17:36:12 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-04-21 03:21:16 +00:00
|
|
|
|
#[cfg(test)]
|
|
|
|
|
mod tests {
|
2017-05-06 19:46:11 +00:00
|
|
|
|
use super::*;
|
2017-04-21 03:21:16 +00:00
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_simple() {
|
|
|
|
|
let elem: Element = "<hash xmlns='urn:xmpp:hashes:2' algo='sha-256'>2XarmwTlNxDAMkvymloX3S5+VbylNrJt/l5QyPa+YoU=</hash>".parse().unwrap();
|
2017-05-23 22:31:33 +00:00
|
|
|
|
let hash = Hash::try_from(elem).unwrap();
|
2017-05-18 22:09:29 +00:00
|
|
|
|
assert_eq!(hash.algo, Algo::Sha_256);
|
2017-05-24 23:30:29 +00:00
|
|
|
|
assert_eq!(hash.hash, base64::decode("2XarmwTlNxDAMkvymloX3S5+VbylNrJt/l5QyPa+YoU=").unwrap());
|
2017-04-21 03:21:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_unknown() {
|
|
|
|
|
let elem: Element = "<replace xmlns='urn:xmpp:message-correct:0'/>".parse().unwrap();
|
2017-05-23 22:31:33 +00:00
|
|
|
|
let error = Hash::try_from(elem).unwrap_err();
|
2017-04-21 03:21:16 +00:00
|
|
|
|
let message = match error {
|
|
|
|
|
Error::ParseError(string) => string,
|
|
|
|
|
_ => panic!(),
|
|
|
|
|
};
|
|
|
|
|
assert_eq!(message, "This is not a hash element.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_invalid_child() {
|
|
|
|
|
let elem: Element = "<hash xmlns='urn:xmpp:hashes:2'><coucou/></hash>".parse().unwrap();
|
2017-05-23 22:31:33 +00:00
|
|
|
|
let error = Hash::try_from(elem).unwrap_err();
|
2017-04-21 03:21:16 +00:00
|
|
|
|
let message = match error {
|
|
|
|
|
Error::ParseError(string) => string,
|
|
|
|
|
_ => panic!(),
|
|
|
|
|
};
|
|
|
|
|
assert_eq!(message, "Unknown child in hash element.");
|
|
|
|
|
}
|
|
|
|
|
}
|