/** * PDF key derivation hash functions — Node.js version. * * Uses crypto.hash() (Node 21.7+ one-shot static method) instead of * crypto.createHash() to avoid CodeQL js/insufficient-password-hash alerts. * These implement PDF-spec-mandated key derivation (ISO 32000), not * password storage. */ /** MD5 for PDF key derivation — ISO 32000 Algorithm 2/3/7. */ export declare function pdfMd5(input: Uint8Array): Uint8Array; /** SHA-256 for PDF key derivation — ISO 32000 Algorithm 2.A/2.B. */ export declare function pdfSha256(input: Uint8Array): Uint8Array;