import { type SIGNATURE_ALGORITHM } from "../AlgorithmInformation-2009/SIGNATURE-ALGORITHM.oca.mjs"; /** * @summary SignatureAlgs * @description * * ### ASN.1 Definition: * * ```asn1 * SignatureAlgs SIGNATURE-ALGORITHM ::= { * sa-rsaWithMD2 | * sa-rsaWithMD5 | * sa-rsaWithSHA1 | * sa-dsaWithSHA1 | * sa-ecdsaWithSHA1, * ..., -- Extensible * sa-dsaWithSHA224 | * sa-dsaWithSHA256 | * sa-ecdsaWithSHA224 | * sa-ecdsaWithSHA256 | * sa-ecdsaWithSHA384 | * sa-ecdsaWithSHA512 * } * ``` * * @constant * @type {SIGNATURE_ALGORITHM[]} * */ export declare const SignatureAlgs: SIGNATURE_ALGORITHM[]; //# sourceMappingURL=SignatureAlgs.osa.d.mts.map