1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-10 21:33:36 +00:00
Files
mobile/src/Core/Utilities/Fido2/Fido2AlgorithmIdentifier.cs
2024-01-24 11:04:37 +01:00

7 lines
136 B
C#

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