| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- var CertificatePolicies_1;
- import { __decorate } from "tslib";
- import { AsnProp, AsnPropTypes, AsnType, AsnTypeTypes, AsnArray, } from "@peculiar/asn1-schema";
- import { id_ce } from "../object_identifiers.js";
- export const id_ce_certificatePolicies = `${id_ce}.32`;
- export const id_ce_certificatePolicies_anyPolicy = `${id_ce_certificatePolicies}.0`;
- let DisplayText = class DisplayText {
- ia5String;
- visibleString;
- bmpString;
- utf8String;
- constructor(params = {}) {
- Object.assign(this, params);
- }
- toString() {
- return this.ia5String || this.visibleString || this.bmpString || this.utf8String || "";
- }
- };
- __decorate([
- AsnProp({ type: AsnPropTypes.IA5String })
- ], DisplayText.prototype, "ia5String", void 0);
- __decorate([
- AsnProp({ type: AsnPropTypes.VisibleString })
- ], DisplayText.prototype, "visibleString", void 0);
- __decorate([
- AsnProp({ type: AsnPropTypes.BmpString })
- ], DisplayText.prototype, "bmpString", void 0);
- __decorate([
- AsnProp({ type: AsnPropTypes.Utf8String })
- ], DisplayText.prototype, "utf8String", void 0);
- DisplayText = __decorate([
- AsnType({ type: AsnTypeTypes.Choice })
- ], DisplayText);
- export { DisplayText };
- export class NoticeReference {
- organization = new DisplayText();
- noticeNumbers = [];
- constructor(params = {}) {
- Object.assign(this, params);
- }
- }
- __decorate([
- AsnProp({ type: DisplayText })
- ], NoticeReference.prototype, "organization", void 0);
- __decorate([
- AsnProp({
- type: AsnPropTypes.Integer, repeated: "sequence",
- })
- ], NoticeReference.prototype, "noticeNumbers", void 0);
- export class UserNotice {
- noticeRef;
- explicitText;
- constructor(params = {}) {
- Object.assign(this, params);
- }
- }
- __decorate([
- AsnProp({
- type: NoticeReference, optional: true,
- })
- ], UserNotice.prototype, "noticeRef", void 0);
- __decorate([
- AsnProp({
- type: DisplayText, optional: true,
- })
- ], UserNotice.prototype, "explicitText", void 0);
- let Qualifier = class Qualifier {
- cPSuri;
- userNotice;
- constructor(params = {}) {
- Object.assign(this, params);
- }
- };
- __decorate([
- AsnProp({ type: AsnPropTypes.IA5String })
- ], Qualifier.prototype, "cPSuri", void 0);
- __decorate([
- AsnProp({ type: UserNotice })
- ], Qualifier.prototype, "userNotice", void 0);
- Qualifier = __decorate([
- AsnType({ type: AsnTypeTypes.Choice })
- ], Qualifier);
- export { Qualifier };
- export class PolicyQualifierInfo {
- policyQualifierId = "";
- qualifier = new ArrayBuffer(0);
- constructor(params = {}) {
- Object.assign(this, params);
- }
- }
- __decorate([
- AsnProp({ type: AsnPropTypes.ObjectIdentifier })
- ], PolicyQualifierInfo.prototype, "policyQualifierId", void 0);
- __decorate([
- AsnProp({ type: AsnPropTypes.Any })
- ], PolicyQualifierInfo.prototype, "qualifier", void 0);
- export class PolicyInformation {
- policyIdentifier = "";
- policyQualifiers;
- constructor(params = {}) {
- Object.assign(this, params);
- }
- }
- __decorate([
- AsnProp({ type: AsnPropTypes.ObjectIdentifier })
- ], PolicyInformation.prototype, "policyIdentifier", void 0);
- __decorate([
- AsnProp({
- type: PolicyQualifierInfo, repeated: "sequence", optional: true,
- })
- ], PolicyInformation.prototype, "policyQualifiers", void 0);
- let CertificatePolicies = CertificatePolicies_1 = class CertificatePolicies extends AsnArray {
- constructor(items) {
- super(items);
- Object.setPrototypeOf(this, CertificatePolicies_1.prototype);
- }
- };
- CertificatePolicies = CertificatePolicies_1 = __decorate([
- AsnType({
- type: AsnTypeTypes.Sequence, itemType: PolicyInformation,
- })
- ], CertificatePolicies);
- export { CertificatePolicies };
|