summaryrefslogtreecommitdiffstats
path: root/NEWS
diff options
context:
space:
mode:
authorBenjamin Dauvergne <bdauvergne@entrouvert.com>2011-12-29 19:59:52 +0100
committerBenjamin Dauvergne <bdauvergne@entrouvert.com>2011-12-29 19:59:52 +0100
commit8aba7d48404f3345ce65496e50f5cfec1aafb6dc (patch)
treece88ce0baf9ec9d03e34e3bdac2fd8e4c735f790 /NEWS
parent892ffac34f6c9b095025cb293438c030dd9d51a9 (diff)
downloadlasso-8aba7d48404f3345ce65496e50f5cfec1aafb6dc.tar.gz
lasso-8aba7d48404f3345ce65496e50f5cfec1aafb6dc.tar.xz
lasso-8aba7d48404f3345ce65496e50f5cfec1aafb6dc.zip
update NEWS
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS24
1 files changed, 22 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 9349f778..7cfe9e1d 100644
--- a/NEWS
+++ b/NEWS
@@ -24,7 +24,7 @@ Minor version number increase since ABI was extended (new methods).
See the FAQ file for the workflow of a proper key roll-over.
- - Partial logout reponse now produce a specific error code when parsed by
+ - Partial logout reponse now produces a specific error code when parsed by
lasso_logout_process_response_msg()
- Bugs in lasso_assertion_query_build_request_msg() were fixed
- Processing of assertions is not stopped when checking that first level
@@ -49,11 +49,31 @@ Minor version number increase since ABI was extended (new methods).
>>> a.setOriginalXmlnode('<Dummy xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="string">Value</Dummy>')
>>> print a.debug(0)
<saml:AttributeValue xmlns:saml="urn:oasis:names:tc:SAML:2.0:assertion" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="string">Value</saml:AttributeValue>
+ - support for symetric keys signatures: for a long time XMLDisg standard has
+ supported HMAC signature, or signature based on a shared secret key an hash
+ algorithm. Lasso now does support to share a key with another Lasso using
+ service or identity provider and to verify and sign SAML exchange using this
+ key. Performance can be 100 times more than with assymetric cryptography,
+ i.e. RSA.
+ - nodes able to hold any XML attribyte (like saml:AttributeValue) contains a
+ hashtable to for holding those attributes, those hashtable have a new syntax
+ for attributes of another namespace than the current node namespace,
+ inspired by the Python ElementTree library:
+ {the_namespace}the_attribute_name
+
+ ex:
+
+ {http://www.w3.org/2001/XMLSchema-instance}type
+
+ for the classic xsi:type attribute.
- The perfs benchmarking tools now allows to select a different metadata set
(for example to test with different public key sizes).
- Perl minimal version for the binding was downgraded to 5
- - an FAQ file was started.
+ - pseudo-XSchema validation: the new XML deserializer does more to enforce
+ constraints of the schema defining SAML messages. It means Lasso is less
+ forgiving with non-conform implementation of SAML.
+ - a FAQ file was started.
2.3.6 - November 29th 2011