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
<?php require_once('Des.php'); $des = new Des(); $data['a'] = 'a'; $data['b'] = 'b'; $conf = ['appkey'=>'AbcdefghijklmnopqrstuvwX','secretcode'=>'Abcdefgh']; $encode = $des->encode($data, $conf); print_r($encode); echo "<br>"; $decode = $des->decode($encode,$conf); print_r($decode); ?>
Des.php
<?php require_once('TripleDES.php'); class Des { public static function encode($data, $configKey) { $tripleDes = new TripleDES(); if (is_array($data)) { $data = json_encode($data); } return $tripleDes->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!