summaryrefslogtreecommitdiffstats
path: root/csharp
Commit message (Collapse)AuthorAgeFilesLines
* Commited Nicolas SWIG binding for WSF since he is on vacation.Frederic Peters2004-12-231-1/+1
|
* ignoring some more swig generated filesFrederic Peters2004-12-211-0/+4
|
* Updated list of files generated by SWIG in C# and Java bindings; fixed PHPFrederic Peters2004-12-211-20/+10
| | | | | Makefile.am; use $(srcdir) to get correct directory in code generation python scrips. make distcheck works after that.
* Isolated CFLAGS to be used when compiling Lasso in LASSO_CORE_CFLAGS; don't useFrederic Peters2004-12-171-1/+1
| | | | | those when compiling tests in order to catch errors in headers. Also moved a few things in header files; need more thinking about that.
* ignore generated filesFrederic Peters2004-12-141-0/+20
|
* merged late 0.5 changes to java/ and csharp/ Makefile.amFrederic Peters2004-11-221-2/+17
|
* Added new object Assertion to C# & Java bindings.Emmanuel Raviart2004-09-042-1/+2
|
* ignore some filesFrederic Peters2004-09-021-0/+3
|
* new classes -> new filesFrederic Peters2004-09-021-1/+2
|
* swig generate new objects/filenamesFrederic Peters2004-08-302-12/+9
|
* updated c# binding for new class namesFrederic Peters2004-08-292-42/+27
|
* Removed SWIG Lasso.c file.Emmanuel Raviart2004-08-271-2/+1
| | | | Added a Python test for defederation (currently it aborts).
* ignore new classFrederic Peters2004-08-251-1/+1
|
* added Defederation profile; workaround lasso-sharp.snkFrederic Peters2004-08-252-2/+5
|
* updated example with correct path to certificatesFrederic Peters2004-08-211-3/+3
|
* more C# fun. dll is now registered with gacutil. But it needed a StrongName;Frederic Peters2004-08-213-3/+11
| | | | | this is sort of a cryptographic signature for DLL; not clear about this. The key is in csharp/lasso-sharp.snk
* forgot to distribute lasso.dll.configFrederic Peters2004-08-211-1/+1
|
* C# exampleFrederic Peters2004-08-211-0/+27
|
* some files were renamedFrederic Peters2004-08-211-4/+6
|
* I don't know the purpose of this file.Frederic Peters2004-08-211-0/+3
|
* working lasso c# binding. next step is to figure how mono manages theFrederic Peters2004-08-211-2/+5
| | | | | directories (currently it looks like CLASSPATH mess but gacutil may be useful).
* getting there; it builds and installs correctly but I'm still trying toFrederic Peters2004-08-212-6/+16
| | | | | separate assembly name and file name. (no, I don't know what is an assembly name)
* a few files to ignoreFrederic Peters2004-08-211-0/+35
|
* usable lasso c# bindings; liblassosharpglue.so is installed in libdir andFrederic Peters2004-08-211-13/+38
| | | | | | lasso.dll in /usr/share/dotnet/lasso/ compile with mcs -g -nologo -r:lasso.dll -out:runme.exe runme.cs
* added c# binding; I'm not sure how all of this works and a little programFrederic Peters2004-08-211-0/+23
compiles and run: using System; public class runme { static void Main() { Console.WriteLine("lasso_init"); int rc = lassomod.lasso_init(); Console.WriteLine(String.Format("sortie de lasso_init: {0}", rc)); LassoServer server = new LassoServer( "../tests/data/idp1-la/metadata.xml", "", "../tests/data/idp1-la/private-key-raw.pem", "../tests/data/idp1-la/certificate.pem", lassomod.lassoSignatureMethodRsaSha1); Console.WriteLine("lasso_shutdown"); lassomod.lasso_shutdown(); } }