crypt.php 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <?php namespace System;
  2. class Crypt {
  3. /**
  4. * The encryption cipher.
  5. *
  6. * @var string
  7. */
  8. public static $cipher = 'rijndael-256';
  9. /**
  10. * The encryption mode.
  11. *
  12. * @var string
  13. */
  14. public static $mode = 'cbc';
  15. /**
  16. * Encrypt a value using the MCrypt library.
  17. *
  18. * @param string $value
  19. * @return string
  20. */
  21. public static function encrypt($value)
  22. {
  23. // If the system random number generator is being used, we need to seed
  24. // it to get adequately random results.
  25. if (($random = static::randomizer()) === MCRYPT_RAND) mt_srand();
  26. $iv = mcrypt_create_iv(static::iv_size(), $random);
  27. $value = mcrypt_encrypt(static::$cipher, static::key(), $value, static::$mode, $iv);
  28. return base64_encode($iv.$value);
  29. }
  30. /**
  31. * Decrypt a value using the MCrypt library.
  32. *
  33. * @param string $value
  34. * @return string
  35. */
  36. public static function decrypt($value)
  37. {
  38. $value = base64_decode($value, true);
  39. if ( ! $value)
  40. {
  41. throw new \Exception('Decryption error. Input value is not valid base64 data.');
  42. }
  43. // Extract the input vector from the value.
  44. $iv = substr($value, 0, static::iv_size());
  45. // Remove the input vector from the encrypted value.
  46. $value = substr($value, static::iv_size());
  47. return rtrim(mcrypt_decrypt(static::$cipher, static::key(), $value, static::$mode, $iv), "\0");
  48. }
  49. /**
  50. * Get the random number source that should be used for the OS.
  51. *
  52. * @return int
  53. */
  54. private static function randomizer()
  55. {
  56. if (defined('MCRYPT_DEV_URANDOM'))
  57. {
  58. return MCRYPT_DEV_URANDOM;
  59. }
  60. elseif (defined('MCRYPT_DEV_RANDOM'))
  61. {
  62. return MCRYPT_DEV_RANDOM;
  63. }
  64. else
  65. {
  66. return MCRYPT_RAND;
  67. }
  68. }
  69. /**
  70. * Get the application key from the application configuration file.
  71. *
  72. * @return string
  73. */
  74. private static function key()
  75. {
  76. if (is_null($key = Config::get('application.key')) or $key == '')
  77. {
  78. throw new \Exception("The encryption class can not be used without an encryption key.");
  79. }
  80. return $key;
  81. }
  82. /**
  83. * Get the input vector size for the cipher and mode.
  84. *
  85. * Different ciphers and modes use varying lengths of input vectors.
  86. *
  87. * @return int
  88. */
  89. private static function iv_size()
  90. {
  91. return mcrypt_get_iv_size(static::$cipher, static::$mode);
  92. }
  93. }