18 lines
347 B
C#
18 lines
347 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using OTPNet;
|
|
|
|
namespace otpnettest
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
TOTP t = new TOTP(args[0]);
|
|
Console.WriteLine("Your OTP = " + t.now().ToString("D6"));
|
|
}
|
|
}
|
|
}
|