End to End encryption (RSA e2ee) for multiple languages (cross-platform) and Value password protection (DES encryption) specially for local file encryption!
| Icon | Item | |:----:|:-----------------------------:| | 🥳 | Upcoming | | ⚖️ | License | | 📝 | ChangeLog |
xml
encrypto_rust = "0.2.1"
rust
let encrypto = EncryptoRSA::init(1024);
```rust let publickey = encrypto.getpublickey(); //returns PublicKey struct let msg = "Alo".tostring(); // sample message to be encrypted let enc = e.encryptfromstring(msg.clone(), public_key.clone()); // returns encrypted msg as base64 string
Or
let encfrombytes = e.encryptfrombytes(bytes, public_key); // returns encrypted bytes as base64 string
```
```rust let dec = encrypto.decryptasstring(enc); // returns decoded msg as string
Or
let decfrombytes = encrypto.decryptasbytes(encfrombytes); // returns bytes as Vec
| Supported Languages | Status | |---------------------|-----------------------------------------------------------------------------------------------------------| | Flutter | Completed and available here | | Java | Completed and available here | | JavaScript | Completed and available here |