Class KJUR.asn1.x509.UserNotice
				
				
Extends
					KJUR.asn1.ASN1Object.
				
			
				UserNotice ASN.1 structure class
				
				
					
Defined in:  asn1x509-1.0.js.
				
			
| Constructor Attributes | Constructor Name and Description | 
|---|---|
| 
								KJUR.asn1.x509.UserNotice(params)
							 UserNotice ASN.1 structure class
This class represents 
UserNotice 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.UserNotice(params)
				
				
				
					UserNotice ASN.1 structure class
This class represents 
UserNotice defined in RFC 5280 4.2.1.4.
				
				
				
				
UserNotice ::= SEQUENCE {
     noticeRef        NoticeReference OPTIONAL,
     explicitText     DisplayText OPTIONAL }
Its constructor can have following two parameters:
- {Object}noticeref - KJUR.asn1.x509.NoticeReference parameter. This SHALL NOT be set for conforming CA by RFC 5280. (OPTIONAL)
- {Object}exptext - explicitText value by KJUR.asn1.x509.DisplayText parameter (OPTIONAL)
new UserNotice({
  noticeref: {
    org: {type: "bmp", str: "Sample Org"},
    noticenum: [{int: 3}, {hex: "01af"}]
  },
  exptext: {type: "ia5", str: "Sample Policy"}
})
				
				
				
				
					
						- Parameters:
- {Array} params
- associative array of parameters
- Since:
- jsrsasign 8.0.23 asn1x509 1.1.12