@wildboar/ocsp
Version:
Online Certificate Status Protocol PDUs in TypeScript
16 lines • 429 B
text/typescript
import { OCTET_STRING } from "@wildboar/asn1";
import * as $ from "@wildboar/asn1/functional";
/**
* @summary KeyHash
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* KeyHash ::= OCTET STRING
* ```
*/
export type KeyHash = OCTET_STRING;
export declare const _decode_KeyHash: $.ASN1Decoder<OCTET_STRING>;
export declare const _encode_KeyHash: $.ASN1Encoder<OCTET_STRING>;
//# sourceMappingURL=KeyHash.ta.d.mts.map