Newer
Older
exercism-cpp / atbash-cipher / .exercism / config.json
@Wook Song Wook Song on 24 Oct 2022 604 bytes Easy: Add a solution for "Atbash Cipher"
{
  "blurb": "Create an implementation of the atbash cipher, an ancient encryption system created in the Middle East.",
  "authors": [
    "vivshaw"
  ],
  "contributors": [
    "AlexLeSang",
    "elyashiv",
    "jackhughesweb",
    "KevinWMatthews",
    "LegalizeAdulthood",
    "patricksjackson"
  ],
  "files": {
    "solution": [
      "atbash_cipher.cpp",
      "atbash_cipher.h"
    ],
    "test": [
      "atbash_cipher_test.cpp"
    ],
    "example": [
      ".meta/example.cpp",
      ".meta/example.h"
    ]
  },
  "source": "Wikipedia",
  "source_url": "http://en.wikipedia.org/wiki/Atbash"
}