Browse Source
* [PM-4167] feat: add support for `SupportsPrf` * [PM-4167] feat: add `prfStatus` property * [PM-4167] feat: add support for storing PRF keys * [PM-4167] fix: allow credentials to be created without encryption support * [PM-4167] fix: broken test * [PM-4167] chore: remove whitespace * [PM-4167] fix: controller test * [PM-4167] chore: improve readability of `GetPrfStatus` * [PM-4167] fix: make prf optional * [PM-4167] fix: commit missing controller change * [PM-4167] fix: testspull/3417/head
9 changed files with 58 additions and 10 deletions
@ -0,0 +1,8 @@
@@ -0,0 +1,8 @@
|
||||
namespace Bit.Core.Auth.Enums; |
||||
|
||||
public enum WebAuthnPrfStatus |
||||
{ |
||||
Enabled = 0, |
||||
Supported = 1, |
||||
Unsupported = 2 |
||||
} |
||||
Loading…
Reference in new issue