summaryrefslogtreecommitdiffstats
path: root/csharp/Makefile.am
Commit message (Collapse)AuthorAgeFilesLines
* remove obsolete swig binding csharp, php5, python.Benjamin Dauvergne2008-05-271-130/+0
| | | | | java stays as long as alain coetmeur needs it php(4) will be superseded by the new bindings/php4 later.
* add Makefile.in to MAINTAINERCLEANFILES in every Makefile.amBenjamin Dauvergne2008-05-271-1/+1
|
* fix INCLUDESBenjamin Dauvergne2008-05-261-2/+2
|
* bring wsf files on make distFrederic Peters2005-05-251-4/+64
|
* MessageType.cs was removedFrederic Peters2005-02-221-1/+1
|
* missing csharp swig generated fileFrederic Peters2005-02-191-1/+1
|
* corrected enum CheckVersionMode binding (didn't work for c# and java)Frederic Peters2005-02-181-1/+1
|
* doesn't mention wsf files for now; a better solution will be devised in timeFrederic Peters2005-01-301-14/+6
|
* Added binding for saml:AttributeValue.Emmanuel Raviart2005-01-291-1/+1
| | | | Corrected use of constant LASSO_WSF_ENABLED in binding.
* every morning I distcheck and fix java and csharp classes; oh yeah.Frederic Peters2005-01-261-4/+5
|
* updated swig generated files list for C#Frederic Peters2005-01-251-25/+26
|
* Improved C# binding.Emmanuel Raviart2005-01-191-3/+3
|
* Extracted the inheritance of nodes from SWIG in a separate file, to removeEmmanuel Raviart2005-01-171-1/+2
| | | | | | its duplication in Lasso.i. Reorganized Lasso.i.
* install and uninstall correctly files (distcheck once again ok)Frederic Peters2005-01-121-1/+3
|
* replaced malloc by strdup; that was stupid.Frederic Peters2005-01-121-1/+1
|
* Renamed NodeArray (resp. StringArray) to NodeList (resp. StringList).Emmanuel Raviart2005-01-081-2/+2
|
* put c# binding in a lasso namespaceFrederic Peters2005-01-071-1/+2
|
* updated swig output files list for make distcheckFrederic Peters2005-01-031-10/+25
|
* don't use $< since it fails with BSD make.Frederic Peters2004-12-291-1/+1
|
* Commited Nicolas SWIG binding for WSF since he is on vacation.Frederic Peters2004-12-231-1/+1
|
* 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.
* 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-041-1/+1
|
* new classes -> new filesFrederic Peters2004-09-021-1/+2
|
* swig generate new objects/filenamesFrederic Peters2004-08-301-5/+5
|
* updated c# binding for new class namesFrederic Peters2004-08-291-11/+5
|
* Removed SWIG Lasso.c file.Emmanuel Raviart2004-08-271-2/+1
| | | | Added a Python test for defederation (currently it aborts).
* added Defederation profile; workaround lasso-sharp.snkFrederic Peters2004-08-251-1/+4
|
* more C# fun. dll is now registered with gacutil. But it needed a StrongName;Frederic Peters2004-08-211-3/+5
| | | | | 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
|
* 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-211-6/+8
| | | | | separate assembly name and file name. (no, I don't know what is an assembly name)
* 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(); } }