| 1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- namespace addons\YunfastPay\common\utils;
- /**
- * 解密
- * @package addons\YunfastPay\common\utils
- */
- class Des3Utils
- {
- /**
- * 加密
- *
- * @param string $input
- * @param string $key
- * @return string
- */
- public static function encrypt($input, $key)
- {
- return openssl_encrypt($input, 'des-ede3', $key, 0);
- }
- /**
- * 解密
- *
- * @param string $input
- * @param string $key
- * @return string
- */
- public static function decrypt($encrypted, $key)
- {
- return openssl_decrypt(base64_decode($encrypted), 'des-ede3', $key, OPENSSL_RAW_DATA);
- }
- }
|