From 737cdc8e63474ab3838edd34cfd5b6b275b621d4 Mon Sep 17 00:00:00 2001 From: Eugene Fox Date: Mon, 31 May 2021 01:56:36 +0300 Subject: [PATCH] Created OTPType (markdown) --- OTPType.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 OTPType.md diff --git a/OTPType.md b/OTPType.md new file mode 100644 index 0000000..d7a4edb --- /dev/null +++ b/OTPType.md @@ -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) | \ No newline at end of file