Skip to content
This repository has been archived by the owner on Nov 26, 2017. It is now read-only.

Commit

Permalink
Merge pull request #909 from LouisLandry/crypt
Browse files Browse the repository at this point in the history
New Crypt package.
  • Loading branch information
chdemko committed Feb 22, 2012
2 parents fa04e00 + 7941576 commit de14a96
Show file tree
Hide file tree
Showing 40 changed files with 1,399 additions and 229 deletions.
55 changes: 55 additions & 0 deletions libraries/joomla/crypt/cipher.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
<?php
/**
* @package Joomla.Platform
* @subpackage Crypt
*
* @copyright Copyright (C) 2005 - 2011 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE
*/

defined('JPATH_PLATFORM') or die;

/**
* JCrypt cipher interface.
*
* @package Joomla.Platform
* @subpackage Crypt
* @since 12.1
*/
interface JCryptCipher
{
/**
* Method to decrypt a data string.
*
* @param string $data The encrypted string to decrypt.
* @param JCryptKey $key The key[/pair] object to use for decryption.
*
* @return string The decrypted data string.
*
* @since 12.1
*/
public function decrypt($data, JCryptKey $key);

/**
* Method to encrypt a data string.
*
* @param string $data The data string to encrypt.
* @param JCryptKey $key The key[/pair] object to use for encryption.
*
* @return string The encrypted data string.
*
* @since 12.1
*/
public function encrypt($data, JCryptKey $key);

/**
* Method to generate a new encryption key[/pair] object.
*
* @param array $options Key generation options.
*
* @return JCryptKey
*
* @since 12.1
*/
public function generateKey(array $options = array());
}
40 changes: 40 additions & 0 deletions libraries/joomla/crypt/cipher/3des.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<?php
/**
* @package Joomla.Platform
* @subpackage Crypt
*
* @copyright Copyright (C) 2005 - 2011 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE
*/

defined('JPATH_PLATFORM') or die;

/**
* JCrypt cipher for Triple DES encryption, decryption and key generation.
*
* @package Joomla.Platform
* @subpackage Crypt
* @since 12.1
*/
class JCryptCipher3DES extends JCryptCipherMcrypt
{
/**
* @var integer The mcrypt cipher constant.
* @see http://www.php.net/manual/en/mcrypt.ciphers.php
* @since 12.1
*/
protected $type = MCRYPT_3DES;

/**
* @var integer The mcrypt block cipher mode.
* @see http://www.php.net/manual/en/mcrypt.constants.php
* @since 12.1
*/
protected $mode = MCRYPT_MODE_CBC;

/**
* @var string The JCrypt key type for validation.
* @since 12.1
*/
protected $keyType = '3des';
}
40 changes: 40 additions & 0 deletions libraries/joomla/crypt/cipher/blowfish.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<?php
/**
* @package Joomla.Platform
* @subpackage Crypt
*
* @copyright Copyright (C) 2005 - 2011 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE
*/

defined('JPATH_PLATFORM') or die;

/**
* JCrypt cipher for Blowfish encryption, decryption and key generation.
*
* @package Joomla.Platform
* @subpackage Crypt
* @since 12.1
*/
class JCryptCipherBlowfish extends JCryptCipherMcrypt
{
/**
* @var integer The mcrypt cipher constant.
* @see http://www.php.net/manual/en/mcrypt.ciphers.php
* @since 12.1
*/
protected $type = MCRYPT_BLOWFISH;

/**
* @var integer The mcrypt block cipher mode.
* @see http://www.php.net/manual/en/mcrypt.constants.php
* @since 12.1
*/
protected $mode = MCRYPT_MODE_CBC;

/**
* @var string The JCrypt key type for validation.
* @since 12.1
*/
protected $keyType = 'blowfish';
}
175 changes: 175 additions & 0 deletions libraries/joomla/crypt/cipher/mcrypt.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,175 @@
<?php
/**
* @package Joomla.Platform
* @subpackage Crypt
*
* @copyright Copyright (C) 2005 - 2011 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE
*/

defined('JPATH_PLATFORM') or die;

/**
* JCrypt cipher for mcrypt algorithm encryption, decryption and key generation.
*
* @package Joomla.Platform
* @subpackage Crypt
* @since 12.1
*/
abstract class JCryptCipherMcrypt implements JCryptCipher
{
/**
* @var integer The mcrypt cipher constant.
* @see http://www.php.net/manual/en/mcrypt.ciphers.php
* @since 12.1
*/
protected $type;

/**
* @var integer The mcrypt block cipher mode.
* @see http://www.php.net/manual/en/mcrypt.constants.php
* @since 12.1
*/
protected $mode;

/**
* @var string The JCrypt key type for validation.
* @since 12.1
*/
protected $keyType;

/**
* Constructor.
*
* @since 12.1
* @throws RuntimeException
*/
public function __construct()
{
if (!is_callable('mcrypt_encrypt'))
{
throw new RuntimeException('The mcrypt extension is not available.');
}
}

/**
* Method to decrypt a data string.
*
* @param string $data The encrypted string to decrypt.
* @param JCryptKey $key The key object to use for decryption.
*
* @return string The decrypted data string.
*
* @since 12.1
*/
public function decrypt($data, JCryptKey $key)
{
// Validate key.
if ($key->type != $this->keyType)
{
throw new InvalidArgumentException('Invalid key of type: ' . $key->type . '. Expected ' . $this->keyType . '.');
}

// Decrypt the data.
$decrypted = trim(mcrypt_decrypt($this->type, $key->private, $data, $this->mode, $key->public));

return $decrypted;
}

/**
* Method to encrypt a data string.
*
* @param string $data The data string to encrypt.
* @param JCryptKey $key The key object to use for encryption.
*
* @return string The encrypted data string.
*
* @since 12.1
*/
public function encrypt($data, JCryptKey $key)
{
// Validate key.
if ($key->type != $this->keyType)
{
throw new InvalidArgumentException('Invalid key of type: ' . $key->type . '. Expected ' . $this->keyType . '.');
}

// Encrypt the data.
$encrypted = mcrypt_encrypt($this->type, $key->private, $data, $this->mode, $key->public);

return $encrypted;
}

/**
* Method to generate a new encryption key object.
*
* @param array $options Key generation options.
*
* @return JCryptKey
*
* @since 12.1
*/
public function generateKey(array $options = array())
{
// Create the new encryption key object.
$key = new JCryptKey($this->keyType);

// Generate an initialisation vector based on the algorithm.
$key->public = mcrypt_create_iv(mcrypt_get_iv_size($this->type, $this->mode));

// Get the salt and password setup.
$salt = (isset($options['salt'])) ? $options['salt'] : substr(pack("h*", md5(mt_rand())), 0, 16);
$password = (isset($options['password'])) ? $options['password'] : 'J00ml4R0ck$!';

// Generate the derived key.
$key->private = $this->pbkdf2($password, $salt, mcrypt_get_key_size($this->type, $this->mode));

return $key;
}

/**
* PBKDF2 Implementation for deriving keys.
*
* @param string $p Password
* @param string $s Salt
* @param integer $kl Key length
* @param integer $c Iteration count
* @param string $a Hash algorithm
*
* @return string The derived key.
*
* @see http://en.wikipedia.org/wiki/PBKDF2
* @see http://www.ietf.org/rfc/rfc2898.txt
* @since 12.1
*/
public function pbkdf2($p, $s, $kl, $c = 10000, $a = 'sha256')
{
// Hash length.
$hl = strlen(hash($a, null, true));

// Key blocks to compute.
$kb = ceil($kl / $hl);

// Derived key.
$dk = '';

// Create the key.
for ($block = 1; $block <= $kb; $block++)
{
// Initial hash for this block.
$ib = $b = hash_hmac($a, $s . pack('N', $block), $p, true);

// Perform block iterations.
for ($i = 1; $i < $c; $i++)
{
$ib ^= ($b = hash_hmac($a, $b, $p, true));
}

// Append the iterated block.
$dk .= $ib;
}

// Return derived key of correct length.
return substr($dk, 0, $kl);
}
}
40 changes: 40 additions & 0 deletions libraries/joomla/crypt/cipher/rijndael256.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<?php
/**
* @package Joomla.Platform
* @subpackage Crypt
*
* @copyright Copyright (C) 2005 - 2011 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE
*/

defined('JPATH_PLATFORM') or die;

/**
* JCrypt cipher for Rijndael 256 encryption, decryption and key generation.
*
* @package Joomla.Platform
* @subpackage Crypt
* @since 12.1
*/
class JCryptCipherRijndael256 extends JCryptCipherMcrypt
{
/**
* @var integer The mcrypt cipher constant.
* @see http://www.php.net/manual/en/mcrypt.ciphers.php
* @since 12.1
*/
protected $type = MCRYPT_RIJNDAEL_256;

/**
* @var integer The mcrypt block cipher mode.
* @see http://www.php.net/manual/en/mcrypt.constants.php
* @since 12.1
*/
protected $mode = MCRYPT_MODE_CBC;

/**
* @var string The JCrypt key type for validation.
* @since 12.1
*/
protected $keyType = 'rijndael256';
}
Loading

0 comments on commit de14a96

Please sign in to comment.