change lookup name from kwallet_rw to casakwallet

This commit is contained in:
Jim Norman 2006-04-24 15:39:58 +00:00
parent 85aa2f3a40
commit c65e3b0beb
2 changed files with 114 additions and 110 deletions

View File

@ -1,3 +1,7 @@
-------------------------------------------------------------------
Mon Apr 24 04:40:20 MST 2006 - jnorman@novell.com
- change lookup name from kwallet_rw to casakwallet
-------------------------------------------------------------------
Sat Apr 22 18:52:20 MST 2006 - cmashayekhi@novell.com
- installcasa and uninstallcasa scripts were added to

View File

@ -28,22 +28,22 @@ using System.Runtime.InteropServices;
namespace Novell.CASA.DataEngines.KWallet
{
public class kwallet
{
public class kwallet
{
//private static int MAX_NAME_LENGTH = 512;
private const string CPP_LIB = "kwallets_rw";
private const string CPP_LIB = "casakwallet";
/*
/*
[DllImport(CPP_LIB)]
public static extern void MyTest(
EnumSecretList enumSecretList
);
*/
*/
[DllImport(CPP_LIB)]
public static extern void Aggregate(
EnumSecretList enumSecretList
@ -60,14 +60,14 @@ public class kwallet
[DllImport(CPP_LIB)]
public static extern int RemoveEntry(string walletName, string folderName, string keyName);
/*
/*
public static int Try(EnumSecretList enumSecretList)
{
MyTest(enumSecretList);
return 0;
}
*/
*/
public static int AggregateKW(EnumSecretList enumSecretList)
{
Aggregate(enumSecretList);
@ -120,8 +120,8 @@ public class kwallet
//TBD: All this for future.
/*
//TBD: All this for future.
/*
[DllImport(CPP_LIB)]
public static extern int ReadSecret
(
@ -186,8 +186,8 @@ public class kwallet
CloseAllWallets();
}
*/
}
*/
}
}