diff --git a/ClientPasswordManager/Tester/App.ico b/ClientPasswordManager/Tester/App.ico deleted file mode 100644 index 3a5525fd..00000000 Binary files a/ClientPasswordManager/Tester/App.ico and /dev/null differ diff --git a/ClientPasswordManager/Tester/AssemblyInfo.cs b/ClientPasswordManager/Tester/AssemblyInfo.cs deleted file mode 100644 index 177a4f0e..00000000 --- a/ClientPasswordManager/Tester/AssemblyInfo.cs +++ /dev/null @@ -1,58 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; - -// -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -// -[assembly: AssemblyTitle("")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("")] -[assembly: AssemblyCopyright("")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Revision and Build Numbers -// by using the '*' as shown below: - -[assembly: AssemblyVersion("1.0.*")] - -// -// In order to sign your assembly you must specify a key to use. Refer to the -// Microsoft .NET Framework documentation for more information on assembly signing. -// -// Use the attributes below to control which key is used for signing. -// -// Notes: -// (*) If no key is specified, the assembly is not signed. -// (*) KeyName refers to a key that has been installed in the Crypto Service -// Provider (CSP) on your machine. KeyFile refers to a file which contains -// a key. -// (*) If the KeyFile and the KeyName values are both specified, the -// following processing occurs: -// (1) If the KeyName can be found in the CSP, that key is used. -// (2) If the KeyName does not exist and the KeyFile does exist, the key -// in the KeyFile is installed into the CSP and used. -// (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility. -// When specifying the KeyFile, the location of the KeyFile should be -// relative to the project output directory which is -// %Project Directory%\obj\. For example, if your KeyFile is -// located in the project directory, you would specify the AssemblyKeyFile -// attribute as [assembly: AssemblyKeyFile("..\\..\\mykey.snk")] -// (*) Delay Signing is an advanced option - see the Microsoft .NET Framework -// documentation for more information on this. -// -[assembly: AssemblyDelaySign(false)] -[assembly: AssemblyKeyFile("")] -[assembly: AssemblyKeyName("")] diff --git a/ClientPasswordManager/Tester/Class1.cs b/ClientPasswordManager/Tester/Class1.cs deleted file mode 100644 index dc4717c3..00000000 --- a/ClientPasswordManager/Tester/Class1.cs +++ /dev/null @@ -1,85 +0,0 @@ -using System; -using System.Net; -using System.Reflection ; -using Novell.Security.ClientPasswordManager; - - -namespace Tester -{ - /// - /// Summary description for Class1. - /// - class Class1 - { - /// - /// The main entry point for the application. - /// - [STAThread] - static void Main(string[] args) - { - // call NetCredential code - NetCredential nc = new NetCredential("Ifolder", "Network", true, "jnorman", "novell"); - NetCredential nc2 = new NetCredential("Ifolder", null, false, "ifolderusername", "novell"); - - NetworkCredential nwc = nc2.GetCredential(new System.Uri("http://IFolder"), "Basic"); - - if (nwc != null) - { - Console.WriteLine("Username: "+ nwc.UserName); - Console.WriteLine("Password: "+ nwc.Password); - } - - /* - // call SetCredential - Type type = assembly.GetType("Novell.CASA.miCASA"); - MemberInfo[] members = type.GetMembers(); - - object Instance = Activator.CreateInstance (type); - - object[] cargs = new object[4]; - //cargs[0] = 0; - cargs[0] = "AppSecretIDTest"; - cargs[1] = null; //"SharedSecretIDTEST"; - //cargs[3] = 0; - cargs[2] = "Username"; - cargs[3] = "password"; - - object result; // = type.InvokeMember ("SetCredential" ,BindingFlags.InvokeMethod ,null,Instance,cargs); - // call SetBasicCredential - try - { - type.InvokeMember("SetBasicCredential", BindingFlags.InvokeMethod, null, Instance, cargs); - } - catch (Exception e) - { - Console.WriteLine(e.ToString()); - } - - - // now get the basicCred back - try - { - object[] getArgs = new object[2]; - getArgs[0] = "AppSecretIDTest"; - getArgs[1] = null; - - - result = type.InvokeMember("GetCredentialUsername", BindingFlags.InvokeMethod, null, Instance, getArgs); - Console.WriteLine("Username: "+result.ToString()); - - result = type.InvokeMember("GetCredentialPassword", BindingFlags.InvokeMethod, null, Instance, getArgs); - Console.WriteLine("Password: "+result.ToString()); - // invoke the GetUsername and GetPassword methods - //Type basicCred = assembly.GetType("Novell.CASA.miCASA.BasicCredential"); - //object username = basicCred.InvokeMember("GetUsername", BindingFlags.InvokeMethod, null, result, null); - //object password = basicCred.InvokeMember("GetPassword", BindingFlags.InvokeMethod, null, result, null); - } - catch (Exception e) - { - Console.WriteLine(e.ToString()); - } - */ - - } - } -} diff --git a/ClientPasswordManager/Tester/Tester.csproj b/ClientPasswordManager/Tester/Tester.csproj deleted file mode 100644 index b47bec35..00000000 --- a/ClientPasswordManager/Tester/Tester.csproj +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ClientPasswordManager/Tester/Tester.csproj.user b/ClientPasswordManager/Tester/Tester.csproj.user deleted file mode 100644 index 9325edba..00000000 --- a/ClientPasswordManager/Tester/Tester.csproj.user +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - - -