RsaServices.php 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. <?php
  2. namespace App\Service;
  3. class RsaServices
  4. {
  5. protected $tronkey_public_key; //tron密钥-公钥
  6. protected $tronkey_private_key; //tron密钥-私钥
  7. protected $tronkey_key_len; //tron密钥-公钥长度
  8. public function __construct()
  9. {
  10. // tron密钥-公钥
  11. $this->tronkey_public_key = config('secretkey.tronkey_publickey');
  12. // tron密钥-私钥
  13. $this->tronkey_private_key = config('secretkey.tronkey_privatekey');
  14. // tron密钥-公钥长度
  15. $tronkey_pub_id = openssl_get_publickey($this->tronkey_public_key);
  16. $this->tronkey_key_len = openssl_pkey_get_details($tronkey_pub_id)['bits'];
  17. }
  18. /**
  19. * 公钥加密
  20. * @param $data json数据
  21. */
  22. public function publicEncrypt($data)
  23. {
  24. $key_len = $this->tronkey_key_len;
  25. $public_key = $this->tronkey_public_key;
  26. $encrypted = '';
  27. $part_len = $key_len / 8 - 11;
  28. $parts = str_split($data, $part_len);
  29. foreach ($parts as $part) {
  30. $encrypted_temp = '';
  31. openssl_public_encrypt($part, $encrypted_temp, $public_key);
  32. $encrypted .= $encrypted_temp;
  33. }
  34. return $this->url_safe_base64_encode($encrypted);
  35. }
  36. /**
  37. * 私钥解密
  38. * @param $encrypted json数据
  39. */
  40. public function privateDecrypt($encrypted)
  41. {
  42. $key_len = $this->tronkey_key_len;
  43. $private_key = $this->tronkey_private_key;
  44. $decrypted = "";
  45. $part_len = $key_len / 8;
  46. $base64_decoded = $this->url_safe_base64_decode($encrypted);
  47. $parts = str_split($base64_decoded, $part_len);
  48. foreach ($parts as $part) {
  49. $decrypted_temp = '';
  50. openssl_private_decrypt($part, $decrypted_temp,$private_key);
  51. $decrypted .= $decrypted_temp;
  52. }
  53. return $decrypted;
  54. }
  55. /**
  56. * 私钥加密
  57. * @param $data json数据
  58. */
  59. public function privateEncrypt($data)
  60. {
  61. $key_len = $this->tronkey_key_len;
  62. $private_key = $this->tronkey_private_key;
  63. $encrypted = '';
  64. $part_len = $key_len / 8 - 11;
  65. $parts = str_split($data, $part_len);
  66. foreach ($parts as $part) {
  67. $encrypted_temp = '';
  68. openssl_private_encrypt($part, $encrypted_temp, $private_key);
  69. $encrypted .= $encrypted_temp;
  70. }
  71. return $this->url_safe_base64_encode($encrypted);
  72. }
  73. /**
  74. * 公钥解密
  75. * @param $encrypted json数据
  76. */
  77. public function publicDecrypt($encrypted)
  78. {
  79. $key_len = $this->tronkey_key_len;
  80. $public_key = $this->tronkey_public_key;
  81. $decrypted = "";
  82. $part_len = $key_len / 8;
  83. $base64_decoded = $this->url_safe_base64_decode($encrypted);
  84. $parts = str_split($base64_decoded, $part_len);
  85. foreach ($parts as $part) {
  86. $decrypted_temp = '';
  87. openssl_public_decrypt($part, $decrypted_temp,$public_key);
  88. $decrypted .= $decrypted_temp;
  89. }
  90. return $decrypted;
  91. }
  92. private function url_safe_base64_encode ($data) {
  93. // return str_replace(array('+','/', '='),array('-','_', ''), base64_encode($data));
  94. return base64_encode($data);
  95. }
  96. private function url_safe_base64_decode ($data) {
  97. // $base_64 = str_replace(array('-','_'),array('+','/'), $data);
  98. return base64_decode($data);
  99. }
  100. }