1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-28 02:23:25 +00:00

Implement rust fido2 for desktop mac and linux

This commit is contained in:
Bernd Schoolmann
2024-11-29 16:44:42 +01:00
parent d76b5b672c
commit 2f0c1610d9
15 changed files with 506 additions and 9 deletions

View File

@@ -138,4 +138,15 @@ export class CliPlatformUtilsService implements PlatformUtilsService {
getAutofillKeyboardShortcut(): Promise<string> {
return null;
}
supportsNativeWebauthn(): boolean {
return false;
}
performNativeWebauthnAuthentication(
challenge: string,
credentials: Array<string>,
origin: string,
): Promise<string> {
throw new Error("Method not implemented.");
}
}