dongwuzun4630 2013-06-30 13:36
浏览 77

在Laravel之外解密加密值

How can i decrypt a string which has been encrypted using the Laravel 4 Encrypt class, outside of Laravel, only with PHP?

  • 写回答

2条回答 默认 最新

  • doutao1171 2013-06-30 15:06
    关注

    The Laravel Encrypter class uses Rijndael with a block size of 256 bit for encryption which is provided by the Mcrypt PHP extension. The Encrypter class works using two simple methods, encrypt() and decrypt().

    An example below:

    <?php
    
    $secret = Crypter::encrypt('some text here'); //encrypted
    
    $decrypted_secret = Crypter::decrypt($secret); //decrypted
    
    ?>
    

    Since you're asking how to do it "outside of Laravel":

    The encryption and decryption is done by the encrypter class. Laravel source is public and here's the relevant part:

    <?php
    
        public function encrypt($value)
        {
            $iv = mcrypt_create_iv($this->getIvSize(), $this->getRandomizer());
            $value = base64_encode($this->padAndMcrypt($value, $iv));
            $mac = $this->hash($iv = base64_encode($iv), $value);
    
            return base64_encode(json_encode(compact('iv', 'value', 'mac')));
        }
    
        protected function padAndMcrypt($value, $iv)
        {
            $value = $this->addPadding(serialize($value));
            return mcrypt_encrypt($this->cipher, $this->key, $value, $this->mode, $iv);
        }
    
        public function decrypt($payload)
        {
            $payload = $this->getJsonPayload($payload);
            $value = base64_decode($payload['value']);
            $iv = base64_decode($payload['iv']);
            return unserialize($this->stripPadding($this->mcryptDecrypt($value, $iv)));
        }
    
        protected function mcryptDecrypt($value, $iv)
        {
            return mcrypt_decrypt($this->cipher, $this->key, $value, $this->mode, $iv);
        }
    
    ?>
    

    For documentation and comments, see Laravel source code on GitHub.

    I hope this helps.

    评论

报告相同问题?

悬赏问题

  • ¥20 我想使用一些网络协议或者部分协议也行,主要想实现类似于traceroute的一定步长内的路由拓扑功能
  • ¥30 深度学习,前后端连接
  • ¥15 孟德尔随机化结果不一致
  • ¥15 apm2.8飞控罗盘bad health,加速度计校准失败
  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
  • ¥15 谁有desed数据集呀
  • ¥20 手写数字识别运行c仿真时,程序报错错误代码sim211-100
  • ¥15 关于#hadoop#的问题
  • ¥15 (标签-Python|关键词-socket)
  • ¥15 keil里为什么main.c定义的函数在it.c调用不了