You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
156 lines
4.1 KiB
156 lines
4.1 KiB
<?php |
|
|
|
/** |
|
* This file is part of CodeIgniter 4 framework. |
|
* |
|
* (c) CodeIgniter Foundation <admin@codeigniter.com> |
|
* |
|
* For the full copyright and license information, please view |
|
* the LICENSE file that was distributed with this source code. |
|
*/ |
|
|
|
namespace CodeIgniter\Encryption\Handlers; |
|
|
|
use CodeIgniter\Encryption\Exceptions\EncryptionException; |
|
|
|
/** |
|
* Encryption handling for OpenSSL library |
|
* |
|
* @see \CodeIgniter\Encryption\Handlers\OpenSSLHandlerTest |
|
*/ |
|
class OpenSSLHandler extends BaseHandler |
|
{ |
|
/** |
|
* HMAC digest to use |
|
* |
|
* @var string |
|
*/ |
|
protected $digest = 'SHA512'; |
|
|
|
/** |
|
* List of supported HMAC algorithms |
|
* |
|
* @var array [name => digest size] |
|
*/ |
|
protected array $digestSize = [ |
|
'SHA224' => 28, |
|
'SHA256' => 32, |
|
'SHA384' => 48, |
|
'SHA512' => 64, |
|
]; |
|
|
|
/** |
|
* Cipher to use |
|
* |
|
* @var string |
|
*/ |
|
protected $cipher = 'AES-256-CTR'; |
|
|
|
/** |
|
* Starter key |
|
* |
|
* @var string |
|
*/ |
|
protected $key = ''; |
|
|
|
/** |
|
* Whether the cipher-text should be raw. If set to false, then it will be base64 encoded. |
|
*/ |
|
protected bool $rawData = true; |
|
|
|
/** |
|
* Encryption key info. |
|
* This setting is only used by OpenSSLHandler. |
|
* |
|
* Set to 'encryption' for CI3 Encryption compatibility. |
|
*/ |
|
public string $encryptKeyInfo = ''; |
|
|
|
/** |
|
* Authentication key info. |
|
* This setting is only used by OpenSSLHandler. |
|
* |
|
* Set to 'authentication' for CI3 Encryption compatibility. |
|
*/ |
|
public string $authKeyInfo = ''; |
|
|
|
/** |
|
* {@inheritDoc} |
|
*/ |
|
public function encrypt($data, $params = null) |
|
{ |
|
// Allow key override |
|
if ($params) { |
|
$this->key = is_array($params) && isset($params['key']) ? $params['key'] : $params; |
|
} |
|
|
|
if (empty($this->key)) { |
|
throw EncryptionException::forNeedsStarterKey(); |
|
} |
|
|
|
// derive a secret key |
|
$encryptKey = \hash_hkdf($this->digest, $this->key, 0, $this->encryptKeyInfo); |
|
|
|
// basic encryption |
|
$iv = ($ivSize = \openssl_cipher_iv_length($this->cipher)) ? \openssl_random_pseudo_bytes($ivSize) : null; |
|
|
|
$data = \openssl_encrypt($data, $this->cipher, $encryptKey, OPENSSL_RAW_DATA, $iv); |
|
|
|
if ($data === false) { |
|
throw EncryptionException::forEncryptionFailed(); |
|
} |
|
|
|
$result = $this->rawData ? $iv . $data : base64_encode($iv . $data); |
|
|
|
// derive a secret key |
|
$authKey = \hash_hkdf($this->digest, $this->key, 0, $this->authKeyInfo); |
|
|
|
$hmacKey = \hash_hmac($this->digest, $result, $authKey, $this->rawData); |
|
|
|
return $hmacKey . $result; |
|
} |
|
|
|
/** |
|
* {@inheritDoc} |
|
*/ |
|
public function decrypt($data, $params = null) |
|
{ |
|
// Allow key override |
|
if ($params) { |
|
$this->key = is_array($params) && isset($params['key']) ? $params['key'] : $params; |
|
} |
|
|
|
if (empty($this->key)) { |
|
throw EncryptionException::forNeedsStarterKey(); |
|
} |
|
|
|
// derive a secret key |
|
$authKey = \hash_hkdf($this->digest, $this->key, 0, $this->authKeyInfo); |
|
|
|
$hmacLength = $this->rawData |
|
? $this->digestSize[$this->digest] |
|
: $this->digestSize[$this->digest] * 2; |
|
|
|
$hmacKey = self::substr($data, 0, $hmacLength); |
|
$data = self::substr($data, $hmacLength); |
|
$hmacCalc = \hash_hmac($this->digest, $data, $authKey, $this->rawData); |
|
|
|
if (! hash_equals($hmacKey, $hmacCalc)) { |
|
throw EncryptionException::forAuthenticationFailed(); |
|
} |
|
|
|
$data = $this->rawData ? $data : base64_decode($data, true); |
|
|
|
if ($ivSize = \openssl_cipher_iv_length($this->cipher)) { |
|
$iv = self::substr($data, 0, $ivSize); |
|
$data = self::substr($data, $ivSize); |
|
} else { |
|
$iv = null; |
|
} |
|
|
|
// derive a secret key |
|
$encryptKey = \hash_hkdf($this->digest, $this->key, 0, $this->encryptKeyInfo); |
|
|
|
return \openssl_decrypt($data, $this->cipher, $encryptKey, OPENSSL_RAW_DATA, $iv); |
|
} |
|
}
|
|
|