From 159b1c85816bccef9377e81a771c3f3f18c716b3 Mon Sep 17 00:00:00 2001 From: Eugene Fox Date: Tue, 1 Jun 2021 15:39:14 +0300 Subject: [PATCH] Updated OTPService (markdown) --- OTPService.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/OTPService.md b/OTPService.md index 27b2ae1..6df285c 100644 --- a/OTPService.md +++ b/OTPService.md @@ -13,7 +13,9 @@ See `OTPService` usage examples on [Code generation/validation](https://github.c ## Methods | Method | Description | | --- | --- | -| [GenerateCode](https://github.com/XFox111/SimpleOTP/wiki/OTPService.GenerateCode) | Generates a new OTP code with provided configuration. | -| [ValidateHotp](https://github.com/XFox111/SimpleOTP/wiki/OTPService.ValidateHotp) | Validates provided HOTP code with provided parameters. | -| [ValidateTotp](https://github.com/XFox111/SimpleOTP/wiki/OTPService.ValidateTotp) | Validates provided TOTP code with provided parameters. | -| [ValidateCode](https://github.com/XFox111/SimpleOTP/wiki/OTPService.ValidateCode) | Obsolete. Validates provided OTP code with provided parameters. | \ No newline at end of file +| [GenerateCode(ref OTPConfiguration)](https://github.com/XFox111/SimpleOTP/wiki/OTPService.GenerateCode) | Generates a new OTP code with provided configuration. | +| [GenerateCode(ref OTPConfiguration, DateTime)](https://github.com/XFox111/SimpleOTP/wiki/OTPService.GenerateCode#generatecoderef-otpconfiguration-datetime) | Generates a new TOTP code with provided configuration and for specific interval. | +| [ValidateHotp(int, ref OTPConfiguration, int, bool)](https://github.com/XFox111/SimpleOTP/wiki/OTPService.ValidateHotp) | Validates provided HOTP code with provided parameters. | +| [ValidateTotp(int, OTPConfiguration, TimeSpan)](https://github.com/XFox111/SimpleOTP/wiki/OTPService.ValidateTotp) | Validates provided TOTP code with provided parameters. | +| [ValidateCode(int, ref OTPConfiguration, int, bool)](https://github.com/XFox111/SimpleOTP/wiki/OTPService.ValidateCode) | Obsolete. Validates provided HOTP code with provided parameters. | +| [ValidateCode(int, OTPConfiguration, TimeSpan)](https://github.com/XFox111/SimpleOTP/wiki/OTPService.ValidateCode#validatecodeint-otpconfiguration-timespan) | Obsolete. Validates provided TOTP code with provided parameters. | \ No newline at end of file