Crates.io | bbangcat_encryption |
lib.rs | bbangcat_encryption |
version | 0.1.1 |
source | src |
created_at | 2021-07-27 07:17:34.882505 |
updated_at | 2021-07-27 07:24:22.195393 |
description | BBang Cat Encryption |
homepage | |
repository | https://github.com/fn79/BBangCatEncryption |
max_upload_size | |
id | 427858 |
size | 7,299 |
빵켓 암호화입니다.
간단하게 만들어봤습니다.
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!
}