Last change
on this file since 1848 was
1737,
checked in by svonolfe, 16 years ago
|
Passwords are now stored in MD5 in the database (#532)
|
File size:
753 bytes
|
Rev | Line | |
---|
[1713] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.ComponentModel;
|
---|
| 4 | using System.Data;
|
---|
| 5 | using System.Drawing;
|
---|
| 6 | using System.Linq;
|
---|
| 7 | using System.Text;
|
---|
| 8 | using System.Windows.Forms;
|
---|
| 9 |
|
---|
| 10 | namespace HeuristicLab.Security.Server {
|
---|
| 11 | public partial class SecurityServer : Form {
|
---|
[1737] | 12 | public SecurityServer(Dictionary<string, String> baseAddrDict) {
|
---|
[1713] | 13 | InitializeComponent();
|
---|
[1737] | 14 | String uri;
|
---|
[1713] | 15 | baseAddrDict.TryGetValue(SecurityServerApplication.STR_PermissionManager, out uri);
|
---|
| 16 | if (uri != null)
|
---|
| 17 | this.labelPermission.Text = uri.ToString();
|
---|
| 18 | baseAddrDict.TryGetValue(SecurityServerApplication.STR_SecurityManager, out uri);
|
---|
| 19 | if (uri != null)
|
---|
| 20 | this.labelSecurity.Text = uri.ToString();
|
---|
| 21 | }
|
---|
| 22 | }
|
---|
| 23 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.