import type EqualityMatcher from "../types/EqualityMatcher.mjs"; import type { OBJECT_IDENTIFIER } from "@wildboar/asn1"; import type { AuthorityKeyIdentifier } from "../modules/CertificateExtensions/AuthorityKeyIdentifier.ta.mjs"; /** * @summary Compare two `AuthorityKeyIdentifier` values * @param a One value * @param b The other * @returns {boolean} `true` if they match; `false` otherwise * @function */ export declare function compareAttCertIssuer(a: AuthorityKeyIdentifier, b: AuthorityKeyIdentifier, getEqualityMatcher?: (attributeType: OBJECT_IDENTIFIER) => EqualityMatcher | undefined): boolean; export default compareAttCertIssuer; //# sourceMappingURL=compareAuthorityKeyIdentifier.d.mts.map