office-gobmx/libxmlsec
Christian Lohmaier db5e8c0650 allow to build with XCode 2.x
* XCode 2.x only comes with automake 1.6.3, and that doesn't know
  per-object CPPFLAGS, thus use per-object CFLAGS instead
* also it is picky about redefining the SOURCES in a conditional
  statement, so use a variable in a condition instead and add that
* Its linker also needs help locating libs that are using the
  relocation-placeholders, thus add -dylib_file linkerflag
* aclocal insists on a space between -I and argument

Change-Id: I35714a1a76a7b7823ee6b64a3296aeae96e7296a
Reviewed-on: https://gerrit.libreoffice.org/605
Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com>
Tested-by: Norbert Thiebaud <nthiebaud@gmail.com>
2012-09-12 21:59:06 +00:00
..
prj
makefile.mk allow to build with XCode 2.x 2012-09-12 21:59:06 +00:00
README
xmlsec1-1.2.14-ansi.patch Work around autoreconf de-ANSI-fication support error 2012-08-29 22:59:22 +02:00
xmlsec1-1.2.14_fix_extern_c.patch
xmlsec1-1.2.14_old_automake.patch allow to build with XCode 2.x 2012-09-12 21:59:06 +00:00
xmlsec1-android.patch
xmlsec1-configure-libxml-libxslt.patch
xmlsec1-configure.patch additional -lsoftokn3 lib materalized 2012-08-29 09:10:25 +01:00
xmlsec1-customkeymanage.patch
xmlsec1-mingw-keymgr-mscrypto.patch
xmlsec1-mingw32.patch
xmlsec1-noverify.patch
xmlsec1-nssdisablecallbacks.patch
xmlsec1-nssmangleciphers.patch
xmlsec1-olderlibxml2.patch
xmlsec1-update-config-sub-and-guess.patch
xmlsec1-vc10.patch

XML signing, etc. From [http://www.aleksey.com/xmlsec/]. Heavily patched.

The XML Security library has been modified, so that there is NO verification of
the certificate during sign or verification operation. On Windows this was done
in the function xmlSecMSCryptoX509StoreVerify (file src/mscrypto/x509vfy.c) and
on UNIX in xmlSecNssX509StoreVerify (file src/nss/x509vfy.c).

The implementation creates certificates from all of the X509Data children, such
as X509IssuerSerial and X509Certificate and stores them in a certificate store
(see xmlsec/src/mscrypto/x509.c:xmlSecMSCryptoX509DataNodeRead). It must then
find the certificate containing the public key which is used for validation
within that store. This is done in xmlSecMSCryptoX509StoreVerify. This function
however only takes those certificates into account which can be validated. This
was changed by the patch xmlsec1-noverify.patch, which prevents this certificate
validation.

xmlSecMSCryptoX509StoreVerify iterates over all certificates contained or
referenced in the X509Data elements and selects one which is no issuer of any of
the other certificates. This certificate is not necessarily the one which was
used for signing but it must contain the proper validation key, which is
sufficient to validate the signature. See 
http://www.w3.org/TR/xmldsig-core/#sec-X509Data 
for details.

There is a flag XMLSEC_KEYINFO_FLAGS_X509DATA_DONT_VERIFY_CERTS that can be set
in a xmlSecKeyInfoCtx (see function xmlSecNssKeyDataX509XmlRead, in file
src/nss/x509.c), which indicates that one can turn off the validation. However,
setting it will cause that the validation key is not found. If the flag is set,
then the key is not extracted from the certificate store which contains all the
certificates of the X509Data elements. In other words, the certificates which
are delivered within the XML signature are not used when looking for suitable
validation key.