cmsReadSigDataToString
Read the content from a CMS signed-data object directly into a string.
Syntax
[VBA]
Public Function cmsReadSigDataToString ( _
szFileIn As String, _
Optional nOptions As Long = 0 _
) As String
Parameters
- szFileIn
- Name of file containing CMS signed-data object (binary or base64-encoded) or the data as a base64 or PEM string.
- nOptions
- For future use.
Return Value
String: String containing the content or an empty string on error.
Remarks
Use this only if the content is known to be plain ASCII text, otherwise use cmsReadSigDataToBytes()
.