1
0
Fork 0
mirror of https://github.com/sile/hls_m3u8.git synced 2024-05-23 10:48:47 +00:00
hls_m3u8/src/types/encryption_method.rs
2019-09-06 13:46:21 +02:00

69 lines
1.8 KiB
Rust

use crate::{Error, ErrorKind, Result};
use std::fmt;
use std::str::{self, FromStr};
/// Encryption method.
///
/// See: [4.3.2.4. EXT-X-KEY]
///
/// [4.3.2.4. EXT-X-KEY]: https://tools.ietf.org/html/rfc8216#section-4.3.2.4
#[allow(missing_docs)]
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum EncryptionMethod {
Aes128,
SampleAes,
}
impl fmt::Display for EncryptionMethod {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match *self {
EncryptionMethod::Aes128 => "AES-128".fmt(f),
EncryptionMethod::SampleAes => "SAMPLE-AES".fmt(f),
}
}
}
impl FromStr for EncryptionMethod {
type Err = Error;
fn from_str(s: &str) -> Result<Self> {
match s {
"AES-128" => Ok(EncryptionMethod::Aes128),
"SAMPLE-AES" => Ok(EncryptionMethod::SampleAes),
_ => track_panic!(
ErrorKind::InvalidInput,
"Unknown encryption method: {:?}",
s
),
}
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_display() {
let encryption_method = EncryptionMethod::Aes128;
assert_eq!(encryption_method.to_string(), "AES-128".to_string());
let encryption_method = EncryptionMethod::SampleAes;
assert_eq!(encryption_method.to_string(), "SAMPLE-AES".to_string());
}
#[test]
fn test_parse() {
let encryption_method = EncryptionMethod::Aes128;
assert_eq!(
encryption_method,
"AES-128".parse::<EncryptionMethod>().unwrap()
);
let encryption_method = EncryptionMethod::SampleAes;
assert_eq!(
encryption_method,
"SAMPLE-AES".parse::<EncryptionMethod>().unwrap()
);
}
}