1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
|
<?php
/**
* The Horde_Cipher_BlockMode_cfb64:: This class implements the
* Horde_Cipher_BlockMode using a 64 bit cipher feedback.
*
* This can be used to encrypt any length string and the encrypted
* version will be the same length.
*
* $Horde: framework/Cipher/Cipher/BlockMode/cfb64.php,v 1.7.12.5 2006/01/01 21:28:11 jan Exp $
*
* Copyright 2002-2006 Mike Cochrane <mike@graftonhall.co.nz>
*
* See the enclosed file COPYING for license information (LGPL). If you
* did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
*
* @author Mike Cochrane <mike@graftonhall.co.nz>
* @since Horde 2.2
* @package Horde_Cipher
*/
class Horde_Cipher_BlockMode_cfb64 extends Horde_Cipher_BlockMode {
/**
* Encrypt a string.
*
* @param Horde_Cipher $cipher Cipher algorithm to use for
* encryption.
* @param string $plaintext The data to encrypt.
*
* @return The encrypted data.
*/
function encrypt(&$cipher, $plaintext)
{
$encrypted = '';
$n = 0;
$jMax = strlen($plaintext);
for ($j = 0; $j < $jMax; $j++) {
if ($n == 0) {
$this->_iv = $cipher->encryptBlock($this->_iv);
}
$c = $plaintext[$j] ^ $this->_iv[$n];
$this->_iv = substr($this->_iv, 0, $n) . $c . substr($this->_iv, $n + 1);
$encrypted .= $c;
$n = (++$n) & 0x07;
}
return $encrypted;
}
/**
* Decrypt a string.
*
* @param Horde_Cipher $cipher Cipher algorithm to use for
* decryption.
* @param string $ciphertext The data to decrypt.
*
* @return The decrypted data.
*/
function decrypt(&$cipher, $ciphertext)
{
$decrypted = '';
$n = 0;
$jMax = strlen($ciphertext);
for ($j = 0; $j < $jMax; $j++) {
if ($n == 0) {
$this->_iv = $cipher->encryptBlock($this->_iv);
}
$c = $ciphertext[$j] ^ $this->_iv[$n];
$this->_iv = substr($this->_iv, 0, $n) . substr($ciphertext, $j, 1) . substr($this->_iv, $n + 1);
$decrypted .= $c;
$n = (++$n) & 0x07;
}
// Remove trailing \0's used to pad the last block.
while (substr($decrypted, -1, 1) == "\0") {
$decrypted = substr($decrypted, 0, -1);
}
return $decrypted;
}
}
|