summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Re added win32 directory in the distribution.Romain Chantereay2004-08-232-38/+1
|
* *** empty log message ***Nicolas Clapies2004-08-234-57/+58
|
* *** empty log message ***Nicolas Clapies2004-08-231-21/+23
|
* *** empty log message ***Nicolas Clapies2004-08-231-2/+4
|
* verify if session and identity are set in logout objectNicolas Clapies2004-08-231-0/+11
|
* Removed php subdirectories Makefile generations.Romain Chantereay2004-08-231-4/+0
|
* *** empty log message ***Nicolas Clapies2004-08-231-5/+24
|
* REmoved now useless binding files.Romain Chantereay2004-08-2328-4067/+0
| | | | See attic for more information.
* Now PHP Binding is handled by SWIG.Romain Chantereay2004-08-231-21/+23
|
* updpated process of protocol profileNicolas Clapies2004-08-235-28/+89
|
* added support of URI identifier in signatureNicolas Clapies2004-08-2312-79/+188
|
* Added a new param "use_xsitype" (gboolean) in constructors of classes:Valery Febvre2004-08-228-42/+208
| | | | | | LassoLibSubject, LassoLibAssertion, LassoLibAuthenticationStatement
* Added lasso_node_new_ns_prop() method in LassoNode classValery Febvre2004-08-222-3/+38
|
* updated debian package description; added packaging of the C# assembly.Frederic Peters2004-08-215-16/+46
|
* 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-214-3/+17
| | | | | this is sort of a cryptographic signature for DLL; not clear about this. The key is in csharp/lasso-sharp.snk
* Bug correction in last PHP changes.Emmanuel Raviart2004-08-211-4/+3
|
* 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).
* Updated "Writing a SP" doc & PHP binding to Lasso API change.Emmanuel Raviart2004-08-216-20/+20
|
* Moved param 'http_method' of lasso_login_build_authn_request_msg() methodValery Febvre2004-08-217-31/+42
| | | | | in lasso_login_init_authn_request() BEWARE : this change breaks the API
* Added checks not to do copies of NULL objects.Valery Febvre2004-08-211-4/+14
|
* Changed LASSO_PARAM_ERROR_INVALID_VALUE error messageValery Febvre2004-08-211-1/+1
|
* Fixed a mistake: the signature template should be added before the ProviderIDValery Febvre2004-08-211-5/+4
|
* getting there; it builds and installs correctly but I'm still trying toFrederic Peters2004-08-213-6/+17
| | | | | 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
* Removed lassoLibProtocolProfileSSOGet, lassoLibProtocolProfileSSOPostValery Febvre2004-08-211-2/+6
| | | | Added lassoXsiHRef, lassoXsiPrefix
* added c# binding; I'm not sure how all of this works and a little programFrederic Peters2004-08-213-36/+135
| | | | | | | | | | | | | | | | | | | | | | | | | | | 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(); } }
* Fixed lasso_server_new parameter type.Frederic Peters2004-08-212-4/+4
| | | | | | | When you make change in header files (such as [1]) think about the bindings and adapt them; thanks. [1] http://cvs.labs.libre-entreprise.org/cgi-bin/cvsweb.cgi/lasso/lasso/environs/server.c.diff?r1=1.54;r2=1.55;cvsroot=lasso
* replaced lots of const char* wasting memory and a treat to binary compatibilityFrederic Peters2004-08-213-237/+75
| | | | with lots of #define wasting nothing at all.
* doesn't fail on second runFrederic Peters2004-08-211-1/+1
|
* I prefer it that wayFrederic Peters2004-08-211-1/+1
|
* reenabled tests since the swig binding is ok nowFrederic Peters2004-08-211-2/+2
|
* Fixed a bug in lasso_login_accept_sso()Valery Febvre2004-08-212-73/+77
| | | | Updated gtk-doc
* Modified PHP bindings in an attempt to add new argument to methodEmmanuel Raviart2004-08-204-8/+11
| | | | lasso_build_authn_request_msg.
* Updated the documentation to reflect API change.Emmanuel Raviart2004-08-201-1/+1
|
* Added new argument to lasso_login_build_authn_request_msg.Emmanuel Raviart2004-08-204-15/+17
|
* Added a new param 'http_method' in lasso_login_build_authn_request_msg()Valery Febvre2004-08-202-37/+32
| | | | BEWARE : this change breaks the API
* The local clean rule now remove the package sub directory (com).Romain Chantereay2004-08-201-1/+2
| | | | | | The dirty rule now have a little goldy spray that test the existence of the com/entrouvert/lasso/lasso.java source file before trying to copy it from the distribution.
* Modified PHP extension installation directory, now it is prefixed.Romain Chantereay2004-08-201-2/+1
|
* Created unprefixed PHP_UNPREFIXED_EXTENTION_DIR in order to prefix it with theRomain Chantereay2004-08-201-42/+42
| | | | | | | | | | supplied configure prefix. Is it useful in this PHP special case ? I do not think so, but, the user is the master. Moved the libtool bad versionning computation after program tests in order to use the founded sed program ($SED) and not just 'sed'. Every calls to 'sed' use the founded 'sed' ($SED).
* talking about idpProviderIDFrederic Peters2004-08-201-2/+3
|
* file movedFrederic Peters2004-08-201-1/+1
|
* fixed function nameFrederic Peters2004-08-201-1/+1
|
* In Python high-level binding, constants are now defined using 2 forms: as aEmmanuel Raviart2004-08-201-16/+33
| | | | | global variable and as a dict item. For example: libNameIDPolicyTypeFederated and libNameIDPolicyTypes['federated'].
* Use libtool generated la instead of human -llasso and -Ldir...Romain Chantereay2004-08-201-1/+1
|