summaryrefslogtreecommitdiffstats
path: root/TwoStepsAuthenticator.TestApp/Program.cs
diff options
context:
space:
mode:
authorGuillaume Lacasa <guillaume.lacasa@ucaya.com>2013-06-12 18:42:34 +0200
committerGuillaume Lacasa <guillaume.lacasa@ucaya.com>2013-06-12 18:42:34 +0200
commitf83d2a6a47734300a265273328f31120c38941e8 (patch)
tree734545fab6c462040668f9e8618557a80ad16356 /TwoStepsAuthenticator.TestApp/Program.cs
parentd3ac57ba63e266e1edc5d503b602c7ff50618056 (diff)
downloadTwoStepsAuthenticator-f83d2a6a47734300a265273328f31120c38941e8.zip
TwoStepsAuthenticator-f83d2a6a47734300a265273328f31120c38941e8.tar.gz
TwoStepsAuthenticator-f83d2a6a47734300a265273328f31120c38941e8.tar.bz2
on avance dans l'algo
Diffstat (limited to 'TwoStepsAuthenticator.TestApp/Program.cs')
-rw-r--r--TwoStepsAuthenticator.TestApp/Program.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/TwoStepsAuthenticator.TestApp/Program.cs b/TwoStepsAuthenticator.TestApp/Program.cs
new file mode 100644
index 0000000..6aa9a3a
--- /dev/null
+++ b/TwoStepsAuthenticator.TestApp/Program.cs
@@ -0,0 +1,17 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace TwoStepsAuthenticator.TestApp
+{
+ class Program
+ {
+ static void Main(string[] args)
+ {
+ var auth = new TwoStepsAuthenticator();
+ auth.GetPinCode("JBSWY3DPEHPK3PXP", new DateTime(2013, 6, 12, 18, 0, 0));
+ }
+ }
+}