7 lines
307 B
TypeScript
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 };
|