邮件oMail = oClient.GetMail(info); 证书oCert =新证书(); oCert.Load(E:\\ Programme\\Email_Verarbeitung\\tt.cer); 尝试 { oMail = oMail.Decrypt(oCert) ; } catch(Exception ert){Log.writeLog(ert.Source +_+ ert.Message); } 我收到错误消息: EAGetMail20_Cannot找不到用于解密的证书和私钥 有没有人有想法?I try to open a AES encrypted Email. I tried it using EAGetMail and Chilkat but it doesnt work.Do I Need a certificate or private/public key?Mail oMail = oClient.GetMail(info);Certificate oCert = new Certificate();oCert.Load("E:\\Programme\\Email_Verarbeitung\\tt.cer");try{ oMail = oMail.Decrypt(oCert);}catch (Exception ert) { Log.writeLog(ert.Source + "_" + ert.Message); }I get the Error-Message:EAGetMail20_Cannot find the certificate and private key to use for decryptionHas anyone an idea?推荐答案 这篇关于解密AES邮件EAGetMail / Chilkat的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 10-18 17:42