1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-20 10:13:31 +00:00

[EC-598] feat: first tested rule in new authentitcator

This commit is contained in:
Andreas Coroiu
2023-03-21 14:16:33 +01:00
parent e70d6cdcd4
commit c8ab590086
6 changed files with 156 additions and 8 deletions

View File

@@ -18,18 +18,19 @@ export interface Fido2AuthenticatorMakeCredentialsParams {
id?: string;
};
user: {
name: string;
displayName: string;
id: BufferSource;
name?: string;
displayName?: string;
icon?: string;
};
pubKeyCredParams: {
alg: number;
// type: "public-key"; // not used
type: "public-key"; // not used
}[];
excludeList?: {
id: BufferSource;
transports?: ("ble" | "internal" | "nfc" | "usb")[];
// type: "public-key"; // not used
type: "public-key"; // not used
}[];
extensions?: {
appid?: string;