_encrypt() protected method

Serialize and encrypt a given data array.
protected _encrypt ( array $decrypted = [] ) : string
$decrypted array The cleartext data to be encrypted.
return string A Base64 encoded and encrypted string.
コード例 #1
0
ファイル: MockEncrypt.php プロジェクト: nilamdoc/KYCGlobal
 public function encrypt($decrypted = array())
 {
     return parent::_encrypt($decrypted);
 }