Class KJUR.asn1.x509.NoticeReference
Extends
KJUR.asn1.ASN1Object.
NoticeReference ASN.1 structure class
Defined in: asn1x509-1.0.js.
| Constructor Attributes | Constructor Name and Description |
|---|---|
|
KJUR.asn1.x509.NoticeReference(params)
NoticeReference ASN.1 structure class
This class represents
NoticeReference defined in RFC 5280 4.2.1.4.
|
- Fields borrowed from class KJUR.asn1.ASN1Object:
- hL, hT, hTLV, hV, isModified, params
- Methods borrowed from class KJUR.asn1.ASN1Object:
- getEncodedHex, getLengthHexFromValue, getValueHex, tohex
Class Detail
KJUR.asn1.x509.NoticeReference(params)
NoticeReference ASN.1 structure class
This class represents
NoticeReference defined in RFC 5280 4.2.1.4.
NoticeReference ::= SEQUENCE {
organization DisplayText,
noticeNumbers SEQUENCE OF INTEGER }
Its constructor can have following two parameters:
- {Object}org - organization by KJUR.asn1.x509.DisplayText parameter.
- {Object}noticenum - noticeNumbers value by an array of KJUR.asn1.DERInteger parameter
new NoticeReference({
org: {type: "bmp", str: "Sample Org"},
noticenum: [{int: 3}, {hex: "01af"}]
})
- Parameters:
- {Array} params
- associative array of parameters
- Since:
- jsrsasign 8.0.23 asn1x509 1.1.12