rsa_utils.go 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. package auth
  2. import (
  3. "crypto/rand"
  4. "crypto/rsa"
  5. "crypto/x509"
  6. "encoding/base64"
  7. "encoding/pem"
  8. "errors"
  9. logger "eta/eta_mini_ht_api/common/component/log"
  10. "os"
  11. )
  12. // EncryptWithRSA 使用 RSA 公钥加密数据
  13. func EncryptWithRSA(publicKey *rsa.PublicKey, data []byte) ([]byte, error) {
  14. encrypted, err := rsa.EncryptPKCS1v15(rand.Reader, publicKey, data)
  15. if err != nil {
  16. return nil, err
  17. }
  18. return encrypted, nil
  19. }
  20. // DecryptWithRSA 使用 RSA 私钥解密数据
  21. func DecryptWithRSA(privateKey *rsa.PrivateKey, encrypted string) ([]byte, error) {
  22. encKey, _ := base64.StdEncoding.DecodeString(encrypted)
  23. hash, err := rsa.DecryptPKCS1v15(rand.Reader, privateKey, encKey)
  24. if err != nil {
  25. return nil, err
  26. }
  27. return hash, nil
  28. }
  29. // ParsePrivateKeyFromPEM 解析RSA公钥
  30. func ParsePrivateKeyFromPEM() (privateKey *rsa.PrivateKey, err error) {
  31. pemBlock, err := os.ReadFile("./conf/rsa_private_key.pem")
  32. block, _ := pem.Decode(pemBlock)
  33. if block == nil {
  34. logger.Error("私钥解析失败")
  35. return nil, errors.New("私钥解析失败")
  36. }
  37. privateKey, err = x509.ParsePKCS1PrivateKey(block.Bytes)
  38. if err != nil {
  39. return nil, err
  40. }
  41. return
  42. }
  43. func ParsePrivateKey(configPath string) (privateKey *rsa.PrivateKey, err error) {
  44. pemBlock, err := os.ReadFile(configPath)
  45. block, _ := pem.Decode(pemBlock)
  46. if block == nil {
  47. logger.Error("私钥解析失败")
  48. return nil, errors.New("私钥解析失败")
  49. }
  50. privateInfo, err := x509.ParsePKCS8PrivateKey(block.Bytes)
  51. if err != nil {
  52. return nil, err
  53. }
  54. privateKey = privateInfo.(*rsa.PrivateKey)
  55. return
  56. }
  57. func ParsePublicKey(configPath string) (publicKey *rsa.PublicKey, err error) {
  58. pemBlock, err := os.ReadFile(configPath)
  59. block, _ := pem.Decode(pemBlock)
  60. if block == nil {
  61. logger.Error("公钥解析失败")
  62. return nil, errors.New("公钥解析失败")
  63. }
  64. key, err := x509.ParsePKIXPublicKey(block.Bytes)
  65. if err != nil {
  66. return nil, err
  67. }
  68. publicKey = key.(*rsa.PublicKey)
  69. return
  70. }
  71. // ParsePublicKeyFromPEM 解析RSA公钥
  72. func ParsePublicKeyFromPEM() (publicKey *rsa.PublicKey, err error) {
  73. pemBlock, err := os.ReadFile("./conf/rsa_public_key.pem")
  74. block, _ := pem.Decode(pemBlock)
  75. if block == nil {
  76. logger.Error("公钥解析失败")
  77. return nil, errors.New("公钥解析失败")
  78. }
  79. key, err := x509.ParsePKIXPublicKey(block.Bytes)
  80. if err != nil {
  81. return nil, err
  82. }
  83. publicKey = key.(*rsa.PublicKey)
  84. return
  85. }