Cesar php
Versão 0.0.4
encryption in Caesar cipher with only small functions.
NOTE: THIS README IS OUT OF DATE! ENTER THE OFFICIAL WEBSITE TO SEE THE UPDATED VERSION!
Here we will see how to use these functions (With code examples).
NOTE: for all the examples below to work you need to download the code and add the code to your project
<?php
// Isso é um exemplo de como deve ser usado
require_once './index.php';
# Função 1
echo cesar_ascii('a', 3);
// o 3 pode ser qualquer número positivo
// o 'a' pode ser qualquer string
# Função 2
echo cesar('a', 3);
// o 3 pode ser qualquer número positivo
// o 'a' pode ser qualquer string
Here you will see how to decode the text
<?php
// Isso é um exemplo de como deve ser usado
require_once './index.php';
# Função 1
echo cesar_ascii('a', -3);
// o -3 pode ser qualquer número negativo
# Função 2
echo cesar('a', -3);
// o -3 pode ser qualquer número negativo
As you can see it's very simple! To decode a value, it is enough for its key to be negative.
To download this application Click Here. After downloading, add the ./Cesar-php
folder to the main folder of your project. After that, enter the file where you want to use these functions and add the functions to your project like this:
<?php
require_once './index.php';
Ready! You can now use all available functions.