2 releases
0.1.1 | Jul 27, 2021 |
---|---|
0.1.0 | Jul 27, 2021 |
#82 in #cat
7KB
148 lines
BBang Cat Encryption
빵켓 암호화입니다.
간단하게 만들어봤습니다.
사용법
Cargo.toml
:
[dependencies]
bbangcat_encryption = "0.1.0"
main.rs
:
use bbangcat_encryption::bce;
fn main() {
println!("{}", bce::to_bce::new("Hello, World!")); // 뿢빽콋콋컜랰 쾛컜뿅콋뺗렾
println!("{}", bce::to_str::new("뿢빽콋콋컜랰 쾛컜뿅콋뺗렾")); // Hello, World!
}