예제 #1
0
        public string EncryptWithAnotherPublicKey(string messagePlaintext, string sharablePublicKey)
        {
            CertificateEncrypter ce = new CertificateEncrypter(sharablePublicKey);

            return(ce.EncryptDataToString(messagePlaintext));
        }