mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 08:13:42 +00:00
35 lines
769 B
TypeScript
35 lines
769 B
TypeScript
import { OsBiometricService } from "./biometrics.service.abstraction";
|
|
|
|
export default class NoopBiometricsService implements OsBiometricService {
|
|
constructor() {}
|
|
|
|
async init() {}
|
|
|
|
async osSupportsBiometric(): Promise<boolean> {
|
|
return false;
|
|
}
|
|
|
|
async getBiometricKey(
|
|
service: string,
|
|
storageKey: string,
|
|
clientKeyHalfB64: string,
|
|
): Promise<string | null> {
|
|
return null;
|
|
}
|
|
|
|
async setBiometricKey(
|
|
service: string,
|
|
storageKey: string,
|
|
value: string,
|
|
clientKeyPartB64: string | undefined,
|
|
): Promise<void> {
|
|
return;
|
|
}
|
|
|
|
async deleteBiometricKey(service: string, key: string): Promise<void> {}
|
|
|
|
async authenticateBiometric(): Promise<boolean> {
|
|
throw new Error("Not supported on this platform");
|
|
}
|
|
}
|