Skip to content

npolevara/caesar

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A simple Caesar cipher implementation on Rust

build & run:

cargo run -r

run cipher:

  • -p prompt
  • -s shift 0-25
  • -d decrypt [optional]
cargo run -- -p "hello world" -s 3

// encrypt:
target/release/caesar -p"styled things" -s3
=> Encrypting from "styled things" to:  vwbohg wklqjv

// decrypt:
target/release/caesar -p"vwbohg wklqjv" -s3 -d
=> Decrypting from "vwbohg wklqjv" to:  styled things

About

A simple Caesar cipher implementation on Rust

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages