crypter.php 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. <?php namespace System;
  2. class Crypter {
  3. /**
  4. * The encryption cipher.
  5. *
  6. * @var string
  7. */
  8. public $cipher;
  9. /**
  10. * The encryption mode.
  11. *
  12. * @var string
  13. */
  14. public $mode;
  15. /**
  16. * Create a new Crypter instance.
  17. *
  18. * @param string $cipher
  19. * @param string $mode
  20. * @return void
  21. */
  22. public function __construct($cipher = 'rijndael-256', $mode = 'cbc')
  23. {
  24. $this->cipher = $cipher;
  25. $this->mode = $mode;
  26. }
  27. /**
  28. * Create a new Crypter instance.
  29. *
  30. * @param string $cipher
  31. * @param string $mode
  32. * @return Crypt
  33. */
  34. public static function make($cipher = 'rijndael-256', $mode = 'cbc')
  35. {
  36. return new static($cipher, $mode);
  37. }
  38. /**
  39. * Encrypt a value using the MCrypt library.
  40. *
  41. * @param string $value
  42. * @return string
  43. */
  44. public function encrypt($value)
  45. {
  46. $iv = mcrypt_create_iv($this->iv_size(), $this->randomizer());
  47. return base64_encode($iv.mcrypt_encrypt($this->cipher, $this->key(), $value, $this->mode, $iv));
  48. }
  49. /**
  50. * Get the random number source available to the OS.
  51. *
  52. * @return int
  53. */
  54. protected 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. return MCRYPT_RAND;
  65. }
  66. /**
  67. * Decrypt a value using the MCrypt library.
  68. *
  69. * @param string $value
  70. * @return string
  71. */
  72. public function decrypt($value)
  73. {
  74. if ( ! is_string($value = base64_decode($value, true)))
  75. {
  76. throw new \Exception('Decryption error. Input value is not valid base64 data.');
  77. }
  78. list($iv, $value) = array(substr($value, 0, $this->iv_size()), substr($value, $this->iv_size()));
  79. return rtrim(mcrypt_decrypt($this->cipher, $this->key(), $value, $this->mode, $iv), "\0");
  80. }
  81. /**
  82. * Get the application key from the application configuration file.
  83. *
  84. * @return string
  85. */
  86. private function key()
  87. {
  88. if ( ! is_null($key = Config::get('application.key')) and $key !== '') return $key;
  89. throw new \Exception("The encryption class can not be used without an encryption key.");
  90. }
  91. /**
  92. * Get the input vector size for the cipher and mode.
  93. *
  94. * Different ciphers and modes use varying lengths of input vectors.
  95. *
  96. * @return int
  97. */
  98. private function iv_size()
  99. {
  100. return mcrypt_get_iv_size($this->cipher, $this->mode);
  101. }
  102. }