summaryrefslogtreecommitdiffstats
path: root/lasso/Attic
Commit message (Collapse)AuthorAgeFilesLines
* Fixed a critical segfault bug when parsing an invalid SOAP message in ↵Nicolas Clapies2004-09-306-31/+21
| | | | private method lasso_{protocol_type}_new_from_soap().
* Fixed critical bug when parsing an invalid SOAP message in private method ↵Nicolas Clapies2004-09-301-1/+5
| | | | lasso_name_identifier_mapping_response_new_from_soap()
* Fixed critical bug when parsing an invalid SOAP message in private method ↵Nicolas Clapies2004-09-301-1/+5
| | | | lasso_name_identifier_mapping_new_from_soap()
* Added a parameter 'content' (optional) in ↵Valery Febvre2004-09-302-24/+38
| | | | | | lasso_federation_build_local_nameIdentifier() and lasso_federation_build_remote_nameIdentifier() methods
* Added lasso_federation_build_remote_nameIdentifier()Valery Febvre2004-09-302-0/+46
| | | | and lasso_federation_build_local_nameIdentifier() methods
* Replaced 2 lassoLibMinorVersion by 2 lassoSamlMinorVersionValery Febvre2004-09-292-4/+4
| | | | and 2 lassoLibMajorVersion by 2 lassoSamlMajorVersion
* Added comments in lasso_register_name_identifier_response_new()Nicolas Clapies2004-09-281-1/+6
|
* Renamed 'ca_certificate' property of LassoProvider object to 'ca_cert_chain'Valery Febvre2004-09-272-23/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | Added a new property 'secret_key' in LassoServer object Changed prototype of lasso_server_new() method BEFORE: LassoServer * lasso_server_new(gchar *metadata, gchar *public_key, gchar *private_key, gchar *certificate, lassoSignatureMethod signature_method) AFTER: LassoServer * lasso_server_new(const gchar *metadata, const gchar *private_key, const gchar *secret_key, const gchar *certificate) public_key param was removed because it was useless. secret_key was added to decrypt private_key signature_method was removed (default value is lassoSignatureMethodRsaSha1). 2 new methods was added to access 'signature_method' property of LassoServer: lasso_server_get_signature_method() and lasso_server_set_signature_method() Update Lasso.i
* - Removed odd private method : ↵Nicolas Clapies2004-09-252-101/+82
| | | | | | | | | lasso_name_identifier_mapping_response_new_from_query is not useful, Liberty Alliance does't implement Redirect method in name identifier mapping profile. - Added lasso_name_identifier_mapping_response_set_status_code_value() to define status code of the response.
* - Removed odd private method : ↵Nicolas Clapies2004-09-251-105/+0
| | | | | | lasso_name_identifier_mapping_request_new_from_query() has no sense. Liberty Alliance doesn't define Redirect method for name identifier mapping profile.
* Major update of code in lasso_name_identifier_mapping_init_request(), ↵Nicolas Clapies2004-09-234-78/+174
| | | | lasso_name_identifier_mapping_process_request(), lasso_name_identifier_mapping_validate_request(). Added binding in swig for name identifier mapping profile
* Removed old commented codeNicolas Clapies2004-09-231-5/+0
|
* Removed a ';' in excessValery Febvre2004-09-231-1/+1
|
* Added method lasso_lib_name_identifier_mapping_request_set_targetNameSpace() ↵Nicolas Clapies2004-09-222-2/+10
| | | | in lib_name_identifier_mapping_reques.c / h files. Added support of target name space in lasso_name_identifier_mapping_new() in name_identifier_mapping_request.c / h files. Added support of target name space in lasso_name_identifier_init_request() in name_identifier_mapping.c / h files
* forgotten commit; /insert const keyword explanation here/Frederic Peters2004-09-2214-31/+29
|
* fixed a lot of bug, added a new attribute oldNameIdentifier. Now after the ↵Nicolas Clapies2004-09-222-31/+54
| | | | process of the identity object ( or dump), nameIdentifier holds the new name identifier and oldNameIdentifier holds the old name identifier
* lasso_federation_set_local_nameIdentifier() and ↵Nicolas Clapies2004-09-221-0/+12
| | | | lasso_federation_set_remote_nameIdentifier() remove the old value before setting local_nameIdentifier of remote_nameIdentifier
* Added tests in lasso_register_name_identifier_response_new_from_query(). Now ↵Nicolas Clapies2004-09-201-10/+53
| | | | return NULL if a required key value is not found
* Added test lasso_register_name_identifier_request_new_from_query(). Verify ↵Nicolas Clapies2004-09-201-7/+12
| | | | if SPProvidedNameIdentifier exists in query (As specified in IDFF 1.2 errata, SPProvidedNameIdentifier is optional)
* remove removed codeFrederic Peters2004-09-172-19/+0
|
* Added tests if required attributes in ↵Nicolas Clapies2004-09-141-1/+65
| | | | lasso_register_name_identifier_request_new_from_query() are not found.
* Added lasso_provider_get_registerNameIdentifierServiceReturnURL() method in ↵Nicolas Clapies2004-09-102-0/+30
| | | | LassoProvider object
* missing includes, unusued variables, usual saturday stuff.Frederic Peters2004-09-042-9/+2
|
* removed extra parentheses after return statements;Frederic Peters2004-09-0118-142/+142
|
* Added parse support of xml message in ↵Nicolas Clapies2004-09-011-0/+23
| | | | lasso_logout_response_new_from_export(), added private method lasso_logout_response_new_from_export()
* Fixed bug when parsing from an export message in ↵Nicolas Clapies2004-09-011-3/+0
| | | | lasso_logout_request_new_from_xml() : call to lasso_node_destroy() at the wrong place
* fixed bug in lasso_logout_dump() and lasso_logout_new_from_dump()Nicolas Clapies2004-08-311-1/+27
|
* properly cast request to needed typeFrederic Peters2004-08-311-1/+1
|
* default: to set descriptor to NULL; so it won't be undefined on the next lineFrederic Peters2004-08-311-0/+3
| | | | where it was tested.
* xmlSecBase64Encode is used; xmlsec/base64.h must be includedFrederic Peters2004-08-311-0/+1
|
* Added in parse of query a test if the data list is not NULLNicolas Clapies2004-08-314-2/+18
|
* Fixed bug in lasso_logout_response_new_from_export() : now if a query ↵Nicolas Clapies2004-08-311-48/+54
| | | | message and if an attribute or element key / value is missing, return NULL
* Fixed bug in lasso_logout_request_new_from_export() : now if a query message ↵Nicolas Clapies2004-08-311-2/+42
| | | | and if an attribute or element key / value is missing, return NULL
* Added parsing of status code value in ↵Nicolas Clapies2004-08-301-2/+16
| | | | lasso_logout_response_new_from_query(). Now it sets the Status, StatusCode and his Value attribute in logoutResponse
* SWIG now produces high-level bindings.Emmanuel Raviart2004-08-282-54/+54
| | | | (python/Makefile.am needs some cleaning IMHO, but I don't understant it).
* Removed g_assert in samlp_request_abstract object when setting required ↵Nicolas Clapies2004-08-271-1/+42
| | | | attributes and elements. Added tests in federation termination notification building from QUERY export for required elements, return NULL if error, notification object if ok
* *** empty log message ***Nicolas Clapies2004-08-241-1/+1
|
* *** empty log message ***Nicolas Clapies2004-08-233-12/+14
|
* *** empty log message ***Nicolas Clapies2004-08-231-5/+24
|
* updpated process of protocol profileNicolas Clapies2004-08-232-5/+18
|
* added support of URI identifier in signatureNicolas Clapies2004-08-236-45/+73
|
* Added a new param "use_xsitype" (gboolean) in constructors of classes:Valery Febvre2004-08-222-3/+8
| | | | | | LassoLibSubject, LassoLibAssertion, LassoLibAuthenticationStatement
* Added checks not to do copies of NULL objects.Valery Febvre2004-08-211-4/+14
|
* Fixed a mistake: the signature template should be added before the ProviderIDValery Febvre2004-08-211-5/+4
|
* Fixed a mistake with name identifiers of the assertionsValery Febvre2004-08-192-35/+27
|
* Added a signature template in lasso_request_new()Valery Febvre2004-08-191-1/+7
|
* Added 2 params in lasso_authn_request_new()Valery Febvre2004-08-192-3/+14
| | | | sign_type & sign_method are used to build the signature template
* renamed federationTerminationReturnServiceURL to ↵Nicolas Clapies2004-08-182-3/+3
| | | | federationTerminationServiceReturnURL
* lasso_provider_get_assertionConsumerServiceURL now returns a glib-allocatedFrederic Peters2004-08-141-5/+8
| | | | | | | | | | | string (instead of libxml2-allocated) since it was already declared to return gchar*. Moreover it strips the returned string so that is is possible to have some spacings in the metadata file. <AssertionConsumerServiceURL id="AssertionConsumerServiceURL1" isDefault="true"> https://service-provider:2003/liberty-alliance/liberty-alliance/assertionConsumer </AssertionConsumerServiceURL> won't no more cause a redirect to Location:\n https://...
* get away from G_LOG_LEVEL_ERROR since they cause abort()Frederic Peters2004-08-145-12/+14
|