SignedCmsBuilder(Oid, Byte) Constructor
Initializes a new instance of SignedCmsBuilder from content type identifier and optional content.
Namespace: SysadminsLV.PKI.Cryptography.PkcsAssembly: SysadminsLV.PKI (in SysadminsLV.PKI.dll) Version: 4.3.0+c7aa42c7e4fd98d87c1722b230e8e27c1bbf41f0
public SignedCmsBuilder(
Oid contentType,
byte[] content = null
)
Public Sub New (
contentType As Oid,
Optional content As Byte() = Nothing
)
public:
SignedCmsBuilder(
Oid^ contentType,
array<unsigned char>^ content = nullptr
)
new :
contentType : Oid *
?content : byte[]
(* Defaults:
let _content = defaultArg content null
*)
-> SignedCmsBuilder
Parameters
- contentType Oid
- An object identifier that identifies the content type stored in PKCS#7 message.
- content Byte (Optional)
-
Content embedded in the PKCS#7 message. This parameter is optional.
If
content parameter is null, signing operation will fail. Only message encoding is allowed.
If content parameter is presented, the content must be properly encoded without outer SEQUENCE type.