mirror of
https://github.com/bitwarden/browser
synced 2025-12-19 01:33:33 +00:00
crypto function implementations
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
export abstract class CryptoFunctionService {
|
||||
pbkdf2: (password: Buffer, salt: Buffer, iterations: number, length: number) => Promise<ArrayBuffer>
|
||||
pbkdf2: (password: string | ArrayBuffer, salt: string | ArrayBuffer, algorithm: 'sha256' | 'sha512',
|
||||
iterations: number, length: number) => Promise<ArrayBuffer>;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user