ecaps2: Add a TODO about changing algo into an enum.

This commit is contained in:
Emmanuel Gil Peyrot 2017-04-21 01:30:29 +01:00
parent 3209b04a50
commit 79c691e1c0

View file

@ -81,8 +81,9 @@ pub fn convert_element(root: &Element) -> Result<Vec<u8>, Error> {
Ok(final_string)
}
// TODO: make algo into an enum.
pub fn hash_ecaps2(data: &[u8], algo: &str) -> String {
match algo.as_ref() {
match algo {
"sha-256" => {
let mut hasher = Sha256::default();
hasher.input(data);