mirror of
https://github.com/bitwarden/mobile
synced 2025-12-10 21:33:36 +00:00
7 lines
136 B
C#
7 lines
136 B
C#
namespace Bit.Core.Utilities.Fido2 {
|
|
public enum Fido2AlgorithmIdentifier : int {
|
|
ES256 = -7,
|
|
RS256 = -257,
|
|
}
|
|
}
|