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
```
rust
let encrypto = Encrypto::init(1024);
```rust let publickey = encrypto.getpublickey(); //returns PublicKey struct let msg = "Alo".tostring(); // sample message to be encrypted let enc = Encrypto::encryptfromstring(msg.clone(), public_key.clone()); // returns encrypted msg as base64 string
Or
let encfrombytes = Encrypto::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 |