mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-05 10:42:59 +00:00
c18e0dc66a
- Add missing use statement in SecureTestEmail - Address https://github.com/friendica/friendica/issues/12011#issuecomment-1321196332 - phpseclib version 3 dependency is implied from the core so it is removed from the addon
40 lines
958 B
PHP
40 lines
958 B
PHP
<?php
|
|
|
|
if(function_exists('mcrypt_encrypt') && defined('MCRYPT_MODE_CFB')) {
|
|
class MCryptWrapper {
|
|
public $cipher, $key, $iv, $key_size, $block_size;
|
|
|
|
|
|
function __construct($cipher) {
|
|
$this->cipher = $cipher;
|
|
$this->key_size = mcrypt_module_get_algo_key_size($cipher);
|
|
$this->block_size = mcrypt_module_get_algo_block_size($cipher);
|
|
$this->iv = str_repeat("\0", mcrypt_get_iv_size($cipher, 'ncfb'));
|
|
}
|
|
|
|
function getBlockLengthInBytes()
|
|
{
|
|
return $this->block_size;
|
|
}
|
|
|
|
function getKeyLength() {
|
|
return $this->key_size << 3;
|
|
}
|
|
|
|
function setKey($key) {
|
|
$this->key = $key;
|
|
}
|
|
|
|
function setIV($iv) {
|
|
$this->iv = $iv;
|
|
}
|
|
|
|
function encrypt($data) {
|
|
return mcrypt_encrypt($this->cipher, $this->key, $data, 'ncfb', $this->iv);
|
|
}
|
|
|
|
function decrypt($data) {
|
|
return mcrypt_decrypt($this->cipher, $this->key, $data, 'ncfb', $this->iv);
|
|
}
|
|
}
|
|
}
|