Add a configuration file + crypto module interface
[rup.git] / src / crypto.rs
1
2 pub fn encrypt(key: &str, plain_text: &str) -> String {
3 String::new()
4 }
5
6 pub fn decrypt(key: &str, cypher_text: &str) -> Option<String> {
7
8 println!("cypher: {}", cypher_text);
9 Some(String::new())
10 }