| Crates.io | encrypto_aes |
| lib.rs | encrypto_aes |
| version | 0.3.0 |
| created_at | 2022-11-24 05:30:53.790389+00 |
| updated_at | 2022-11-28 17:26:41.750767+00 |
| description | stunning-encrypto is cross platform end-to-end encryption dependency. And this is AES extension of the same |
| homepage | https://www.ssdd.dev/zot/crypto/aes |
| repository | https://github.com/zotcrypto/encrypto-aes |
| max_upload_size | |
| id | 722007 |
| size | 65,090 |
End to End encryption (AES) for multiple languages (cross-platform) with CBC
| Icon | Item |
|---|---|
| 🥳 | Upcoming |
| ⚖️ | License |
| 📝 | ChangeLog |
encrypto_aes = latest
let msg = b"abc";
let mut c = EncryptoAES::init(256).unwrap();
let enc = c.encrypt_cbc(msg);
let dec = c.decrypt_cbc(enc.clone());
assert_eq!(&*msg.as_slice(), dec);
let enc = c.encrypt_cfb128(msg);
let dec = c.decrypt_cfb128(zenc.clone());
assert_eq!(&*msg.as_slice(), dec);
| Supported Languages | Status |
|---|---|
| Flutter | Completed and available here |
| Java | Completed and available here |
| JavaScript | Completed and available here |