OpenSSL 函数
在线手册:中文 英文
PHP手册

openssl_decrypt

(PHP 5 >= 5.3.0)

openssl_decryptDecrypts data

说明

string openssl_decrypt ( string $data , string $method , string $password [, bool $raw_input = false [, string $iv = "" ]] )

Takes a raw or base64 encoded string and decrypts it using a given method and key.

Warning

本函数还未编写文档,仅有参数列表。

参数

data

The data.

method

The cipher method.

password

The password.

raw_input

Setting to TRUE will take a raw encoded string, otherwise a base64 string is assumed for the data parameter.

iv

A non-NULL Initialization Vector.

返回值

The decrypted string on success 或者在失败时返回 FALSE.

错误/异常

Emits an E_WARNING level error if an unknown cipher algorithm is passed via the method parameter.

Emits an E_WARNING level error if an empty value is passed in via the iv parameter.

更新日志

版本 说明
5.3.3 The iv parameter was added.

参见


OpenSSL 函数
在线手册:中文 英文
PHP手册
PHP手册 - N: Decrypts data

用户评论:

nbari at dalmp dot com (15-Jan-2012 11:52)

There are cases where you need to send data in a secure way within an 'un-secure' connection, a  typically scenario of this, is a site with out SSL (no https).

For this cases you can use the GibberishAES javascript library, this library will encrypt your data before it is submitted using CBC AES encryption mode, and it is fully compatible with a standar like OpenSSL.

Example:

When displaying a form, you can set a hidden field containing a token, the one is stored on the server via sessions and is going to be used as the 'password' for encrypting the data on the user side, in help with the GibberishAES library.

In Javascript (user side):
// GibberishAES.enc(string, password)
// Defaults to 256 bit encryption
GibberishAES.enc("Made with Gibberish\n", "password");
// Outputs: "U2FsdGVkX1+21O5RB08bavFTq7Yq/gChmXrO3f00tvJaT55A5pPvqw0zFVnHSW1o"

Later when the user submits the data, you will need to decrypt the data, for that you could use the class below and use it like this:

<?php
sqAES
::decrypt('password', 'U2FsdGVkX1+21O5RB08bavFTq7Yq/gChmXrO3f00tvJaT55A5pPvqw0zFVnHSW1o');
?>

That will return  the same result, that openssl would return from this command line :

echo "U2FsdGVkX1+21O5RB08bavFTq7Yq/gChmXrO3f00tvJaT55A5pPvqw0zFVnHSW1o" | openssl enc -d -aes-256-cbc -a -k password

This class currently only encrypts/decrypts AES256 but can be easily modified to feed your needs, right now it is fully compatible withe the  GibberishAES library, so you could decrypt all your users data and also send encrypted data back to the user in a secure way, all this thanks to the openssl-decrypt/openssl-encrypt functions.

<?php

class sqAES {

 
/**
   * decrypt AES 256
   *
   * @param string $password
   * @param data $edata
   * @return dencrypted data
   */
 
public static function decrypt($password, $edata) {
   
$data = base64_decode($edata);
   
$salt = substr($data, 8, 8);
   
$ct = substr($data, 16);
   
/**
     * From https://github.com/mdp/gibberish-aes
     *
     * Number of rounds depends on the size of the AES in use
     * 3 rounds for 256
     *        2 rounds for the key, 1 for the IV
     * 2 rounds for 128
     *        1 round for the key, 1 round for the IV
     * 3 rounds for 192 since it's not evenly divided by 128 bits
     */
   
$rounds = 3;
   
$data00 = $password.$salt;
   
$md5_hash = array();
   
$md5_hash[0] = md5($data00, true);
   
$result = $md5_hash[0];
    for (
$i = 1; $i < $rounds; $i++) {
     
$md5_hash[$i] = md5($md5_hash[$i - 1].$data00, true);
       
$result .= $md5_hash[$i];
    }
   
$key = substr($result, 0, 32);
   
$iv  = substr($result, 32,16);

      return
openssl_decrypt($ct, 'aes-256-cbc', $key, true, $iv);
  }

 
/**
   * crypt AES 256
   *
   * @param string $password
   * @param data $data
   * @return base64 encrypted data
   */
 
public static function crypt($password, $data) {
   
// Set a random salt
   
$salt = openssl_random_pseudo_bytes(8);

   
$salted = '';
   
$dx = '';
   
// Salt the key(32) and iv(16) = 48
   
while (strlen($salted) < 48) {
     
$dx = md5($dx.$password.$salt, true);
     
$salted .= $dx;
    }

   
$key = substr($salted, 0, 32);
   
$iv  = substr($salted, 32,16);

   
$encrypted_data = openssl_encrypt($data, 'aes-256-cbc', $key, true, $iv);
    return
base64_encode('Salted__' . $salt . $encrypted_data);
  }

}

?>