1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-19 07:35:48 +02:00
bitwarden-browser/src/abstractions/cryptoFunction.service.ts

5 lines
222 B
TypeScript
Raw Normal View History

export abstract class CryptoFunctionService {
2018-04-16 18:07:51 +02:00
pbkdf2: (password: string | ArrayBuffer, salt: string | ArrayBuffer, algorithm: 'sha256' | 'sha512',
iterations: number, length: number) => Promise<ArrayBuffer>;
}