PHP code example of webazon / crypto-ssl

1. Go to this page and download the library: Download webazon/crypto-ssl 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/ */

    

webazon / crypto-ssl example snippets




$public_key = 'ПУБЛИЧНЫЙ_КЛЮЧ';
$private_key = 'ПРИВАТНЫЙ_КЛЮЧ';

$openSSL = new Webazon\CryptoSSL\OpenSSL($public_key,$private_key);

$keys = new Webazon\CryptoSSL\KeyPair();

$public_key = $keys -> getPublicKey();
$private_key= $keys -> getPrivateKey();

$text=$openSSL -> fishText();

$encrypted = $openSSL -> encryptSSL($text);

$decrypted = $openSSL -> decryptSSL($encrypted);