Cryptor

MIT / Apache2.0 dual licensed Travis Build Status crates.io Document

Cryptor is encryption machine corresponding to the diversity of algorithms.

Dependencies

Insert to Cargo.toml of your project. toml [dependencies] cryptor = "0.1.3" or ```console // Newest version ❯ cargo add cryptor

// Version specification ❯ cargo add cryptor@0.1.3

// If not exist on crates.io ❯ mkdir lib ❯ cd lib ❯ git clone https://github.com/atsushi130/Cryptor ❯ cd .. ❯ cargo add cryptor --path=lib/cryptor/ ```

Default crypto algorithm

Usage

Import modules rust extern crate cryptor; use cryptor::cryptor::{ Cryptor, CryptoValue, Algorithm };

Implement structure with this Algorithm trait. rust pub trait Algorithm { type V: Algorithm; fn encrypt(&mut self, character: &char) -> CryptoValue<Self::V>; fn decrypt(&mut self, character: &char) -> CryptoValue<Self::V>; }

Cryptor have member with Algorithm trait. Dependency injection your implemented structure to Cryptor. rust let mut cryptor = Cryptor::new(YourAlgorithm);

Return type of encrypt and decrypt method is CryptoValue<YourAlgorithm>. ```rust let encrypted: CryptoValue = cryptor.encrypt(&string); println!("encrypted string is {}", encrypted.text);

let decrypted: CryptoValue = cryptor.decrypt(&string); println!("decrypted string is {}", decrypted.text); ```

Run

```console ❯ cargo build ❯ cargo run

```

Test

```console ❯ cargo test

```

Change logs

v0.1.3
Defined associated function to builds new Cryptor. rust impl<T: Algorithm> Cryptor<T> { pub fn new(algorithm: T) -> Self { Cryptor { algorithm } } }

changed usage rust let mut cryptor = Cryptor::new(your_algorithm);

LICENSE

This project is dual-licensed under MIT and Apache 2.0.