About Project

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 |

Usage (rust)

Implementation

Cargo

xml encrypto_rust = "0.2.0"

RSA

RSA Init

rust let encrypto = EncryptoRSA::init(1024);

RSA Encrypt

```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

```

RSA Decrypt

```rust let dec = encrypto.decryptasstring(enc); // returns decoded msg as string

Or

let decfrombytes = encrypto.decryptasbytes(encfrombytes); // returns bytes as Vec ```

DES

Unavailable for rust as of now

Upcoming

| Supported Languages | Status | |---------------------|-----------------------------------------------------------------------------------------------------------| | Flutter | Completed and available here | | Java | Completed and available here | | JavaScript | Completed and available here |

License

Click here