この記事は主に PHP の DES 暗号化および復号化方法のコード内容について説明しています。必要な友人は参照してください。
test.php テスト ファイル
<?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); } }
関連チュートリアル: PHP ビデオ チュートリアル
以上がPHP DES 暗号化および復号化メソッドのコードの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。