Home>Article>Backend Development> PHP DES encryption and decryption method code
This article is mainly about the code content of PHP's DES encryption and decryption method. Friends in need can refer to it.
test.php test file
'AbcdefghijklmnopqrstuvwX','secretcode'=>'Abcdefgh']; $encode = $des->encode($data, $conf); print_r($encode); echo "
"; $decode = $des->decode($encode,$conf); print_r($decode); ?>
Des.php
encode($data, $configKey["appkey"], $configKey["secretcode"]); } public static function decode($data, $configKey) { $tripleDes = new TripleDES(); return $tripleDes->decode($data, $configKey["appkey"], $configKey["secretcode"]); } public static function encodeArr($data, $configKey) { $data = json_encode($data); return self::encode($data, $configKey); } public static function decodeArr($data, $configKey) { $res = self::decode($data, $configKey); return json_decode($res,true); } }
Related tutorials:PHP video tutorial
The above is the detailed content of PHP DES encryption and decryption method code. For more information, please follow other related articles on the PHP Chinese website!