@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
16 lines • 507 B
text/typescript
import { OCTET_STRING } from "@wildboar/asn1";
import * as $ from "@wildboar/asn1/functional";
/**
* @summary SubjectKeyIdentifier
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* SubjectKeyIdentifier ::= OCTET STRING
* ```
*/
export type SubjectKeyIdentifier = OCTET_STRING;
export declare const _decode_SubjectKeyIdentifier: $.ASN1Decoder<OCTET_STRING>;
export declare const _encode_SubjectKeyIdentifier: $.ASN1Encoder<OCTET_STRING>;
//# sourceMappingURL=SubjectKeyIdentifier.ta.d.mts.map