1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-16 08:13:20 +00:00

[PM-5731] feat: start implementing attestation

This commit is contained in:
Andreas Coroiu
2024-01-24 11:04:37 +01:00
parent ce550fee74
commit 19639b61c3
7 changed files with 128 additions and 7 deletions

View File

@@ -0,0 +1,6 @@
namespace Bit.Core.Utilities.Fido2 {
public enum Fido2AlgorithmIdentifier : int {
ES256 = -7,
RS256 = -257,
}
}