SAESCoderUtil.kt 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. /*
  2. * ********************************************************************************************************************
  3. *
  4. * iFHS7.
  5. * ;BBMBMBMc rZMBMBR BMB
  6. * MBEr:;PBM, 7MBMMEOBB: BBB RBW
  7. * XK: BO SB. :SZ MBM. c;; ir BBM :FFr :SSF: ;xBMB:r iuGXv. i:. iF2;
  8. * DBBM0r. :D S7 ;XMBMB GMBMu. MBM: BMB MBMBBBMBMS WMBMBMBBK MBMBMBM BMBRBMBW .MBMBMBMBB
  9. * :JMRMMD .. , 1MMRM1; ;MBMBBR: MBM ;MB: BMB: MBM. RMBr sBMH BM0 UMB, BMB. KMBv
  10. * ;. XOW B1; :uM: 1RE, i .2BMBs rMB. MBO MBO JMB; MBB MBM BBS 7MBMBOBM: MBW :BMc
  11. * OBRJ.SEE MRDOWOR, 3DE:7OBM . ;BMB RMR7BM BMB MBB. BMB ,BMR .BBZ MMB rMB, BMM rMB7
  12. * :FBRO0D0 RKXSXPR. JOKOOMPi BMBSSWBMB; BMBB: MBMB0ZMBMS .BMBOXRBMB MBMDE RBM2;SMBM; MBB xBM2
  13. * iZGE O0SHSPO. uGZ7. sBMBMBDL :BMO OZu:BMBK, rRBMB0; ,EBMB xBMBr:ER. RDU :OO;
  14. * ,BZ, 1D0 RPSFHXR. xWZ .SMr . .BBB
  15. * :0BMRDG RESSSKR. 2WOMBW; BMBMR
  16. * i0BM: SWKHKGO MBDv
  17. * .UB OOGDM. MK, Copyright (c) 2015-2019. 斯伯坦机器人
  18. * , XMW ..
  19. * r All rights reserved.
  20. *
  21. * ********************************************************************************************************************
  22. */
  23. package com.sybotan.service.utils.crypt
  24. import javax.crypto.Cipher
  25. import javax.crypto.KeyGenerator
  26. import javax.crypto.spec.SecretKeySpec
  27. import java.io.IOException
  28. import java.security.Key
  29. import java.security.NoSuchAlgorithmException
  30. import java.security.SecureRandom
  31. import java.util.*
  32. /**
  33. * AES安全编码组件
  34. *
  35. * @author Andy
  36. */
  37. abstract class SAESCoderUtil : SCoderUtil() {
  38. companion object {
  39. const val ALGORITHM = "AES"
  40. /**
  41. * 转换密钥
  42. *
  43. * @param key
  44. * @return
  45. * @throws Exception
  46. */
  47. @Throws(Exception::class)
  48. private fun toKey(key: ByteArray): Key {
  49. return SecretKeySpec(key, ALGORITHM)
  50. }
  51. /**
  52. * 解密
  53. *
  54. * @param data
  55. * @param key
  56. * @return
  57. * @throws Exception
  58. */
  59. @Throws(Exception::class)
  60. fun decrypt(data: ByteArray, key: String): ByteArray {
  61. val k = toKey(Base64.getDecoder().decode(key))
  62. val cipher = Cipher.getInstance(ALGORITHM)
  63. cipher.init(Cipher.DECRYPT_MODE, k)
  64. return cipher.doFinal(data)
  65. } // Fun decrypt()
  66. /**
  67. * 加密
  68. *
  69. * @param data
  70. * @param key
  71. * @return
  72. * @throws Exception
  73. */
  74. @Throws(Exception::class)
  75. fun encrypt(data: ByteArray, key: String): ByteArray {
  76. val k = toKey(Base64.getDecoder().decode(key))
  77. val cipher = Cipher.getInstance(ALGORITHM)
  78. cipher.init(Cipher.ENCRYPT_MODE, k)
  79. return cipher.doFinal(data)
  80. } // Fun encrypt()
  81. /**
  82. * 生成密钥
  83. *
  84. * @param seed
  85. * @return
  86. * @throws IOException
  87. * @throws NoSuchAlgorithmException
  88. */
  89. @Throws(IOException::class, NoSuchAlgorithmException::class)
  90. @JvmOverloads
  91. fun initKey(seed: String? = null): String? {
  92. val secureRandom = if (seed != null) {
  93. SecureRandom(Base64.getDecoder().decode(seed))
  94. } else {
  95. SecureRandom()
  96. }
  97. val kg = KeyGenerator.getInstance(ALGORITHM)
  98. kg.init(secureRandom)
  99. val secretKey = kg.generateKey()
  100. return Base64.getEncoder().encodeToString(secretKey.encoded)
  101. } // Fun initKey()
  102. } // companion object
  103. } // Class SAESCoderUtil