All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
Stable version of Vigenere-API. This update provides an OpenAPI interface to use Vigenere algorithm. You can cipher and decipher content.
-
Vigenere algorithm #1.
- Cipher method at the address: /api/v2/vigenere/decipher
- Decipher method at the address: /api/v2/vigenere/decipher
You need to use the POST method to send the JSON content to cipher or decipher.
The JSON format is: "content": str "key": str -
Provides links to use Caesar algorithm in the V2 API.
- Cipher method at the address: /api/v2/caesar/decipher
- Decipher method at the address: /api/v2/caesar/decipher
First stable version of Vigenere-API. This update provides an OpenAPI interface to use Caesar algorithm. You can cipher and decipher content.
-
Caesar algorithm #1.
- Cipher method at the address: /api/v1/caesar/decipher
- Decipher method at the address: /api/v1/caesar/decipher
You need to use the POST method to send the JSON content to cipher or decipher.
The JSON format is: "content": str "key": int | str(one character) -
Starter of API. To start the API, install the package and run the command:
python -m vigenere-api