diff options
author | Christoph Enzmann <christoph.enzmann@confer.ch> | 2013-12-05 13:01:46 +0100 |
---|---|---|
committer | Christoph Enzmann <christoph.enzmann@confer.ch> | 2013-12-05 13:01:46 +0100 |
commit | 0795b5d4083d9ad2cd5dfbcb5c12277f350485b2 (patch) | |
tree | 1a1878b94fc39a96eb37af291eda1796fbb627a5 /TwoStepsAuthenticator.TestApp/ViewModel.cs | |
parent | b52682a9b3216a7d966238e3c8ed6b4da3920313 (diff) | |
download | TwoStepsAuthenticator-0795b5d4083d9ad2cd5dfbcb5c12277f350485b2.zip TwoStepsAuthenticator-0795b5d4083d9ad2cd5dfbcb5c12277f350485b2.tar.gz TwoStepsAuthenticator-0795b5d4083d9ad2cd5dfbcb5c12277f350485b2.tar.bz2 |
GenerateKey now static, Update README.md
Diffstat (limited to 'TwoStepsAuthenticator.TestApp/ViewModel.cs')
-rw-r--r-- | TwoStepsAuthenticator.TestApp/ViewModel.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/TwoStepsAuthenticator.TestApp/ViewModel.cs b/TwoStepsAuthenticator.TestApp/ViewModel.cs index 5a2e7b6..adc07a4 100644 --- a/TwoStepsAuthenticator.TestApp/ViewModel.cs +++ b/TwoStepsAuthenticator.TestApp/ViewModel.cs @@ -73,7 +73,7 @@ namespace TwoStepsAuthenticatorTestApp public ViewModel() { var authenticator = new TwoStepsAuthenticator.TimeAuthenticator(); - this.Key = authenticator.GenerateKey(); + this.Key = TwoStepsAuthenticator.Authenticator.GenerateKey(); timer = new DispatcherTimer(TimeSpan.FromSeconds(1), DispatcherPriority.Normal, timerCallback, App.Current.Dispatcher); timer.Start(); } |