1
0
mirror of https://github.com/XFox111/SimpleOTP.git synced 2026-04-22 08:00:45 +03:00

Created OTPType (markdown)

2021-05-31 01:56:36 +03:00
parent f03ef86149
commit 737cdc8e63
+14
@@ -0,0 +1,14 @@
Namespace: `SimpleOTP.Enums`
Assembly: `SimpleOTP.dll`
OTP algorithm types.
```csharp
public enum OTPType
```
## Fields
| Field | Value | Description |
| ----- | ----- | -------------------------------------------------------------------------------------- |
| TOTP | 0 | Time-based One-Time Password [RFC 6238](https://datatracker.ietf.org/doc/html/rfc6238) |
| HOTP | 1 | HMAC-based One-Time Password [RFC 4226](https://datatracker.ietf.org/doc/html/rfc4226) |