mirror of
https://github.com/bitwarden/browser
synced 2026-01-05 18:13:26 +00:00
* Add AuditService. * Change sha1 to use Webcrypto. * Add interface for AuditService. * Move PwnedPasswodsApi constant outside class. * Change FromBufferToHex implementation to simpler code. * Use correct string to array function. * Change auditService interface to abstract class. Add missing type to utils.
4 lines
98 B
TypeScript
4 lines
98 B
TypeScript
export abstract class AuditService {
|
|
passwordLeaked: (password: string) => Promise<number>;
|
|
}
|