diff --git a/OTPConfiguration.GetFancySecret.md b/OTPConfiguration.GetFancySecret.md new file mode 100644 index 0000000..0b975ac --- /dev/null +++ b/OTPConfiguration.GetFancySecret.md @@ -0,0 +1,17 @@ +Namespace: `SimpleOTP.Models` + +Assembly: `SimpleOTP.dll` + +Returns secret key separated with whitespaces on groups of 4. +```csharp +public string GetFancySecret(); +``` + +### Returns +Formatted secret key string. + +### Example +```csharp +OTPConfiguration config = OTPConfiguration.GetConfiguration("ESQVTYRM2CWZC3NX24GRRWIAUUWVHWQH", "FoxDev Studio", "eugene@xfox111.net"); +Console.WriteLine(config.GetFancySecret()); // ESQV TYRM 2CWZ C3NX 24GR RWIA UUWV HWQH +``` \ No newline at end of file