golang中如何使用rsa密钥对进行AES加解密

How to use rsa key pair for AES encryption and decryprion in golang

我想生成 RSA 密钥对(public 和私有),然后将它们用于 AES 加密和解密。例如Public 加密密钥和解密私钥。我为此写了一个简单的代码,但问题是当我 运行 这段代码时,我得到这个错误:

crypto/aes: invalid key size 1639

我该如何解决这个问题??我的加密代码如下:

//genrating private key
privateKey, err := rsa.GenerateKey(rand.Reader, 2014)
if err != nil {
    return
}
privateKeyDer := x509.MarshalPKCS1PrivateKey(privateKey)
privateKeyBlock := pem.Block{
    Type:    "RSA PRIVATE KEY",
    Headers: nil,
    Bytes:   privateKeyDer,
}
privateKeyPem := string(pem.EncodeToMemory(&privateKeyBlock))

//using privateKeyPem for encryption
text := []byte("My name is Astaxie")
ciphertext, err := encrypt(text, []byte(privateKeyPem))
if err != nil {
    // TODO: Properly handle error
    log.Fatal(err)
}
fmt.Printf("%s => %x\n", text, ciphertext)
    
//Definition of encrypt()
func encrypt(plaintext []byte, key []byte) ([]byte, error) {
    c, err := aes.NewCipher(key)
    if err != nil {
        return nil, err
    }

    gcm, err := cipher.NewGCM(c)
    if err != nil {
        return nil, err
    }

    nonce := make([]byte, gcm.NonceSize())
    if _, err = io.ReadFull(rand.Reader, nonce); err != nil {
        return nil, err
    }

    return gcm.Seal(nonce, nonce, plaintext, nil), nil
}

按照评论中的建议,我搜索了 "hybrid cryptography" 。而这个 example 解决了我的问题。