mirror of https://github.com/breard-r/acmed.git
Rodolphe Breard
4 years ago
6 changed files with 198 additions and 19 deletions
-
38acme_common/src/crypto.rs
-
16acme_common/src/crypto/openssl_hash.rs
-
14acme_common/src/crypto/openssl_keys.rs
-
1acme_common/src/tests.rs
-
140acme_common/src/tests/hash.rs
-
8acmed/src/acme_proto/structs/authorization.rs
@ -1,7 +1,13 @@ |
|||
pub fn sha256(data: &[u8]) -> Vec<u8> {
|
|||
openssl::sha::sha256(data).to_vec()
|
|||
}
|
|||
use openssl::sha::{sha256, sha384, sha512};
|
|||
|
|||
pub type HashFunction = super::BaseHashFunction;
|
|||
|
|||
pub fn sha384(data: &[u8]) -> Vec<u8> {
|
|||
openssl::sha::sha384(data).to_vec()
|
|||
impl HashFunction {
|
|||
pub fn hash(&self, data: &[u8]) -> Vec<u8> {
|
|||
match self {
|
|||
HashFunction::Sha256 => sha256(data).to_vec(),
|
|||
HashFunction::Sha384 => sha384(data).to_vec(),
|
|||
HashFunction::Sha512 => sha512(data).to_vec(),
|
|||
}
|
|||
}
|
|||
}
|
@ -1,4 +1,5 @@ |
|||
mod certificate;
|
|||
mod crypto_keys;
|
|||
mod hash;
|
|||
mod idna;
|
|||
mod jws_signature_algorithm;
|
@ -0,0 +1,140 @@ |
|||
use crate::crypto::HashFunction;
|
|||
|
|||
#[test]
|
|||
fn test_hash_from_str() {
|
|||
let test_vectors = vec![
|
|||
("sha256", HashFunction::Sha256),
|
|||
("Sha256", HashFunction::Sha256),
|
|||
("sha-256", HashFunction::Sha256),
|
|||
("SHA_256", HashFunction::Sha256),
|
|||
("sha384", HashFunction::Sha384),
|
|||
("Sha-512", HashFunction::Sha512),
|
|||
];
|
|||
for (s, ref_h) in test_vectors {
|
|||
let h: HashFunction = s.parse().unwrap();
|
|||
assert_eq!(h, ref_h);
|
|||
}
|
|||
}
|
|||
|
|||
#[test]
|
|||
fn test_hash_from_invalid_str() {
|
|||
let test_vectors = vec!["sha42", "sha", "", "plop"];
|
|||
for s in test_vectors {
|
|||
let h = s.parse::<HashFunction>();
|
|||
assert!(h.is_err());
|
|||
}
|
|||
}
|
|||
|
|||
#[test]
|
|||
fn test_hash_sha256() {
|
|||
let test_vectors = vec![
|
|||
(
|
|||
"Hello World!".as_bytes(),
|
|||
vec![
|
|||
127, 131, 177, 101, 127, 241, 252, 83, 185, 45, 193, 129, 72, 161, 214, 93, 252,
|
|||
45, 75, 31, 163, 214, 119, 40, 74, 221, 210, 0, 18, 109, 144, 105,
|
|||
],
|
|||
),
|
|||
(
|
|||
&[],
|
|||
vec![
|
|||
227, 176, 196, 66, 152, 252, 28, 20, 154, 251, 244, 200, 153, 111, 185, 36, 39,
|
|||
174, 65, 228, 100, 155, 147, 76, 164, 149, 153, 27, 120, 82, 184, 85,
|
|||
],
|
|||
),
|
|||
(
|
|||
&[
|
|||
194, 43, 6, 43, 252, 50, 206, 26, 240, 105, 85, 119, 40, 153, 213, 123, 158, 59, 8,
|
|||
45, 114,
|
|||
],
|
|||
vec![
|
|||
65, 72, 199, 76, 128, 174, 196, 223, 91, 235, 87, 119, 200, 212, 133, 13, 219, 223,
|
|||
60, 4, 73, 70, 65, 41, 226, 83, 221, 107, 112, 29, 205, 28,
|
|||
],
|
|||
),
|
|||
];
|
|||
for (data, expected) in test_vectors {
|
|||
let h = HashFunction::Sha256;
|
|||
let res = h.hash(data);
|
|||
assert_eq!(res, expected);
|
|||
}
|
|||
}
|
|||
|
|||
#[test]
|
|||
fn test_hash_sha384() {
|
|||
let test_vectors = vec![
|
|||
(
|
|||
"Hello World!".as_bytes(),
|
|||
vec![
|
|||
191, 215, 108, 14, 187, 208, 6, 254, 229, 131, 65, 5, 71, 193, 136, 123, 2, 146,
|
|||
190, 118, 213, 130, 217, 108, 36, 45, 42, 121, 39, 35, 227, 253, 111, 208, 97, 249,
|
|||
213, 207, 209, 59, 143, 150, 19, 88, 230, 173, 186, 74,
|
|||
],
|
|||
),
|
|||
(
|
|||
&[],
|
|||
vec![
|
|||
56, 176, 96, 167, 81, 172, 150, 56, 76, 217, 50, 126, 177, 177, 227, 106, 33, 253,
|
|||
183, 17, 20, 190, 7, 67, 76, 12, 199, 191, 99, 246, 225, 218, 39, 78, 222, 191,
|
|||
231, 111, 101, 251, 213, 26, 210, 241, 72, 152, 185, 91,
|
|||
],
|
|||
),
|
|||
(
|
|||
&[
|
|||
194, 43, 6, 43, 252, 50, 206, 26, 240, 105, 85, 119, 40, 153, 213, 123, 158, 59, 8,
|
|||
45, 114,
|
|||
],
|
|||
vec![
|
|||
170, 126, 84, 2, 141, 91, 106, 70, 80, 53, 98, 101, 184, 3, 34, 146, 130, 238, 146,
|
|||
221, 113, 197, 154, 91, 4, 208, 229, 15, 8, 179, 51, 29, 224, 200, 187, 127, 9,
|
|||
243, 29, 171, 189, 124, 60, 39, 3, 74, 171, 156,
|
|||
],
|
|||
),
|
|||
];
|
|||
for (data, expected) in test_vectors {
|
|||
let h = HashFunction::Sha384;
|
|||
let res = h.hash(data);
|
|||
assert_eq!(res, expected);
|
|||
}
|
|||
}
|
|||
|
|||
#[test]
|
|||
fn test_hash_sha512() {
|
|||
let test_vectors = vec![
|
|||
(
|
|||
"Hello World!".as_bytes(),
|
|||
vec![
|
|||
134, 24, 68, 214, 112, 78, 133, 115, 254, 195, 77, 150, 126, 32, 188, 254, 243,
|
|||
212, 36, 207, 72, 190, 4, 230, 220, 8, 242, 189, 88, 199, 41, 116, 51, 113, 1, 94,
|
|||
173, 137, 28, 195, 207, 28, 157, 52, 180, 146, 100, 181, 16, 117, 27, 31, 249, 229,
|
|||
55, 147, 123, 196, 107, 93, 111, 244, 236, 200,
|
|||
],
|
|||
),
|
|||
(
|
|||
&[],
|
|||
vec![
|
|||
207, 131, 225, 53, 126, 239, 184, 189, 241, 84, 40, 80, 214, 109, 128, 7, 214, 32,
|
|||
228, 5, 11, 87, 21, 220, 131, 244, 169, 33, 211, 108, 233, 206, 71, 208, 209, 60,
|
|||
93, 133, 242, 176, 255, 131, 24, 210, 135, 126, 236, 47, 99, 185, 49, 189, 71, 65,
|
|||
122, 129, 165, 56, 50, 122, 249, 39, 218, 62,
|
|||
],
|
|||
),
|
|||
(
|
|||
&[
|
|||
194, 43, 6, 43, 252, 50, 206, 26, 240, 105, 85, 119, 40, 153, 213, 123, 158, 59, 8,
|
|||
45, 114,
|
|||
],
|
|||
vec![
|
|||
58, 93, 210, 174, 119, 179, 246, 25, 14, 148, 182, 109, 28, 14, 16, 80, 45, 231,
|
|||
104, 169, 130, 43, 39, 221, 12, 112, 85, 159, 123, 6, 227, 35, 61, 24, 158, 190,
|
|||
162, 11, 247, 204, 98, 41, 242, 5, 52, 116, 149, 220, 124, 82, 159, 181, 74, 210,
|
|||
85, 190, 59, 130, 209, 8, 181, 247, 192, 65,
|
|||
],
|
|||
),
|
|||
];
|
|||
for (data, expected) in test_vectors {
|
|||
let h = HashFunction::Sha512;
|
|||
let res = h.hash(data);
|
|||
assert_eq!(res, expected);
|
|||
}
|
|||
}
|
Write
Preview
Loading…
Cancel
Save
Reference in new issue