1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- // Copyright 2021 Tencent Inc. All rights reserved.
- package utils
- import (
- "crypto/rand"
- "crypto/rsa"
- "crypto/sha1"
- "crypto/x509"
- "encoding/base64"
- "fmt"
- )
- // EncryptOAEPWithPublicKey 使用公钥进行加密
- func EncryptOAEPWithPublicKey(message string, publicKey *rsa.PublicKey) (ciphertext string, err error) {
- if publicKey == nil {
- return "", fmt.Errorf("you should input *rsa.PublicKey")
- }
- ciphertextByte, err := rsa.EncryptOAEP(sha1.New(), rand.Reader, publicKey, []byte(message), nil)
- if err != nil {
- return "", fmt.Errorf("encrypt message with public key err:%s", err.Error())
- }
- ciphertext = base64.StdEncoding.EncodeToString(ciphertextByte)
- return ciphertext, nil
- }
- // EncryptOAEPWithCertificate 先解析出证书中的公钥,然后使用公钥进行加密
- func EncryptOAEPWithCertificate(message string, certificate *x509.Certificate) (ciphertext string, err error) {
- if certificate == nil {
- return "", fmt.Errorf("you should input *x509.Certificate")
- }
- publicKey, ok := certificate.PublicKey.(*rsa.PublicKey)
- if !ok {
- return "", fmt.Errorf("certificate is invalid")
- }
- return EncryptOAEPWithPublicKey(message, publicKey)
- }
- // DecryptOAEP 使用私钥进行解密
- func DecryptOAEP(ciphertext string, privateKey *rsa.PrivateKey) (message string, err error) {
- if privateKey == nil {
- return "", fmt.Errorf("you should input *rsa.PrivateKey")
- }
- decodedCiphertext, err := base64.StdEncoding.DecodeString(ciphertext)
- if err != nil {
- return "", fmt.Errorf("base64 decode failed, error=%s", err.Error())
- }
- messageBytes, err := rsa.DecryptOAEP(sha1.New(), rand.Reader, privateKey, decodedCiphertext, nil)
- if err != nil {
- return "", fmt.Errorf("decrypt ciphertext with private key err:%s", err)
- }
- return string(messageBytes), nil
- }
|