Skip to content

Instantly share code, notes, and snippets.

View wans05's full-sized avatar
🎯
Focusing

Anderson Rocha Pereira wans05

🎯
Focusing
  • TCEES
  • Vila Velha
View GitHub Profile
@wans05
wans05 / openssl_encrypt_decrypt.php
Created July 29, 2019 13:35 — forked from joashp/openssl_encrypt_decrypt.php
Simple PHP encrypt and decrypt using OpenSSL
<?php
/**
* simple method to encrypt or decrypt a plain text string
* initialization vector(IV) has to be the same when encrypting and decrypting
*
* @param string $action: can be 'encrypt' or 'decrypt'
* @param string $string: string to encrypt or decrypt
*
* @return string
*/