Files
T
2026-07-12 15:11:38 +02:00

7 lines
307 B
TypeScript

export interface DpapiBindings {
protectData(dataToEncrypt: Uint8Array, optionalEntropy: Uint8Array | null, scope: string): Uint8Array;
unprotectData(encryptData: Uint8Array, optionalEntropy: Uint8Array | null, scope: string): Uint8Array;
}
declare let Dpapi: DpapiBindings;
export { Dpapi };