Class KJUR.asn1.cms.CMSUtil
CMS utilities class
Defined in: asn1cms-1.0.js.
| Constructor Attributes | Constructor Name and Description |
|---|---|
|
CMS utiliteis class
|
| Method Attributes | Method Name and Description |
|---|---|
| <static> |
KJUR.asn1.cms.CMSUtil.newSignedData(param)
generate SignedData object specified by JSON parameters
This method provides more easy way to genereate
CMS SignedData ASN.1 structure by JSON data.
|
Method Detail
<static>
{KJUR.asn1.cms.SignedData}
KJUR.asn1.cms.CMSUtil.newSignedData(param)
generate SignedData object specified by JSON parameters
This method provides more easy way to genereate
CMS SignedData ASN.1 structure by JSON data.
var sd = KJUR.asn1.cms.CMSUtil.newSignedData({
content: {str: "jsrsasign"},
certs: [certPEM],
signerInfos: [{
hashAlg: 'sha256',
sAttr: {
SigningTime: {}
SigningCertificateV2: {array: [certPEM]},
},
signerCert: certPEM,
sigAlg: 'SHA256withRSA',
signerPrvKey: prvPEM
}]
});
- Parameters:
- {Array} param
- JSON parameter to generate CMS SignedData
- Returns:
- {KJUR.asn1.cms.SignedData} object just generated