Create an implementation of the rotational cipher, also sometimes called the Caesar cipher.
The Caesar cipher is a simple shift cipher that relies on
transposing all the letters in the alphabet using an integer key
between 0 and 26. Using a key of 0 or 26 will always yield
the same output due to modular arithmetic. The letter is shifted
for as many values as the value of the key.
The general notation for rotational ciphers is ROT + <key>.
The most commonly used rotational cipher is ROT13.
A ROT13 on the Latin alphabet would be as follows:
Plain: abcdefghijklmnopqrstuvwxyz
Cipher: nopqrstuvwxyzabcdefghijklm
It is stronger than the Atbash cipher because it has 27 possible keys, and 25 usable keys.
Ciphertext is written out in the same formatting as the input including spaces and punctuation.
- ROT5
omggivestrl - ROT0
cgivesc - ROT26
CoolgivesCool - ROT13
The quick brown fox jumps over the lazy dog.givesGur dhvpx oebja sbk whzcf bire gur ynml qbt. - ROT13
Gur dhvpx oebja sbk whzcf bire gur ynml qbt.givesThe quick brown fox jumps over the lazy dog.
Refer to the exercism help page for Rust installation and learning resources.
Execute the tests with:
$ cargo testAll but the first test have been ignored. After you get the first test to
pass, open the tests source file which is located in the tests directory
and remove the #[ignore] flag from the next test and get the tests to pass
again. Each separate test is a function with #[test] flag above it.
Continue, until you pass every test.
If you wish to run all ignored tests without editing the tests source file, use:
$ cargo test -- --ignoredTo run a specific test, for example some_test, you can use:
$ cargo test some_testIf the specific test is ignored use:
$ cargo test some_test -- --ignoredTo learn more about Rust tests refer to the online test documentation
Make sure to read the Modules chapter if you haven't already, it will help you with organizing your files.
After you have solved the exercise, please consider using the additional utilities, described in the installation guide, to further refine your final solution.
To format your solution, inside the solution directory use
cargo fmtTo see, if your solution contains some common ineffective use cases, inside the solution directory use
cargo clippy --all-targetsGenerally you should submit all files in which you implemented your solution (src/lib.rs in most cases). If you are using any external crates, please consider submitting the Cargo.toml file. This will make the review process faster and clearer.
The exercism/rust repository on GitHub is the home for all of the Rust exercises. If you have feedback about an exercise, or want to help implement new exercises, head over there and create an issue. Members of the rust track team are happy to help!
If you want to know more about Exercism, take a look at the contribution guide.
Wikipedia https://en.wikipedia.org/wiki/Caesar_cipher
It's possible to submit an incomplete solution so you can see how others have completed the exercise.