@wildboar/pc
Version:
Trusted Computing Group Platform Certificate ASN.1 data structures in TypeScript
108 lines • 2.09 kB
text/typescript
import * as $ from "@wildboar/asn1/functional";
/**
* @summary SecurityLevel
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* SecurityLevel ::= ENUMERATED {
* level1 (1),
* level2 (2),
* level3 (3),
* level4 (4) }
* ```
*
* @enum {number}
*/
export declare enum _enum_for_SecurityLevel {
level1 = 1,
level2 = 2,
level3 = 3,
level4 = 4
}
/**
* @summary SecurityLevel
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* SecurityLevel ::= ENUMERATED {
* level1 (1),
* level2 (2),
* level3 (3),
* level4 (4) }
* ```
*
* @enum {number}
*/
export type SecurityLevel = _enum_for_SecurityLevel;
/**
* @summary SecurityLevel
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* SecurityLevel ::= ENUMERATED {
* level1 (1),
* level2 (2),
* level3 (3),
* level4 (4) }
* ```
*
* @enum {number}
*/
export declare const SecurityLevel: typeof _enum_for_SecurityLevel;
/**
* @summary SecurityLevel_level1
* @constant
* @type {number}
*/
export declare const SecurityLevel_level1: SecurityLevel;
/**
* @summary level1
* @constant
* @type {number}
*/
export declare const level1: SecurityLevel;
/**
* @summary SecurityLevel_level2
* @constant
* @type {number}
*/
export declare const SecurityLevel_level2: SecurityLevel;
/**
* @summary level2
* @constant
* @type {number}
*/
export declare const level2: SecurityLevel;
/**
* @summary SecurityLevel_level3
* @constant
* @type {number}
*/
export declare const SecurityLevel_level3: SecurityLevel;
/**
* @summary level3
* @constant
* @type {number}
*/
export declare const level3: SecurityLevel;
/**
* @summary SecurityLevel_level4
* @constant
* @type {number}
*/
export declare const SecurityLevel_level4: SecurityLevel;
/**
* @summary level4
* @constant
* @type {number}
*/
export declare const level4: SecurityLevel;
export declare const _decode_SecurityLevel: $.ASN1Decoder<number>;
export declare const _encode_SecurityLevel: $.ASN1Encoder<number>;
//# sourceMappingURL=SecurityLevel.ta.d.mts.map