diff --git a/Algorithm.md b/Algorithm.md new file mode 100644 index 0000000..abb01cb --- /dev/null +++ b/Algorithm.md @@ -0,0 +1,15 @@ +Namespace: `SimpleOTP.Enums` + +Assembly: `SimpleOTP.dll` + +Available OTP encryption algorithms. +```csharp +public enum Algorithm +``` + +## Fields +| Field | Value | Description | +| ------ | ----- | ---------------------------------------------------------------------------------------------- | +| SHA1 | 0 | HMAC-SHA1 hasing algorithm (default) [RFC 3174](https://datatracker.ietf.org/doc/html/rfc3174) | +| SHA256 | 1 | HMAC-SHA256 hasing algorithm [RFC 4634](https://datatracker.ietf.org/doc/html/rfc4634) | +| SHA512 | 2 | HMAC-SHA512 hasing algorithm [RFC 4634](https://datatracker.ietf.org/doc/html/rfc4634) | \ No newline at end of file