PHP code example of ssitu / sod

1. Go to this page and download the library: Download ssitu/sod library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

ssitu / sod example snippets


use SSITU\Sod\Sod;

dConfig["cryptKey"] = '703af4dd03ebe11e35167157a8a697d8a2cb545a907a38289f8a7ba19432a342';
$sodConfig["flavour"] = "Sugar"; # prefer "Sodium" if installed

// Sod init:
$Sod = new Sod($sodConfig);
// or:
# $Sod->setCryptKey(string $key);
# $Sod->setFlavour(string $flavour);

// For a quick check:
$Sod->hasCryptKey();

// To test if Sodium is installed:
var_dump($Sod->isLibSodiumOn());

// Encrypt:
$Sod->encrypt(string $message);

// Decrypt:
$Sod->decrypt(string $message);

// If something went wrong:
$Sod->getLogs();