About Project
End to End encryption (AES) for multiple languages (cross-platform) with CBC
Icon | Item |
---|---|
|
Upcoming |
|
License |
|
ChangeLog |
Usage (rust)
Implementation
Cargo
encrypto_aes =
latest
RSA
website
Documentation will be published soon at ourYou can try:
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);
here if the documentation isn't uploaded in long time
Please raise an issueUpcoming
Supported Languages | Status |
---|---|
Flutter | Priority: Less |
Java | Priority: Very high |
JavaScript | Priority: High |
- Amazing encrypto with prevention against man in the middle attacks and AES-CBC with RSA key exchange for multiple language