decode

Function decode 

Source
pub fn decode(input: &str) -> String
Expand description

Decoding the invert representation to normal string

ยงExamples

use crypto_invert::{decode, encode};

let r1 = "i love you!";
let r2 = "I LOVE YOU!";
assert_eq!(decode(&encode(r1)), r1);
assert_eq!(decode(&encode(r2)), r2);