CryptEncryptMessage

[DllImport("Crypt32.dll", SetLastError = true)]
public static extern bool CryptEncryptMessage(
   ref CRYPT_ENCRYPT_MESSAGE_PARA pEncryptPara,
   byte[] pbToBeEncrypted,
   uint cbToBeEncrypted,
   byte[] pbEncryptedBlob,
   ref uint pcbEncryptedBlob
);

Microsoft documentation: Link

Last updated