Jump to
[1]
[Full screen preview]
<?php /** * php blowfish 算法 * Class blowfish */ class blowfish{ /** * blowfish + cbc模式 + pkcs5补码 加密 * @param string $str 需要加密的数据 * @return string 加密后base64加密的数据 */ public function blowfish_cbc_pkcs5_encrypt($str) { $cipher = mcrypt_module_open(MCRYPT_BLOWFISH, '', MCRYPT_MODE_CBC, ''); //pkcs5补码 $size = mcrypt_get_block_size(MCRYPT_BLOWFISH, MCRYPT_MODE_CBC); $str = $this->pkcs5_pad($str, $size); if (mcrypt_generic_init($cipher, $this->key, $this->iv) != -1) { $cipherText = mcrypt_generic($cipher, $str); mcrypt_generic_deinit($cipher); return base64_encode($cipherText); } mcrypt_module_close($cipher); } /** * blowfish + cbc模式 + pkcs5 解密 去补码 * @param string $str 加密的数据 * @return string 解密的数据 */ public function blowfish_cbc_pkcs5_decrypt($str) { $cipher = mcrypt_module_open(MCRYPT_BLOWFISH, '', MCRYPT_MODE_CBC, ''); if (mcrypt_generic_init($cipher, $this->key, $this->iv) != -1) { $cipherText = mdecrypt_generic($cipher, base64_decode($str)); mcrypt_generic_deinit($cipher); return $this->pkcs5_unpad($cipherText); } mcrypt_module_close($cipher); } private function pkcs5_pad($text, $blocksize){ $pad = $blocksize - (strlen ( $text ) % $blocksize); return $text . str_repeat ( chr ( $pad ), $pad ); } private function pkcs5_unpad($str){ $pad = ord($str[($len = strlen($str)) - 1]); return substr($str, 0, strlen($str) - $pad); } }
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
How Long Does It Take To Beat Split Fiction?
4 weeks agoByDDD
R.E.P.O. Save File Location: Where Is It & How to Protect It?
4 weeks agoByDDD

Hot Tools

Dreamweaver Mac version
Visual web development tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Notepad++7.3.1
Easy-to-use and free code editor

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Mac version
God-level code editing software (SublimeText3)
