cipher_blend 0.1.1

A simple cipher blend
Documentation
  • Coverage
  • 66.67%
    2 out of 3 items documented2 out of 2 items with examples
  • Size
  • Source code size: 4.01 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.07 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • arferreira/cipher_blend
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • arferreira

Cipher Blend

Build Status Crates.io License

Cipher Blend is a Rust library for simple Caesar cipher encryption and decryption.

Features

  • Encrypt messages using the Caesar cipher algorithm.
  • Decrypt messages using the Caesar cipher algorithm.

Installation

Add the following line to your Cargo.toml file:

[dependencies]
cipher_blend = "0.1.0"

Usage

use cipher_blend::{encrypt, decrypt};

fn main() {
    let original_message = "Hello, Rust!";
    let shift = 3;

    // Encrypt
    let encrypted_message = encrypt(original_message, shift);
    println!("Encrypted: {}", encrypted_message);

    // Decrypt
    let decrypted_message = decrypt(&encrypted_message, shift);
    println!("Decrypted: {}", decrypted_message);
}

Contributing

If you find any issues or have suggestions for improvement, feel free to open an issue or submit a pull request.

License

This crate is distributed under the terms of the MIT License.