crypt.php 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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.
  25. // -----------------------------------------------------
  26. if (defined('MCRYPT_DEV_URANDOM'))
  27. {
  28. $random = MCRYPT_DEV_URANDOM;
  29. }
  30. elseif (defined('MCRYPT_DEV_RANDOM'))
  31. {
  32. $random = MCRYPT_DEV_RANDOM;
  33. }
  34. else
  35. {
  36. $random = MCRYPT_RAND;
  37. }
  38. // -----------------------------------------------------
  39. // The system random number generator must be seeded.
  40. // -----------------------------------------------------
  41. if ($random === MCRYPT_RAND)
  42. {
  43. mt_srand();
  44. }
  45. // -----------------------------------------------------
  46. // Create the input vector.
  47. // -----------------------------------------------------
  48. $iv = mcrypt_create_iv(static::iv_size(), $random);
  49. // -----------------------------------------------------
  50. // Encrypt the value using MCrypt.
  51. // -----------------------------------------------------
  52. $value = mcrypt_encrypt(static::$cipher, static::key(), $value, static::$mode, $iv);
  53. // -----------------------------------------------------
  54. // Use base64 encoding to get a string value.
  55. // -----------------------------------------------------
  56. return base64_encode($iv.$value);
  57. }
  58. /**
  59. * Decrypt a value using the MCrypt library.
  60. *
  61. * @param string $value
  62. * @return string
  63. */
  64. public static function decrypt($value)
  65. {
  66. // -----------------------------------------------------
  67. // Decode the base64 value.
  68. // -----------------------------------------------------
  69. $value = base64_decode($value, true);
  70. // -----------------------------------------------------
  71. // Validate the base64 conversion.
  72. // -----------------------------------------------------
  73. if ( ! $value)
  74. {
  75. throw new \Exception('Decryption error. Input value is not valid base64 data.');
  76. }
  77. // -----------------------------------------------------
  78. // Extract the input vector from the value.
  79. // -----------------------------------------------------
  80. $iv = substr($value, 0, static::iv_size());
  81. // -----------------------------------------------------
  82. // Remove the input vector from the value.
  83. // -----------------------------------------------------
  84. $value = substr($value, static::iv_size());
  85. // -----------------------------------------------------
  86. // Decrypt the value using MCrypt.
  87. // -----------------------------------------------------
  88. return rtrim(mcrypt_decrypt(static::$cipher, static::key(), $value, static::$mode, $iv), "\0");
  89. }
  90. /**
  91. * Get the application key.
  92. *
  93. * @return string
  94. */
  95. private static function key()
  96. {
  97. // -----------------------------------------------------
  98. // Validate the application key.
  99. // -----------------------------------------------------
  100. if (is_null($key = Config::get('application.key')) or $key == '')
  101. {
  102. throw new \Exception("The encryption class can not be used without an encryption key.");
  103. }
  104. return $key;
  105. }
  106. /**
  107. * Get the input vector size for the cipher and mode.
  108. *
  109. * @return int
  110. */
  111. private static function iv_size()
  112. {
  113. return mcrypt_get_iv_size(static::$cipher, static::$mode);
  114. }
  115. }