diff options
author | Guillaume Lacasa <guillaume.lacasa@ucaya.com> | 2013-06-12 18:42:34 +0200 |
---|---|---|
committer | Guillaume Lacasa <guillaume.lacasa@ucaya.com> | 2013-06-12 18:42:34 +0200 |
commit | f83d2a6a47734300a265273328f31120c38941e8 (patch) | |
tree | 734545fab6c462040668f9e8618557a80ad16356 /TwoStepsAuthenticator.TestApp/Program.cs | |
parent | d3ac57ba63e266e1edc5d503b602c7ff50618056 (diff) | |
download | TwoStepsAuthenticator-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.cs | 17 |
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)); + } + } +} |