crypt.php 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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. // -----------------------------------------------------
  24. // Determine the input vector source. Different servers
  25. // and operating systems will have varying options.
  26. // -----------------------------------------------------
  27. if (defined('MCRYPT_DEV_URANDOM'))
  28. {
  29. $random = MCRYPT_DEV_URANDOM;
  30. }
  31. elseif (defined('MCRYPT_DEV_RANDOM'))
  32. {
  33. $random = MCRYPT_DEV_RANDOM;
  34. }
  35. else
  36. {
  37. $random = MCRYPT_RAND;
  38. }
  39. // -----------------------------------------------------
  40. // The system random number generator must be seeded
  41. // to produce adequately random results.
  42. // -----------------------------------------------------
  43. if ($random === MCRYPT_RAND)
  44. {
  45. mt_srand();
  46. }
  47. $iv = mcrypt_create_iv(static::iv_size(), $random);
  48. $value = mcrypt_encrypt(static::$cipher, static::key(), $value, static::$mode, $iv);
  49. // -----------------------------------------------------
  50. // We use base64 encoding to get a nice string value.
  51. // -----------------------------------------------------
  52. return base64_encode($iv.$value);
  53. }
  54. /**
  55. * Decrypt a value using the MCrypt library.
  56. *
  57. * @param string $value
  58. * @return string
  59. */
  60. public static function decrypt($value)
  61. {
  62. // -----------------------------------------------------
  63. // Since all of our encrypted values are base64 encoded,
  64. // we will decode the value here and verify it.
  65. // -----------------------------------------------------
  66. $value = base64_decode($value, true);
  67. if ( ! $value)
  68. {
  69. throw new \Exception('Decryption error. Input value is not valid base64 data.');
  70. }
  71. // -----------------------------------------------------
  72. // Extract the input vector from the value.
  73. // -----------------------------------------------------
  74. $iv = substr($value, 0, static::iv_size());
  75. // -----------------------------------------------------
  76. // Remove the input vector from the encrypted value.
  77. // -----------------------------------------------------
  78. $value = substr($value, static::iv_size());
  79. return rtrim(mcrypt_decrypt(static::$cipher, static::key(), $value, static::$mode, $iv), "\0");
  80. }
  81. /**
  82. * Get the application key.
  83. *
  84. * @return string
  85. */
  86. private static function key()
  87. {
  88. if (is_null($key = Config::get('application.key')) or $key == '')
  89. {
  90. throw new \Exception("The encryption class can not be used without an encryption key.");
  91. }
  92. return $key;
  93. }
  94. /**
  95. * Get the input vector size for the cipher and mode.
  96. *
  97. * Different ciphers and modes use varying lengths of input vectors.
  98. *
  99. * @return int
  100. */
  101. private static function iv_size()
  102. {
  103. return mcrypt_get_iv_size(static::$cipher, static::$mode);
  104. }
  105. }