| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- import { __decorate } from "tslib";
- import { AsnProp, AsnPropTypes, AsnType, AsnTypeTypes, AsnOctetStringConverter } from "@peculiar/asn1-schema";
- import { IpConverter } from "./ip_converter.js";
- import { DirectoryString, Name } from "./name.js";
- export const AsnIpConverter = {
- fromASN: (value) => IpConverter.toString(AsnOctetStringConverter.fromASN(value)),
- toASN: (value) => AsnOctetStringConverter.toASN(IpConverter.fromString(value)),
- };
- export class OtherName {
- typeId = "";
- value = new ArrayBuffer(0);
- constructor(params = {}) {
- Object.assign(this, params);
- }
- }
- __decorate([
- AsnProp({ type: AsnPropTypes.ObjectIdentifier })
- ], OtherName.prototype, "typeId", void 0);
- __decorate([
- AsnProp({
- type: AsnPropTypes.Any,
- context: 0,
- })
- ], OtherName.prototype, "value", void 0);
- export class EDIPartyName {
- nameAssigner;
- partyName = new DirectoryString();
- constructor(params = {}) {
- Object.assign(this, params);
- }
- }
- __decorate([
- AsnProp({
- type: DirectoryString,
- optional: true,
- context: 0,
- implicit: true,
- })
- ], EDIPartyName.prototype, "nameAssigner", void 0);
- __decorate([
- AsnProp({
- type: DirectoryString,
- context: 1,
- implicit: true,
- })
- ], EDIPartyName.prototype, "partyName", void 0);
- let GeneralName = class GeneralName {
- otherName;
- rfc822Name;
- dNSName;
- x400Address;
- directoryName;
- ediPartyName;
- uniformResourceIdentifier;
- iPAddress;
- registeredID;
- constructor(params = {}) {
- Object.assign(this, params);
- }
- };
- __decorate([
- AsnProp({
- type: OtherName,
- context: 0,
- implicit: true,
- })
- ], GeneralName.prototype, "otherName", void 0);
- __decorate([
- AsnProp({
- type: AsnPropTypes.IA5String,
- context: 1,
- implicit: true,
- })
- ], GeneralName.prototype, "rfc822Name", void 0);
- __decorate([
- AsnProp({
- type: AsnPropTypes.IA5String,
- context: 2,
- implicit: true,
- })
- ], GeneralName.prototype, "dNSName", void 0);
- __decorate([
- AsnProp({
- type: AsnPropTypes.Any,
- context: 3,
- implicit: true,
- })
- ], GeneralName.prototype, "x400Address", void 0);
- __decorate([
- AsnProp({
- type: Name,
- context: 4,
- implicit: false,
- })
- ], GeneralName.prototype, "directoryName", void 0);
- __decorate([
- AsnProp({
- type: EDIPartyName,
- context: 5,
- })
- ], GeneralName.prototype, "ediPartyName", void 0);
- __decorate([
- AsnProp({
- type: AsnPropTypes.IA5String,
- context: 6,
- implicit: true,
- })
- ], GeneralName.prototype, "uniformResourceIdentifier", void 0);
- __decorate([
- AsnProp({
- type: AsnPropTypes.OctetString,
- context: 7,
- implicit: true,
- converter: AsnIpConverter,
- })
- ], GeneralName.prototype, "iPAddress", void 0);
- __decorate([
- AsnProp({
- type: AsnPropTypes.ObjectIdentifier,
- context: 8,
- implicit: true,
- })
- ], GeneralName.prototype, "registeredID", void 0);
- GeneralName = __decorate([
- AsnType({ type: AsnTypeTypes.Choice })
- ], GeneralName);
- export { GeneralName };
|