summaryrefslogtreecommitdiffstats
path: root/TwoStepsAuthenticator.TestApp/ViewModel.cs
diff options
context:
space:
mode:
authorChristoph Enzmann <christoph.enzmann@confer.ch>2013-12-05 13:01:46 +0100
committerChristoph Enzmann <christoph.enzmann@confer.ch>2013-12-05 13:01:46 +0100
commit0795b5d4083d9ad2cd5dfbcb5c12277f350485b2 (patch)
tree1a1878b94fc39a96eb37af291eda1796fbb627a5 /TwoStepsAuthenticator.TestApp/ViewModel.cs
parentb52682a9b3216a7d966238e3c8ed6b4da3920313 (diff)
downloadTwoStepsAuthenticator-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.cs2
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();
}