Read the content from a CMS signed-data object directly into a byte array.
public static byte[] ReadSigDataToBytes( string inputFile )
Public Shared Function ReadSigDataToBytes ( _ inputFile As String _ ) As Byte()
// Read in content to a byte array byte[] b = Cms.ReadSigDataToBytes(inputFile); // Convert to a .NET string (assumed UTF-8 encoded) string s = System.Text.Encoding.UTF8.GetString(b);
VB6/C equivalent: CMS_ReadSigDataToBytes