Sha256: 489514dd2c8cacbc4e0c3e0f248f1d922da2d3122f1bfd04dc85ddcea025f5a5

Contents?: true

Size: 1.81 KB

Versions: 47

Compression:

Stored size: 1.81 KB

Contents

# Atbash Cipher

Create an implementation of the atbash cipher, an ancient encryption system created in the Middle East.

The Atbash cipher is a simple substitution cipher that relies on
transposing all the letters in the alphabet such that the resulting
alphabet is backwards. The first letter is replaced with the last
letter, the second with the second-last, and so on.

An Atbash cipher for the Latin alphabet would be as follows:

```plain
Plain:  abcdefghijklmnopqrstuvwxyz
Cipher: zyxwvutsrqponmlkjihgfedcba
```

It is a very weak cipher because it only has one possible key, and it is
a simple monoalphabetic substitution cipher. However, this may not have
been an issue in the cipher's time.

Ciphertext is written out in groups of fixed length, the traditional group size
being 5 letters, and punctuation is excluded. This is to make it harder to guess
things based on word boundaries.

## Examples
- Encoding `test` gives `gvhg`
- Decoding `gvhg` gives `test`
- Decoding `gsvjf rxpyi ldmul cqfnk hlevi gsvoz abwlt` gives `thequickbrownfoxjumpsoverthelazydog`

## Resources

Remember to check out the Perl 6 [documentation](https://docs.perl6.org/) and
[resources](https://perl6.org/resources/) pages for information, tips, and
examples if you get stuck.

## Running the tests

There is a test script included with the exercise; a file with the extension
`.t`. You can run the test script for the exercise by executing the command
`prove . --exec=perl6` in the exercise directory. You can also add the `-v` flag
e.g. `prove . --exec=perl6 -v` to display all tests, including any optional
tests marked as 'TODO'.

## Source

Wikipedia [http://en.wikipedia.org/wiki/Atbash](http://en.wikipedia.org/wiki/Atbash)

## Submitting Incomplete Solutions
It's possible to submit an incomplete solution so you can see how others have completed the exercise.

Version data entries

47 entries across 47 versions & 1 rubygems

Version Path
trackler-2.2.1.23 tracks/perl6/exercises/atbash-cipher/README.md
trackler-2.2.1.22 tracks/perl6/exercises/atbash-cipher/README.md
trackler-2.2.1.21 tracks/perl6/exercises/atbash-cipher/README.md
trackler-2.2.1.20 tracks/perl6/exercises/atbash-cipher/README.md
trackler-2.2.1.19 tracks/perl6/exercises/atbash-cipher/README.md
trackler-2.2.1.18 tracks/perl6/exercises/atbash-cipher/README.md
trackler-2.2.1.17 tracks/perl6/exercises/atbash-cipher/README.md
trackler-2.2.1.16 tracks/perl6/exercises/atbash-cipher/README.md
trackler-2.2.1.15 tracks/perl6/exercises/atbash-cipher/README.md
trackler-2.2.1.14 tracks/perl6/exercises/atbash-cipher/README.md
trackler-2.2.1.13 tracks/perl6/exercises/atbash-cipher/README.md
trackler-2.2.1.12 tracks/perl6/exercises/atbash-cipher/README.md
trackler-2.2.1.11 tracks/perl6/exercises/atbash-cipher/README.md
trackler-2.2.1.10 tracks/perl6/exercises/atbash-cipher/README.md
trackler-2.2.1.9 tracks/perl6/exercises/atbash-cipher/README.md
trackler-2.2.1.8 tracks/perl6/exercises/atbash-cipher/README.md
trackler-2.2.1.7 tracks/perl6/exercises/atbash-cipher/README.md
trackler-2.2.1.6 tracks/perl6/exercises/atbash-cipher/README.md
trackler-2.2.1.5 tracks/perl6/exercises/atbash-cipher/README.md
trackler-2.2.1.4 tracks/perl6/exercises/atbash-cipher/README.md