1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 01:33:33 +00:00

stub out crypto function service with pbkdf2

This commit is contained in:
Kyle Spearrin
2018-04-14 23:20:37 -04:00
parent 759ac04ee9
commit 4ad29e25f3
5 changed files with 68 additions and 5 deletions

View File

@@ -0,0 +1,3 @@
export abstract class CryptoFunctionService {
pbkdf2: (password: Buffer, salt: Buffer, iterations: number, length: number) => Promise<ArrayBuffer>
}