xmlsec-shim 1.2.18.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/README.md +2 -0
- data/Rakefile +2 -0
- data/ext/xmlsec/extconf.rb +14 -0
- data/lib/xmlsec-shim.rb +27 -0
- data/lib/xmlsec-shim/version.rb +5 -0
- data/vendor/xmlsec1-1.2.18/AUTHORS +8 -0
- data/vendor/xmlsec1-1.2.18/COPYING +105 -0
- data/vendor/xmlsec1-1.2.18/ChangeLog +1810 -0
- data/vendor/xmlsec1-1.2.18/Copyright +105 -0
- data/vendor/xmlsec1-1.2.18/HACKING +199 -0
- data/vendor/xmlsec1-1.2.18/INSTALL +38 -0
- data/vendor/xmlsec1-1.2.18/Makefile.am +186 -0
- data/vendor/xmlsec1-1.2.18/Makefile.in +1155 -0
- data/vendor/xmlsec1-1.2.18/NEWS +1 -0
- data/vendor/xmlsec1-1.2.18/README +15 -0
- data/vendor/xmlsec1-1.2.18/TODO +156 -0
- data/vendor/xmlsec1-1.2.18/aclocal.m4 +1197 -0
- data/vendor/xmlsec1-1.2.18/apps/Makefile.am +84 -0
- data/vendor/xmlsec1-1.2.18/apps/Makefile.in +694 -0
- data/vendor/xmlsec1-1.2.18/apps/cmdline.c +355 -0
- data/vendor/xmlsec1-1.2.18/apps/cmdline.h +89 -0
- data/vendor/xmlsec1-1.2.18/apps/crypto.c +396 -0
- data/vendor/xmlsec1-1.2.18/apps/crypto.h +70 -0
- data/vendor/xmlsec1-1.2.18/apps/xmlsec.c +3058 -0
- data/vendor/xmlsec1-1.2.18/config.guess +1502 -0
- data/vendor/xmlsec1-1.2.18/config.h.in +134 -0
- data/vendor/xmlsec1-1.2.18/config.sub +1714 -0
- data/vendor/xmlsec1-1.2.18/configure +17363 -0
- data/vendor/xmlsec1-1.2.18/configure.in +1633 -0
- data/vendor/xmlsec1-1.2.18/depcomp +630 -0
- data/vendor/xmlsec1-1.2.18/docs/Makefile.am +65 -0
- data/vendor/xmlsec1-1.2.18/docs/Makefile.in +721 -0
- data/vendor/xmlsec1-1.2.18/docs/api/Makefile.am +209 -0
- data/vendor/xmlsec1-1.2.18/docs/api/Makefile.in +664 -0
- data/vendor/xmlsec1-1.2.18/docs/api/chapters/compiling-and-linking.sgml +252 -0
- data/vendor/xmlsec1-1.2.18/docs/api/chapters/creating-templates.sgml +325 -0
- data/vendor/xmlsec1-1.2.18/docs/api/chapters/examples.sgml +102 -0
- data/vendor/xmlsec1-1.2.18/docs/api/chapters/init-and-shutdown.sgml +104 -0
- data/vendor/xmlsec1-1.2.18/docs/api/chapters/new-crypto.sgml +487 -0
- data/vendor/xmlsec1-1.2.18/docs/api/chapters/sign-and-encrypt.sgml +286 -0
- data/vendor/xmlsec1-1.2.18/docs/api/chapters/using-contexts.sgml +138 -0
- data/vendor/xmlsec1-1.2.18/docs/api/chapters/using-keys.sgml +26 -0
- data/vendor/xmlsec1-1.2.18/docs/api/chapters/using-keysmngr.sgml +592 -0
- data/vendor/xmlsec1-1.2.18/docs/api/chapters/using-transforms.sgml +67 -0
- data/vendor/xmlsec1-1.2.18/docs/api/chapters/using-x509-certs.sgml +197 -0
- data/vendor/xmlsec1-1.2.18/docs/api/chapters/verify-and-decrypt.sgml +265 -0
- data/vendor/xmlsec1-1.2.18/docs/api/home.png +0 -0
- data/vendor/xmlsec1-1.2.18/docs/api/images/diagrams.sxd +0 -0
- data/vendor/xmlsec1-1.2.18/docs/api/images/encryption-structure.png +0 -0
- data/vendor/xmlsec1-1.2.18/docs/api/images/key.png +0 -0
- data/vendor/xmlsec1-1.2.18/docs/api/images/keysmngr.png +0 -0
- data/vendor/xmlsec1-1.2.18/docs/api/images/sign-enc-model.png +0 -0
- data/vendor/xmlsec1-1.2.18/docs/api/images/signature-structure.png +0 -0
- data/vendor/xmlsec1-1.2.18/docs/api/images/structure.png +0 -0
- data/vendor/xmlsec1-1.2.18/docs/api/images/transform.png +0 -0
- data/vendor/xmlsec1-1.2.18/docs/api/images/transforms-chain.png +0 -0
- data/vendor/xmlsec1-1.2.18/docs/api/images/verif-dec-model.png +0 -0
- data/vendor/xmlsec1-1.2.18/docs/api/index.html +307 -0
- data/vendor/xmlsec1-1.2.18/docs/api/index.sgml +43 -0
- data/vendor/xmlsec1-1.2.18/docs/api/left.png +0 -0
- data/vendor/xmlsec1-1.2.18/docs/api/right.png +0 -0
- data/vendor/xmlsec1-1.2.18/docs/api/up.png +0 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-app.html +1525 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-base64.html +357 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-bn.html +705 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-buffer.html +603 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-custom-keys-manager.html +475 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-decrypt-with-keys-mngr.html +396 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-decrypt-with-signle-key.html +326 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-dl.html +245 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-encrypt-dynamic-template.html +386 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-encrypt-template-file.html +364 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-encrypt-with-session-key.html +495 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-encryption-klasses.html +101 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-errors.html +744 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-examples-sign-dynamimc-template.html +406 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-examples-sign-template-file.html +388 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-examples-sign-x509.html +447 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-examples.html +119 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-gcrypt-app.html +578 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-gcrypt-crypto.html +1128 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-gcrypt-ref.html +107 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-gcrypt.sgml +15 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-gnutls-app.html +576 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-gnutls-crypto.html +1076 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-gnutls-ref.html +107 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-gnutls.sgml +15 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-index.html +1570 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-index.sgml +1471 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-io.html +226 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-keyinfo.html +700 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-keys.html +1161 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-keysdata.html +2067 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-keysmngr.html +743 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-list.html +643 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-membuf.html +143 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-mscrypto-app.html +747 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-mscrypto-certkeys.html +252 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-mscrypto-crypto.html +1153 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-mscrypto-keysstore.html +209 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-mscrypto-ref.html +113 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-mscrypto-x509.html +478 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-mscrypto.sgml +21 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-nodeset.html +542 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-notes-compiling-others.html +102 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-notes-compiling-unix.html +223 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-notes-compiling-windows.html +138 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-notes-compiling.html +117 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-notes-contexts.html +229 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-notes-custom-keys-store.html +250 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-notes-decrypt.html +205 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-notes-dynamic-encryption-templates.html +240 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-notes-dynamic-signature-templates.html +250 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-notes-encrypt.html +223 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-notes-include-files.html +141 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-notes-init-shutdown.html +194 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-notes-keys-manager-sign-enc.html +307 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-notes-keys-mngr-verify-decrypt.html +179 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-notes-keys.html +120 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-notes-keysmngr.html +140 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-notes-new-crypto-functions.html +151 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-notes-new-crypto-key-stores.html +83 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-notes-new-crypto-keys.html +103 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-notes-new-crypto-klasses.html +217 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-notes-new-crypto-sharing-results.html +125 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-notes-new-crypto-simple-keys-mngr.html +102 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-notes-new-crypto-skeleton.html +254 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-notes-new-crypto-transforms.html +170 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-notes-new-crypto.html +136 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-notes-overview.html +102 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-notes-sign-encrypt.html +120 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-notes-sign-x509.html +176 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-notes-sign.html +210 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-notes-simple-keys-store.html +177 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-notes-structure.html +115 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-notes-templates.html +114 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-notes-transforms.html +154 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-notes-verify-decrypt.html +120 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-notes-verify-x509.html +180 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-notes-verify.html +210 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-notes-x509.html +114 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-notes.html +115 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-nss-app.html +740 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-nss-bignum.html +176 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-nss-crypto.html +978 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-nss-keysstore.html +209 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-nss-pkikeys.html +211 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-nss-ref.html +115 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-nss-x509.html +467 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-nss.sgml +23 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-openssl-app.html +800 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-openssl-bn.html +170 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-openssl-crypto.html +1329 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-openssl-evp.html +184 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-openssl-ref.html +113 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-openssl-x509.html +567 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-openssl.sgml +21 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-parser.html +223 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-ref.html +149 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-reference.html +106 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-signature-klasses.html +101 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-templates.html +1290 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-transforms.html +3059 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-verify-with-key.html +318 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-verify-with-keys-mngr.html +388 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-verify-with-restrictions.html +715 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-verify-with-x509.html +369 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-version.html +143 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-x509.html +181 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-xmldsig.html +853 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-xmlenc.html +584 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-xmlsec.html +300 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec-xmltree.html +1529 -0
- data/vendor/xmlsec1-1.2.18/docs/api/xmlsec.sgml +307 -0
- data/vendor/xmlsec1-1.2.18/docs/authors.html +59 -0
- data/vendor/xmlsec1-1.2.18/docs/bugs.html +106 -0
- data/vendor/xmlsec1-1.2.18/docs/c14n.html +73 -0
- data/vendor/xmlsec1-1.2.18/docs/documentation.html +65 -0
- data/vendor/xmlsec1-1.2.18/docs/download.html +115 -0
- data/vendor/xmlsec1-1.2.18/docs/faq.html +449 -0
- data/vendor/xmlsec1-1.2.18/docs/images/bart.gif +0 -0
- data/vendor/xmlsec1-1.2.18/docs/images/libxml2-logo.png +0 -0
- data/vendor/xmlsec1-1.2.18/docs/images/libxslt-logo.png +0 -0
- data/vendor/xmlsec1-1.2.18/docs/images/logo.gif +0 -0
- data/vendor/xmlsec1-1.2.18/docs/images/openssl-logo.png +0 -0
- data/vendor/xmlsec1-1.2.18/docs/images/xmlsec-logo.gif +0 -0
- data/vendor/xmlsec1-1.2.18/docs/index.html +109 -0
- data/vendor/xmlsec1-1.2.18/docs/news.html +545 -0
- data/vendor/xmlsec1-1.2.18/docs/related.html +165 -0
- data/vendor/xmlsec1-1.2.18/docs/xmldsig-verifier.html +138 -0
- data/vendor/xmlsec1-1.2.18/docs/xmldsig.html +646 -0
- data/vendor/xmlsec1-1.2.18/docs/xmlenc.html +464 -0
- data/vendor/xmlsec1-1.2.18/docs/xmlsec-man.html +291 -0
- data/vendor/xmlsec1-1.2.18/docs/xmlsec.xsl +194 -0
- data/vendor/xmlsec1-1.2.18/examples/Makefile +40 -0
- data/vendor/xmlsec1-1.2.18/examples/Makefile.w32 +88 -0
- data/vendor/xmlsec1-1.2.18/examples/README +126 -0
- data/vendor/xmlsec1-1.2.18/examples/binary.dat +1 -0
- data/vendor/xmlsec1-1.2.18/examples/decrypt1.c +223 -0
- data/vendor/xmlsec1-1.2.18/examples/decrypt2.c +293 -0
- data/vendor/xmlsec1-1.2.18/examples/decrypt3.c +372 -0
- data/vendor/xmlsec1-1.2.18/examples/deskey.bin +1 -0
- data/vendor/xmlsec1-1.2.18/examples/encrypt1-res.xml +13 -0
- data/vendor/xmlsec1-1.2.18/examples/encrypt1-tmpl.xml +13 -0
- data/vendor/xmlsec1-1.2.18/examples/encrypt1.c +219 -0
- data/vendor/xmlsec1-1.2.18/examples/encrypt2-doc.xml +9 -0
- data/vendor/xmlsec1-1.2.18/examples/encrypt2-res.xml +14 -0
- data/vendor/xmlsec1-1.2.18/examples/encrypt2.c +244 -0
- data/vendor/xmlsec1-1.2.18/examples/encrypt3-doc.xml +9 -0
- data/vendor/xmlsec1-1.2.18/examples/encrypt3-res.xml +27 -0
- data/vendor/xmlsec1-1.2.18/examples/encrypt3.c +340 -0
- data/vendor/xmlsec1-1.2.18/examples/mywin32make.bat +18 -0
- data/vendor/xmlsec1-1.2.18/examples/rootcert.pem +25 -0
- data/vendor/xmlsec1-1.2.18/examples/rsacert.pem +83 -0
- data/vendor/xmlsec1-1.2.18/examples/rsakey.pem +27 -0
- data/vendor/xmlsec1-1.2.18/examples/rsapub.pem +9 -0
- data/vendor/xmlsec1-1.2.18/examples/sign1-res.xml +31 -0
- data/vendor/xmlsec1-1.2.18/examples/sign1-tmpl.xml +27 -0
- data/vendor/xmlsec1-1.2.18/examples/sign1.c +212 -0
- data/vendor/xmlsec1-1.2.18/examples/sign2-doc.xml +9 -0
- data/vendor/xmlsec1-1.2.18/examples/sign2-res.xml +30 -0
- data/vendor/xmlsec1-1.2.18/examples/sign2.c +248 -0
- data/vendor/xmlsec1-1.2.18/examples/sign3-doc.xml +9 -0
- data/vendor/xmlsec1-1.2.18/examples/sign3-res.xml +58 -0
- data/vendor/xmlsec1-1.2.18/examples/sign3.c +261 -0
- data/vendor/xmlsec1-1.2.18/examples/verify1.c +215 -0
- data/vendor/xmlsec1-1.2.18/examples/verify2.c +285 -0
- data/vendor/xmlsec1-1.2.18/examples/verify3.c +266 -0
- data/vendor/xmlsec1-1.2.18/examples/verify4-bad-res.xml +90 -0
- data/vendor/xmlsec1-1.2.18/examples/verify4-bad-tmpl.xml +54 -0
- data/vendor/xmlsec1-1.2.18/examples/verify4-res.xml +80 -0
- data/vendor/xmlsec1-1.2.18/examples/verify4-tmpl.xml +47 -0
- data/vendor/xmlsec1-1.2.18/examples/verify4.c +309 -0
- data/vendor/xmlsec1-1.2.18/examples/xkms-server.c +839 -0
- data/vendor/xmlsec1-1.2.18/examples/xmldsigverify.c +381 -0
- data/vendor/xmlsec1-1.2.18/include/Makefile.am +4 -0
- data/vendor/xmlsec1-1.2.18/include/Makefile.in +656 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/Makefile.am +63 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/Makefile.in +767 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/app.h +424 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/base64.h +67 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/bn.h +99 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/buffer.h +108 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/crypto.h +75 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/dl.h +56 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/errors.h +504 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/exports.h +111 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/gcrypt/Makefile.am +13 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/gcrypt/Makefile.in +564 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/gcrypt/app.h +96 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/gcrypt/crypto.h +460 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/gcrypt/symbols.h +104 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/gnutls/Makefile.am +14 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/gnutls/Makefile.in +565 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/gnutls/app.h +96 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/gnutls/crypto.h +462 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/gnutls/symbols.h +104 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/gnutls/x509.h +110 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/io.h +54 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/keyinfo.h +285 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/keys.h +278 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/keysdata.h +837 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/keysmngr.h +264 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/list.h +194 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/membuf.h +44 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/mscrypto/Makefile.am +16 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/mscrypto/Makefile.in +567 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/mscrypto/app.h +116 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/mscrypto/certkeys.h +42 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/mscrypto/crypto.h +516 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/mscrypto/keysstore.h +48 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/mscrypto/symbols.h +114 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/mscrypto/x509.h +92 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/nodeset.h +139 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/nss/Makefile.am +17 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/nss/Makefile.in +568 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/nss/app.h +118 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/nss/bignum.h +37 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/nss/crypto.h +469 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/nss/keysstore.h +46 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/nss/pkikeys.h +44 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/nss/symbols.h +106 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/nss/x509.h +91 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/openssl/Makefile.am +16 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/openssl/Makefile.in +567 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/openssl/app.h +128 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/openssl/bn.h +35 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/openssl/crypto.h +561 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/openssl/evp.h +44 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/openssl/symbols.h +123 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/openssl/x509.h +109 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/parser.h +51 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/private.h +489 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/private/Makefile.am +12 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/private/Makefile.in +563 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/private/xkms.h +121 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/private/xslt.h +34 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/skeleton/Makefile.am +13 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/skeleton/app.h +97 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/skeleton/crypto.h +40 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/skeleton/symbols.h +117 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/soap.h +130 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/strings.h +610 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/templates.h +162 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/transforms.h +994 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/version.h +61 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/version.h.in +61 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/x509.h +80 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/xkms.h +652 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/xmldsig.h +281 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/xmlenc.h +163 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/xmlsec.h +216 -0
- data/vendor/xmlsec1-1.2.18/include/xmlsec/xmltree.h +275 -0
- data/vendor/xmlsec1-1.2.18/install-sh +520 -0
- data/vendor/xmlsec1-1.2.18/ltmain.sh +8413 -0
- data/vendor/xmlsec1-1.2.18/m4/libtool.m4 +7377 -0
- data/vendor/xmlsec1-1.2.18/m4/ltoptions.m4 +368 -0
- data/vendor/xmlsec1-1.2.18/m4/ltsugar.m4 +123 -0
- data/vendor/xmlsec1-1.2.18/m4/ltversion.m4 +23 -0
- data/vendor/xmlsec1-1.2.18/m4/lt~obsolete.m4 +92 -0
- data/vendor/xmlsec1-1.2.18/man/Makefile.am +52 -0
- data/vendor/xmlsec1-1.2.18/man/Makefile.in +582 -0
- data/vendor/xmlsec1-1.2.18/man/xmlsec1-config.1 +34 -0
- data/vendor/xmlsec1-1.2.18/man/xmlsec1.1 +269 -0
- data/vendor/xmlsec1-1.2.18/missing +376 -0
- data/vendor/xmlsec1-1.2.18/scripts/build_release.sh +33 -0
- data/vendor/xmlsec1-1.2.18/scripts/change-release.sh +34 -0
- data/vendor/xmlsec1-1.2.18/scripts/push_release.sh +30 -0
- data/vendor/xmlsec1-1.2.18/scripts/remove-gtkdoclink.pl +20 -0
- data/vendor/xmlsec1-1.2.18/scripts/test_errors.pl +38 -0
- data/vendor/xmlsec1-1.2.18/scripts/test_release.sh +12 -0
- data/vendor/xmlsec1-1.2.18/src/Makefile.am +71 -0
- data/vendor/xmlsec1-1.2.18/src/Makefile.in +878 -0
- data/vendor/xmlsec1-1.2.18/src/app.c +1498 -0
- data/vendor/xmlsec1-1.2.18/src/base64.c +1034 -0
- data/vendor/xmlsec1-1.2.18/src/bn.c +1060 -0
- data/vendor/xmlsec1-1.2.18/src/buffer.c +674 -0
- data/vendor/xmlsec1-1.2.18/src/c14n.c +801 -0
- data/vendor/xmlsec1-1.2.18/src/dl.c +994 -0
- data/vendor/xmlsec1-1.2.18/src/enveloped.c +152 -0
- data/vendor/xmlsec1-1.2.18/src/errors.c +242 -0
- data/vendor/xmlsec1-1.2.18/src/gcrypt/Makefile.am +55 -0
- data/vendor/xmlsec1-1.2.18/src/gcrypt/Makefile.in +764 -0
- data/vendor/xmlsec1-1.2.18/src/gcrypt/README +9 -0
- data/vendor/xmlsec1-1.2.18/src/gcrypt/app.c +663 -0
- data/vendor/xmlsec1-1.2.18/src/gcrypt/asn1.c +602 -0
- data/vendor/xmlsec1-1.2.18/src/gcrypt/asn1.h +39 -0
- data/vendor/xmlsec1-1.2.18/src/gcrypt/asymkeys.c +1920 -0
- data/vendor/xmlsec1-1.2.18/src/gcrypt/ciphers.c +855 -0
- data/vendor/xmlsec1-1.2.18/src/gcrypt/crypto.c +315 -0
- data/vendor/xmlsec1-1.2.18/src/gcrypt/digests.c +614 -0
- data/vendor/xmlsec1-1.2.18/src/gcrypt/globals.h +30 -0
- data/vendor/xmlsec1-1.2.18/src/gcrypt/hmac.c +823 -0
- data/vendor/xmlsec1-1.2.18/src/gcrypt/kw_aes.c +593 -0
- data/vendor/xmlsec1-1.2.18/src/gcrypt/kw_des.c +607 -0
- data/vendor/xmlsec1-1.2.18/src/gcrypt/signatures.c +1490 -0
- data/vendor/xmlsec1-1.2.18/src/gcrypt/symkeys.c +441 -0
- data/vendor/xmlsec1-1.2.18/src/globals.h +25 -0
- data/vendor/xmlsec1-1.2.18/src/gnutls/Makefile.am +58 -0
- data/vendor/xmlsec1-1.2.18/src/gnutls/Makefile.in +786 -0
- data/vendor/xmlsec1-1.2.18/src/gnutls/README +6 -0
- data/vendor/xmlsec1-1.2.18/src/gnutls/app.c +998 -0
- data/vendor/xmlsec1-1.2.18/src/gnutls/asymkeys.c +455 -0
- data/vendor/xmlsec1-1.2.18/src/gnutls/ciphers.c +82 -0
- data/vendor/xmlsec1-1.2.18/src/gnutls/crypto.c +351 -0
- data/vendor/xmlsec1-1.2.18/src/gnutls/digests.c +112 -0
- data/vendor/xmlsec1-1.2.18/src/gnutls/globals.h +31 -0
- data/vendor/xmlsec1-1.2.18/src/gnutls/hmac.c +141 -0
- data/vendor/xmlsec1-1.2.18/src/gnutls/kw_aes.c +72 -0
- data/vendor/xmlsec1-1.2.18/src/gnutls/kw_des.c +51 -0
- data/vendor/xmlsec1-1.2.18/src/gnutls/signatures.c +148 -0
- data/vendor/xmlsec1-1.2.18/src/gnutls/symkeys.c +125 -0
- data/vendor/xmlsec1-1.2.18/src/gnutls/x509.c +1960 -0
- data/vendor/xmlsec1-1.2.18/src/gnutls/x509utils.c +1687 -0
- data/vendor/xmlsec1-1.2.18/src/gnutls/x509utils.h +143 -0
- data/vendor/xmlsec1-1.2.18/src/gnutls/x509vfy.c +802 -0
- data/vendor/xmlsec1-1.2.18/src/io.c +496 -0
- data/vendor/xmlsec1-1.2.18/src/keyinfo.c +1561 -0
- data/vendor/xmlsec1-1.2.18/src/keys.c +1415 -0
- data/vendor/xmlsec1-1.2.18/src/keysdata.c +1387 -0
- data/vendor/xmlsec1-1.2.18/src/keysmngr.c +745 -0
- data/vendor/xmlsec1-1.2.18/src/kw_aes_des.c +493 -0
- data/vendor/xmlsec1-1.2.18/src/kw_aes_des.h +148 -0
- data/vendor/xmlsec1-1.2.18/src/list.c +534 -0
- data/vendor/xmlsec1-1.2.18/src/membuf.c +209 -0
- data/vendor/xmlsec1-1.2.18/src/mscrypto/Makefile.am +62 -0
- data/vendor/xmlsec1-1.2.18/src/mscrypto/Makefile.in +799 -0
- data/vendor/xmlsec1-1.2.18/src/mscrypto/README +39 -0
- data/vendor/xmlsec1-1.2.18/src/mscrypto/app.c +1289 -0
- data/vendor/xmlsec1-1.2.18/src/mscrypto/certkeys.c +2615 -0
- data/vendor/xmlsec1-1.2.18/src/mscrypto/ciphers.c +937 -0
- data/vendor/xmlsec1-1.2.18/src/mscrypto/crypto.c +889 -0
- data/vendor/xmlsec1-1.2.18/src/mscrypto/csp_calg.h +105 -0
- data/vendor/xmlsec1-1.2.18/src/mscrypto/csp_oid.h +114 -0
- data/vendor/xmlsec1-1.2.18/src/mscrypto/digests.c +668 -0
- data/vendor/xmlsec1-1.2.18/src/mscrypto/globals.h +39 -0
- data/vendor/xmlsec1-1.2.18/src/mscrypto/hmac.c +963 -0
- data/vendor/xmlsec1-1.2.18/src/mscrypto/keysstore.c +620 -0
- data/vendor/xmlsec1-1.2.18/src/mscrypto/kt_rsa.c +631 -0
- data/vendor/xmlsec1-1.2.18/src/mscrypto/kw_aes.c +662 -0
- data/vendor/xmlsec1-1.2.18/src/mscrypto/kw_des.c +730 -0
- data/vendor/xmlsec1-1.2.18/src/mscrypto/mingw-crypt32.def +36 -0
- data/vendor/xmlsec1-1.2.18/src/mscrypto/private.h +130 -0
- data/vendor/xmlsec1-1.2.18/src/mscrypto/signatures.c +960 -0
- data/vendor/xmlsec1-1.2.18/src/mscrypto/symkeys.c +824 -0
- data/vendor/xmlsec1-1.2.18/src/mscrypto/x509.c +2281 -0
- data/vendor/xmlsec1-1.2.18/src/mscrypto/x509vfy.c +1406 -0
- data/vendor/xmlsec1-1.2.18/src/mscrypto/xmlsec-mingw.h +210 -0
- data/vendor/xmlsec1-1.2.18/src/nodeset.c +610 -0
- data/vendor/xmlsec1-1.2.18/src/nss/Makefile.am +57 -0
- data/vendor/xmlsec1-1.2.18/src/nss/Makefile.in +798 -0
- data/vendor/xmlsec1-1.2.18/src/nss/README +128 -0
- data/vendor/xmlsec1-1.2.18/src/nss/app.c +1598 -0
- data/vendor/xmlsec1-1.2.18/src/nss/bignum.c +163 -0
- data/vendor/xmlsec1-1.2.18/src/nss/ciphers.c +838 -0
- data/vendor/xmlsec1-1.2.18/src/nss/crypto.c +444 -0
- data/vendor/xmlsec1-1.2.18/src/nss/digests.c +576 -0
- data/vendor/xmlsec1-1.2.18/src/nss/globals.h +24 -0
- data/vendor/xmlsec1-1.2.18/src/nss/hmac.c +855 -0
- data/vendor/xmlsec1-1.2.18/src/nss/keysstore.c +485 -0
- data/vendor/xmlsec1-1.2.18/src/nss/keytrans.c +753 -0
- data/vendor/xmlsec1-1.2.18/src/nss/kw_aes.c +681 -0
- data/vendor/xmlsec1-1.2.18/src/nss/kw_des.c +663 -0
- data/vendor/xmlsec1-1.2.18/src/nss/pkikeys.c +1554 -0
- data/vendor/xmlsec1-1.2.18/src/nss/signatures.c +841 -0
- data/vendor/xmlsec1-1.2.18/src/nss/symkeys.c +440 -0
- data/vendor/xmlsec1-1.2.18/src/nss/x509.c +2223 -0
- data/vendor/xmlsec1-1.2.18/src/nss/x509vfy.c +808 -0
- data/vendor/xmlsec1-1.2.18/src/openssl/Makefile.am +56 -0
- data/vendor/xmlsec1-1.2.18/src/openssl/Makefile.in +790 -0
- data/vendor/xmlsec1-1.2.18/src/openssl/README +17 -0
- data/vendor/xmlsec1-1.2.18/src/openssl/app.c +1628 -0
- data/vendor/xmlsec1-1.2.18/src/openssl/bn.c +163 -0
- data/vendor/xmlsec1-1.2.18/src/openssl/ciphers.c +856 -0
- data/vendor/xmlsec1-1.2.18/src/openssl/crypto.c +491 -0
- data/vendor/xmlsec1-1.2.18/src/openssl/digests.c +682 -0
- data/vendor/xmlsec1-1.2.18/src/openssl/evp.c +1559 -0
- data/vendor/xmlsec1-1.2.18/src/openssl/globals.h +24 -0
- data/vendor/xmlsec1-1.2.18/src/openssl/hmac.c +857 -0
- data/vendor/xmlsec1-1.2.18/src/openssl/kt_rsa.c +876 -0
- data/vendor/xmlsec1-1.2.18/src/openssl/kw_aes.c +513 -0
- data/vendor/xmlsec1-1.2.18/src/openssl/kw_des.c +563 -0
- data/vendor/xmlsec1-1.2.18/src/openssl/signatures.c +1065 -0
- data/vendor/xmlsec1-1.2.18/src/openssl/symkeys.c +447 -0
- data/vendor/xmlsec1-1.2.18/src/openssl/x509.c +2414 -0
- data/vendor/xmlsec1-1.2.18/src/openssl/x509vfy.c +1284 -0
- data/vendor/xmlsec1-1.2.18/src/parser.c +571 -0
- data/vendor/xmlsec1-1.2.18/src/skeleton/Makefile.am +45 -0
- data/vendor/xmlsec1-1.2.18/src/skeleton/README +0 -0
- data/vendor/xmlsec1-1.2.18/src/skeleton/app.c +499 -0
- data/vendor/xmlsec1-1.2.18/src/skeleton/crypto.c +260 -0
- data/vendor/xmlsec1-1.2.18/src/skeleton/globals.h +24 -0
- data/vendor/xmlsec1-1.2.18/src/soap.c +1322 -0
- data/vendor/xmlsec1-1.2.18/src/strings.c +597 -0
- data/vendor/xmlsec1-1.2.18/src/templates.c +2091 -0
- data/vendor/xmlsec1-1.2.18/src/transforms.c +2902 -0
- data/vendor/xmlsec1-1.2.18/src/x509.c +97 -0
- data/vendor/xmlsec1-1.2.18/src/xkms.c +4981 -0
- data/vendor/xmlsec1-1.2.18/src/xmldsig.c +1795 -0
- data/vendor/xmlsec1-1.2.18/src/xmlenc.c +1339 -0
- data/vendor/xmlsec1-1.2.18/src/xmlsec.c +185 -0
- data/vendor/xmlsec1-1.2.18/src/xmltree.c +1908 -0
- data/vendor/xmlsec1-1.2.18/src/xpath.c +1148 -0
- data/vendor/xmlsec1-1.2.18/src/xslt.c +617 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/Readme.txt +52 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/bad-alg-enc-element-aes128-kw-3des.xml +29 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/dh-priv-key.der +0 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-content-3des-kw-aes192.data +9 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-content-3des-kw-aes192.tmpl +22 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-content-3des-kw-aes192.xml +30 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-content-aes128-kw-3des.data +9 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-content-aes128-kw-3des.tmpl +22 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-content-aes128-kw-3des.xml +30 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-content-aes192-kw-aes256.data +9 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-content-aes192-kw-aes256.tmpl +22 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-content-aes192-kw-aes256.xml +30 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-content-aes256-kt-rsa1_5.data +9 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-content-aes256-kt-rsa1_5.tmpl +24 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-content-aes256-kt-rsa1_5.xml +63 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-element-3des-ka-dh.xml +83 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-element-3des-kt-rsa1_5.data +9 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-element-3des-kt-rsa1_5.tmpl +23 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-element-3des-kt-rsa1_5.xml +61 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-element-3des-kt-rsa_oaep_sha1.data +9 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-element-3des-kt-rsa_oaep_sha1.tmpl +22 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-element-3des-kt-rsa_oaep_sha1.xml +63 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-element-3des-kt-rsa_oaep_sha256.xml +63 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-element-3des-kt-rsa_oaep_sha512.xml +63 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-element-3des-kw-3des.data +9 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-element-3des-kw-3des.tmpl +22 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-element-3des-kw-3des.xml +29 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-element-aes128-ka-dh.xml +83 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-element-aes128-kt-rsa1_5.data +9 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-element-aes128-kt-rsa1_5.tmpl +20 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-element-aes128-kt-rsa1_5.xml +61 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-element-aes128-kt-rsa_oaep_sha1.data +9 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-element-aes128-kt-rsa_oaep_sha1.tmpl +22 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-element-aes128-kt-rsa_oaep_sha1.xml +63 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-element-aes128-kw-aes128.data +9 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-element-aes128-kw-aes128.tmpl +22 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-element-aes128-kw-aes128.xml +29 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-element-aes128-kw-aes256.data +9 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-element-aes128-kw-aes256.tmpl +22 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-element-aes128-kw-aes256.xml +29 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-element-aes192-ka-dh.xml +83 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-element-aes192-kt-rsa_oaep_sha1.data +9 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-element-aes192-kt-rsa_oaep_sha1.tmpl +22 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-element-aes192-kt-rsa_oaep_sha1.xml +63 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-element-aes192-kw-aes192.data +9 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-element-aes192-kw-aes192.tmpl +22 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-element-aes192-kw-aes192.xml +29 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-element-aes256-ka-dh.xml +83 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-element-aes256-kw-aes256.data +9 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-element-aes256-kw-aes256.tmpl +22 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-element-aes256-kw-aes256.xml +29 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-text-3des-kw-aes256.data +9 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-text-3des-kw-aes256.tmpl +23 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-text-3des-kw-aes256.xml +32 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-text-aes128-kw-aes192.data +9 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-text-aes128-kw-aes192.tmpl +21 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-text-aes128-kw-aes192.xml +28 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-text-aes192-kt-rsa1_5.data +9 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-text-aes192-kt-rsa1_5.tmpl +20 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-text-aes192-kt-rsa1_5.xml +62 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-text-aes256-kt-rsa_oaep_sha1.data +9 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-text-aes256-kt-rsa_oaep_sha1.tmpl +22 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/enc-text-aes256-kt-rsa_oaep_sha1.xml +64 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/key.txt +117 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/keys.xml +61 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/payment.xml +9 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/rsa-priv-key.der +0 -0
- data/vendor/xmlsec1-1.2.18/tests/01-phaos-xmlenc-3/rsa-priv-key.p12 +0 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/bad-request-name-not-supported.xml +2 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/bad-request-name.xml +10 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/compound-example-1-no-match.xml +7 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/compound-example-1.xml +51 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/keys/cert1.der +0 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/keys/cert1.pem +26 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/keys/cert2.der +0 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/keys/cert2.pem +25 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/keys/cert3.der +0 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/keys/cert3.pem +24 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/keys/create-keys.sh +73 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/keys/key1-pk8.der +0 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/keys/key1.der +0 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/keys/key1.p12 +0 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/keys/key1.pem +18 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/keys/key2-pk8.der +0 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/keys/key2.der +0 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/keys/key2.p12 +0 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/keys/key2.pem +9 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/keys/key3-pk8.der +0 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/keys/key3.der +0 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/keys/key3.p12 +0 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/keys/key3.pem +9 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/keys/openssl.cnf +106 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/keys/req2.pem +11 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/keys/req3.pem +11 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/locate-example-1-bad-service.xml +2 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/locate-example-1-no-match.xml +2 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/locate-example-1.xml +18 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/locate-example-2-no-match.xml +2 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/locate-example-2.xml +39 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/locate-opaque-client-data-no-match.xml +2 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/locate-opaque-client-data.xml +32 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/readme.txt +117 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/soap11-bad-request-name-msg-invalid.xml +9 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/soap11-bad-request-name.xml +14 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/soap11-locate-example-1-no-match.xml +6 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/soap11-locate-example-1-unsupported.xml +13 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/soap11-locate-example-1.xml +23 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/soap12-bad-request-name-msg-invalid.xml +11 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/soap12-bad-request-name.xml +14 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/soap12-locate-example-1-no-match.xml +6 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/soap12-locate-example-1-unsupported.xml +9 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/soap12-locate-example-1.xml +23 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/status-request-success.xml +2 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/status-request.xml +7 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/validate-example-1-no-match.xml +2 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xkms-01/validate-example-1.xml +65 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/README +47 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/dtd-hmac-91.dtd +1 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/dtd-hmac-91.tmpl +27 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/dtd-hmac-91.xml +27 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloped-gost.tmpl +31 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloped-gost.xml +42 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-dsa-x509chain.tmpl +18 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-dsa-x509chain.xml +87 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-expired-cert.tmpl +18 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-expired-cert.xml +85 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-md5-hmac-md5-64.tmpl +16 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-md5-hmac-md5-64.xml +15 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-md5-hmac-md5.tmpl +14 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-md5-hmac-md5.xml +13 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-md5-rsa-md5.tmpl +17 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-md5-rsa-md5.xml +85 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-ripemd160-hmac-ripemd160-64.tmpl +16 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-ripemd160-hmac-ripemd160-64.xml +15 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-ripemd160-hmac-ripemd160.tmpl +14 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-ripemd160-hmac-ripemd160.xml +13 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-ripemd160-rsa-ripemd160.tmpl +17 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-ripemd160-rsa-ripemd160.xml +85 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-rsa-x509chain.tmpl +18 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-rsa-x509chain.xml +85 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-sha1-hmac-sha1-64.tmpl +16 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-sha1-hmac-sha1-64.xml +15 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-sha1-hmac-sha1.tmpl +14 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-sha1-hmac-sha1.xml +13 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-sha1-rsa-sha1.tmpl +17 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-sha1-rsa-sha1.xml +85 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-sha224-hmac-sha224-64.tmpl +16 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-sha224-hmac-sha224-64.xml +15 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-sha224-hmac-sha224.tmpl +14 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-sha224-hmac-sha224.xml +13 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-sha224-rsa-sha224.tmpl +17 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-sha224-rsa-sha224.xml +85 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-sha256-hmac-sha256-64.tmpl +16 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-sha256-hmac-sha256-64.xml +15 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-sha256-hmac-sha256.tmpl +14 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-sha256-hmac-sha256.xml +13 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-sha256-rsa-sha256.tmpl +17 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-sha256-rsa-sha256.xml +85 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-sha384-hmac-sha384-64.tmpl +16 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-sha384-hmac-sha384-64.xml +15 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-sha384-hmac-sha384.tmpl +14 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-sha384-hmac-sha384.xml +13 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-sha384-rsa-sha384.tmpl +17 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-sha384-rsa-sha384.xml +103 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-sha512-hmac-sha512-64.tmpl +16 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-sha512-hmac-sha512-64.xml +16 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-sha512-hmac-sha512.tmpl +14 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-sha512-hmac-sha512.xml +15 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-sha512-rsa-sha512.tmpl +17 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/enveloping-sha512-rsa-sha512.xml +104 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/x509data-sn-test.tmpl +27 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/x509data-sn-test.xml +40 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/x509data-test.tmpl +31 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/x509data-test.xml +117 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/xpointer-hmac.tmpl +29 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmldsig-01/xpointer-hmac.xml +28 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmlenc-01/enc-aes128cbc-keyname.data +1 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmlenc-01/enc-aes128cbc-keyname.tmpl +11 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmlenc-01/enc-aes128cbc-keyname.xml +12 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmlenc-01/enc-aes192cbc-keyname-ref.data +1 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmlenc-01/enc-aes192cbc-keyname-ref.xml +21 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmlenc-01/enc-aes192cbc-keyname.data +1 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmlenc-01/enc-aes192cbc-keyname.tmpl +11 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmlenc-01/enc-aes192cbc-keyname.xml +12 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmlenc-01/enc-aes256cbc-keyname.data +1 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmlenc-01/enc-aes256cbc-keyname.tmpl +10 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmlenc-01/enc-aes256cbc-keyname.xml +12 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmlenc-01/enc-des3cbc-aes192-keyname.data +1 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmlenc-01/enc-des3cbc-aes192-keyname.tmpl +16 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmlenc-01/enc-des3cbc-aes192-keyname.xml +18 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmlenc-01/enc-des3cbc-keyname-content.data +7 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmlenc-01/enc-des3cbc-keyname-content.tmpl +11 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmlenc-01/enc-des3cbc-keyname-content.xml +15 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmlenc-01/enc-des3cbc-keyname-element-root.data +7 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmlenc-01/enc-des3cbc-keyname-element-root.tmpl +11 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmlenc-01/enc-des3cbc-keyname-element-root.xml +15 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmlenc-01/enc-des3cbc-keyname-element.data +9 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmlenc-01/enc-des3cbc-keyname-element.tmpl +11 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmlenc-01/enc-des3cbc-keyname-element.xml +17 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmlenc-01/enc-des3cbc-keyname.data +1 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmlenc-01/enc-des3cbc-keyname.tmpl +8 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmlenc-01/enc-des3cbc-keyname.xml +8 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmlenc-01/enc-des3cbc-keyname2.data +1 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmlenc-01/enc-des3cbc-keyname2.tmpl +10 -0
- data/vendor/xmlsec1-1.2.18/tests/aleksey-xmlenc-01/enc-des3cbc-keyname2.xml +12 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/README +203 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/ca2cert.der +0 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/ca2cert.pem +66 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/ca2key.pem +9 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/cacert.der +0 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/cacert.pem +72 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/cakey.pem +18 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/demoCA/cacert.pem +72 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/demoCA/careq.pem +14 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/demoCA/index.txt +6 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/demoCA/newcerts/01.pem +65 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/demoCA/newcerts/02.pem +93 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/demoCA/newcerts/03.pem +60 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/demoCA/newcerts/04.pem +60 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/demoCA/newcerts/05.pem +83 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/demoCA/private/cakey.pem +18 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/demoCA/serial +1 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/dsacert.der +0 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/dsacert.pem +78 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/dsakey.der +0 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/dsakey.p12 +0 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/dsakey.p8-der +0 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/dsakey.p8-pem +8 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/dsakey.pem +14 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/expiredcert.der +0 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/expiredcert.pem +61 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/expiredkey.der +0 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/expiredkey.p12 +0 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/expiredkey.pem +9 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/expiredreq.pem +11 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/gost2001ca.der +0 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/gost2001ca.pem +13 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/hmackey.bin +1 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/keys.xml +83 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/largersacert.der +0 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/largersacert.pem +100 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/largersakey-win.p12 +0 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/largersakey-winxp.p12 +0 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/largersakey.der +0 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/largersakey.p12 +0 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/largersakey.p8-der +0 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/largersakey.p8-pem +53 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/largersakey.pem +51 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/largersareq.pem +30 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/merlincert.pem +20 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/openssl.cnf +316 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/rsacert.der +0 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/rsacert.pem +61 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/rsakey-win.p12 +0 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/rsakey-winxp.p12 +0 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/rsakey.der +0 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/rsakey.p12 +0 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/rsakey.p8-der +0 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/rsakey.p8-pem +11 -0
- data/vendor/xmlsec1-1.2.18/tests/keys/rsakey.pem +9 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-c14n-three/Readme.txt +20 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-c14n-three/c14n-0.txt +15 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-c14n-three/c14n-1.txt +15 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-c14n-three/c14n-10.txt +15 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-c14n-three/c14n-11.txt +15 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-c14n-three/c14n-12.txt +15 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-c14n-three/c14n-13.txt +15 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-c14n-three/c14n-14.txt +15 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-c14n-three/c14n-15.txt +0 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-c14n-three/c14n-16.txt +0 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-c14n-three/c14n-17.txt +15 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-c14n-three/c14n-18.txt +15 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-c14n-three/c14n-19.txt +15 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-c14n-three/c14n-2.txt +15 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-c14n-three/c14n-20.txt +15 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-c14n-three/c14n-21.txt +15 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-c14n-three/c14n-22.txt +15 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-c14n-three/c14n-23.txt +15 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-c14n-three/c14n-24.txt +1 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-c14n-three/c14n-25.txt +0 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-c14n-three/c14n-26.txt +15 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-c14n-three/c14n-27.txt +430 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-c14n-three/c14n-3.txt +15 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-c14n-three/c14n-4.txt +15 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-c14n-three/c14n-5.txt +15 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-c14n-three/c14n-6.txt +1 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-c14n-three/c14n-7.txt +1 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-c14n-three/c14n-8.txt +15 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-c14n-three/c14n-9.txt +15 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-c14n-three/signature.xml +526 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-exc-c14n-one/Readme.txt +3 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-exc-c14n-one/exc-signature.tmpl +52 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-exc-c14n-one/exc-signature.xml +73 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/Readme.txt +63 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/certs/badb.der +0 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/certs/badb.pem +20 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/certs/balor.der +0 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/certs/balor.pem +20 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/certs/bres.pem +20 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/certs/ca.der +0 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/certs/ca.pem +20 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/certs/lugh-cert.der +0 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/certs/lugh-cert.pem +20 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/certs/lugh.der +0 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/certs/lugh.pem +12 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/certs/macha.der +0 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/certs/macha.pem +20 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/certs/merlin.der +0 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/certs/merlin.pem +21 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/certs/morigu.pem +20 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/certs/nemain.der +0 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/certs/nemain.pem +20 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/signature-enveloped-dsa.tmpl +22 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/signature-enveloped-dsa.xml +43 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/signature-enveloping-b64-dsa.tmpl +21 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/signature-enveloping-b64-dsa.xml +42 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/signature-enveloping-dsa.tmpl +18 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/signature-enveloping-dsa.xml +39 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/signature-enveloping-hmac-sha1-40.tmpl +16 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/signature-enveloping-hmac-sha1-40.xml +17 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/signature-enveloping-hmac-sha1.tmpl +14 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/signature-enveloping-hmac-sha1.xml +15 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/signature-enveloping-rsa.tmpl +18 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/signature-enveloping-rsa.xml +31 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/signature-external-b64-dsa.tmpl +20 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/signature-external-b64-dsa.xml +41 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/signature-external-dsa.tmpl +17 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/signature-external-dsa.xml +38 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/signature-keyname.tmpl +16 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/signature-keyname.xml +17 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/signature-retrievalmethod-rawx509crt.tmpl +16 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/signature-retrievalmethod-rawx509crt.xml +17 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/signature-x509-crt-crl.tmpl +17 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/signature-x509-crt-crl.xml +47 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/signature-x509-crt.tmpl +17 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/signature-x509-crt.xml +38 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/signature-x509-is.tmpl +17 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/signature-x509-is.xml +24 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/signature-x509-ski.tmpl +17 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/signature-x509-ski.xml +21 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/signature-x509-sn.tmpl +17 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/signature-x509-sn.xml +21 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/signature.tmpl +245 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmldsig-twenty-three/signature.xml +269 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/Readme.txt +117 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/bad-encrypt-content-aes128-cbc-kw-aes192.xml +42 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/decryption-transform-except.xml +83 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/decryption-transform.xml +73 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/dh0.p8 +0 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/dh1.p8 +0 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/dsa.p8 +0 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/encrypt-content-aes128-cbc-kw-aes192.data +27 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/encrypt-content-aes128-cbc-kw-aes192.tmpl +20 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/encrypt-content-aes128-cbc-kw-aes192.xml +45 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/encrypt-content-aes192-cbc-dh-sha512.xml +113 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/encrypt-content-aes256-cbc-prop.data +27 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/encrypt-content-aes256-cbc-prop.tmpl +18 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/encrypt-content-aes256-cbc-prop.xml +42 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/encrypt-content-tripledes-cbc.data +27 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/encrypt-content-tripledes-cbc.tmpl +11 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/encrypt-content-tripledes-cbc.xml +35 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/encrypt-data-aes128-cbc.data +1 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/encrypt-data-aes128-cbc.tmpl +11 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/encrypt-data-aes128-cbc.xml +12 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/encrypt-data-aes192-cbc-kw-aes256.data +1 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/encrypt-data-aes192-cbc-kw-aes256.tmpl +20 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/encrypt-data-aes192-cbc-kw-aes256.xml +22 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/encrypt-data-aes256-cbc-kw-tripledes.data +1 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/encrypt-data-aes256-cbc-kw-tripledes.tmpl +20 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/encrypt-data-aes256-cbc-kw-tripledes.xml +22 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/encrypt-data-tripledes-cbc-rsa-oaep-mgf1p-sha256.xml +46 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/encrypt-data-tripledes-cbc-rsa-oaep-mgf1p.data +1 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/encrypt-data-tripledes-cbc-rsa-oaep-mgf1p.tmpl +21 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/encrypt-data-tripledes-cbc-rsa-oaep-mgf1p.xml +43 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/encrypt-element-aes128-cbc-rsa-1_5.data +27 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/encrypt-element-aes128-cbc-rsa-1_5.tmpl +19 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/encrypt-element-aes128-cbc-rsa-1_5.xml +63 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/encrypt-element-aes192-cbc-ref.data +36 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/encrypt-element-aes192-cbc-ref.xml +42 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/encrypt-element-aes256-cbc-carried-kw-aes256.xml +57 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/encrypt-element-aes256-cbc-kw-aes256-dh-ripemd160.xml +122 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/encrypt-element-aes256-cbc-retrieved-kw-aes256.data +40 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/encrypt-element-aes256-cbc-retrieved-kw-aes256.xml +47 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/encrypt-element-tripledes-cbc-kw-aes128.data +27 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/encrypt-element-tripledes-cbc-kw-aes128.tmpl +20 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/encrypt-element-tripledes-cbc-kw-aes128.xml +43 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/encsig-hmac-sha256-dh.xml +98 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/encsig-hmac-sha256-kw-tripledes-dh.xml +108 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/encsig-hmac-sha256-rsa-1_5.xml +46 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/encsig-hmac-sha256-rsa-oaep-mgf1p.xml +51 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/encsig-ripemd160-hmac-ripemd160-kw-tripledes.tmpl +25 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/encsig-ripemd160-hmac-ripemd160-kw-tripledes.xml +27 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/encsig-sha256-hmac-sha256-kw-aes128.xml +27 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/encsig-sha384-hmac-sha384-kw-aes192.xml +27 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/encsig-sha512-hmac-sha512-kw-aes256.xml +28 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/ids.p12 +0 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/keys.xml +42 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/plaintext.xml +24 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/rsa.p8 +0 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/rsapriv.der +0 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/rsapriv.p12 +0 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/rsapriv.p8-der +0 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/rsapriv.p8-pem +17 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/rsapriv.pem +15 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xmlenc-five/rsapub.pem +6 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xpath-filter2-three/Readme.txt +23 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xpath-filter2-three/sign-spec-c14n-0.txt +11 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xpath-filter2-three/sign-spec-c14n-1.txt +0 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xpath-filter2-three/sign-spec-c14n-2.txt +25 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xpath-filter2-three/sign-spec.tmpl +50 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xpath-filter2-three/sign-spec.xml +122 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xpath-filter2-three/sign-xfdl-c14n-0.txt +3986 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xpath-filter2-three/sign-xfdl.tmpl +4153 -0
- data/vendor/xmlsec1-1.2.18/tests/merlin-xpath-filter2-three/sign-xfdl.xml +4225 -0
- data/vendor/xmlsec1-1.2.18/tests/nss.supp +220 -0
- data/vendor/xmlsec1-1.2.18/tests/nssdb/cert8.db +0 -0
- data/vendor/xmlsec1-1.2.18/tests/nssdb/key3.db +0 -0
- data/vendor/xmlsec1-1.2.18/tests/nssdb/secmod.db +0 -0
- data/vendor/xmlsec1-1.2.18/tests/openssl.supp +63 -0
- data/vendor/xmlsec1-1.2.18/tests/phaos-xmldsig-three/README.txt +248 -0
- data/vendor/xmlsec1-1.2.18/tests/phaos-xmldsig-three/certs/crl.der +0 -0
- data/vendor/xmlsec1-1.2.18/tests/phaos-xmldsig-three/certs/dsa-ca-cert.der +0 -0
- data/vendor/xmlsec1-1.2.18/tests/phaos-xmldsig-three/certs/dsa-cert.der +0 -0
- data/vendor/xmlsec1-1.2.18/tests/phaos-xmldsig-three/certs/enc-dsa-key.der +0 -0
- data/vendor/xmlsec1-1.2.18/tests/phaos-xmldsig-three/certs/enc-rsa-key.der +0 -0
- data/vendor/xmlsec1-1.2.18/tests/phaos-xmldsig-three/certs/hmackey.bin +1 -0
- data/vendor/xmlsec1-1.2.18/tests/phaos-xmldsig-three/certs/rsa-ca-cert.der +0 -0
- data/vendor/xmlsec1-1.2.18/tests/phaos-xmldsig-three/certs/rsa-cert.der +0 -0
- data/vendor/xmlsec1-1.2.18/tests/phaos-xmldsig-three/document-stylesheet.xml +7 -0
- data/vendor/xmlsec1-1.2.18/tests/phaos-xmldsig-three/document.b64 +4 -0
- data/vendor/xmlsec1-1.2.18/tests/phaos-xmldsig-three/document.xml +6 -0
- data/vendor/xmlsec1-1.2.18/tests/phaos-xmldsig-three/document.xsl +45 -0
- data/vendor/xmlsec1-1.2.18/tests/phaos-xmldsig-three/signature-big.xml +39 -0
- data/vendor/xmlsec1-1.2.18/tests/phaos-xmldsig-three/signature-dsa-detached.xml +1 -0
- data/vendor/xmlsec1-1.2.18/tests/phaos-xmldsig-three/signature-dsa-enveloped.xml +6 -0
- data/vendor/xmlsec1-1.2.18/tests/phaos-xmldsig-three/signature-dsa-enveloping.xml +6 -0
- data/vendor/xmlsec1-1.2.18/tests/phaos-xmldsig-three/signature-dsa-manifest.xml +1 -0
- data/vendor/xmlsec1-1.2.18/tests/phaos-xmldsig-three/signature-hmac-md5-c14n-enveloping.xml +6 -0
- data/vendor/xmlsec1-1.2.18/tests/phaos-xmldsig-three/signature-hmac-sha1-40-c14n-comments-detached.xml +1 -0
- data/vendor/xmlsec1-1.2.18/tests/phaos-xmldsig-three/signature-hmac-sha1-40-exclusive-c14n-comments-detached.xml +1 -0
- data/vendor/xmlsec1-1.2.18/tests/phaos-xmldsig-three/signature-hmac-sha1-exclusive-c14n-comments-detached.xml +1 -0
- data/vendor/xmlsec1-1.2.18/tests/phaos-xmldsig-three/signature-hmac-sha1-exclusive-c14n-enveloped.xml +6 -0
- data/vendor/xmlsec1-1.2.18/tests/phaos-xmldsig-three/signature-rsa-detached-b64-transform.xml +1 -0
- data/vendor/xmlsec1-1.2.18/tests/phaos-xmldsig-three/signature-rsa-detached-xpath-transform.xml +1 -0
- data/vendor/xmlsec1-1.2.18/tests/phaos-xmldsig-three/signature-rsa-detached-xslt-transform-bad-retrieval-method.xml +6 -0
- data/vendor/xmlsec1-1.2.18/tests/phaos-xmldsig-three/signature-rsa-detached-xslt-transform-retrieval-method.xml +39 -0
- data/vendor/xmlsec1-1.2.18/tests/phaos-xmldsig-three/signature-rsa-detached-xslt-transform.xml +39 -0
- data/vendor/xmlsec1-1.2.18/tests/phaos-xmldsig-three/signature-rsa-detached.xml +1 -0
- data/vendor/xmlsec1-1.2.18/tests/phaos-xmldsig-three/signature-rsa-enveloped-bad-digest-val.xml +6 -0
- data/vendor/xmlsec1-1.2.18/tests/phaos-xmldsig-three/signature-rsa-enveloped-bad-sig.xml +6 -0
- data/vendor/xmlsec1-1.2.18/tests/phaos-xmldsig-three/signature-rsa-enveloped.xml +6 -0
- data/vendor/xmlsec1-1.2.18/tests/phaos-xmldsig-three/signature-rsa-enveloping.xml +6 -0
- data/vendor/xmlsec1-1.2.18/tests/phaos-xmldsig-three/signature-rsa-manifest-x509-data-cert-chain.xml +1 -0
- data/vendor/xmlsec1-1.2.18/tests/phaos-xmldsig-three/signature-rsa-manifest-x509-data-cert.xml +1 -0
- data/vendor/xmlsec1-1.2.18/tests/phaos-xmldsig-three/signature-rsa-manifest-x509-data-issuer-serial.xml +1 -0
- data/vendor/xmlsec1-1.2.18/tests/phaos-xmldsig-three/signature-rsa-manifest-x509-data-ski.xml +1 -0
- data/vendor/xmlsec1-1.2.18/tests/phaos-xmldsig-three/signature-rsa-manifest-x509-data-subject-name.xml +1 -0
- data/vendor/xmlsec1-1.2.18/tests/phaos-xmldsig-three/signature-rsa-manifest.xml +1 -0
- data/vendor/xmlsec1-1.2.18/tests/phaos-xmldsig-three/signature-rsa-xpath-transform-enveloped.xml +6 -0
- data/vendor/xmlsec1-1.2.18/tests/phaos-xmldsig-three/signature-rsa-~x509-data-crl.xml +1 -0
- data/vendor/xmlsec1-1.2.18/tests/testDSig.sh +875 -0
- data/vendor/xmlsec1-1.2.18/tests/testEnc.sh +411 -0
- data/vendor/xmlsec1-1.2.18/tests/testKeys.sh +69 -0
- data/vendor/xmlsec1-1.2.18/tests/testRes.sh +20 -0
- data/vendor/xmlsec1-1.2.18/tests/testXKMS.sh +129 -0
- data/vendor/xmlsec1-1.2.18/tests/testrun.sh +443 -0
- data/vendor/xmlsec1-1.2.18/tests/xmldsig2ed-tests/c14n11/xml-base-input.xml +17 -0
- data/vendor/xmlsec1-1.2.18/tests/xmldsig2ed-tests/defCan-1.tmpl +2 -0
- data/vendor/xmlsec1-1.2.18/tests/xmldsig2ed-tests/defCan-1.xml +2 -0
- data/vendor/xmlsec1-1.2.18/tests/xmldsig2ed-tests/defCan-2.tmpl +2 -0
- data/vendor/xmlsec1-1.2.18/tests/xmldsig2ed-tests/defCan-2.xml +2 -0
- data/vendor/xmlsec1-1.2.18/tests/xmldsig2ed-tests/defCan-3.tmpl +2 -0
- data/vendor/xmlsec1-1.2.18/tests/xmldsig2ed-tests/defCan-3.xml +2 -0
- data/vendor/xmlsec1-1.2.18/tests/xmldsig2ed-tests/xpointer-1-SUN.xml +21 -0
- data/vendor/xmlsec1-1.2.18/tests/xmldsig2ed-tests/xpointer-2-SUN.xml +21 -0
- data/vendor/xmlsec1-1.2.18/tests/xmldsig2ed-tests/xpointer-3-SUN.xml +21 -0
- data/vendor/xmlsec1-1.2.18/tests/xmldsig2ed-tests/xpointer-4-SUN.xml +21 -0
- data/vendor/xmlsec1-1.2.18/tests/xmldsig2ed-tests/xpointer-5-SUN.xml +21 -0
- data/vendor/xmlsec1-1.2.18/tests/xmldsig2ed-tests/xpointer-6-SUN.xml +21 -0
- data/vendor/xmlsec1-1.2.18/win32/Makefile.msvc +699 -0
- data/vendor/xmlsec1-1.2.18/win32/README.txt +168 -12
- data/vendor/xmlsec1-1.2.18/win32/configure.js +395 -0
- data/vendor/xmlsec1-1.2.18/win32/libxmlsec.def.src +25 -0
- data/vendor/xmlsec1-1.2.18/win32/mycfg.bat +21 -0
- data/vendor/xmlsec1-1.2.18/xmlsec-config.in +243 -0
- data/vendor/xmlsec1-1.2.18/xmlsec-gcrypt.pc.in +11 -0
- data/vendor/xmlsec1-1.2.18/xmlsec-gnutls.pc.in +11 -0
- data/vendor/xmlsec1-1.2.18/xmlsec-nss.pc.in +11 -0
- data/vendor/xmlsec1-1.2.18/xmlsec-openssl.pc.in +11 -0
- data/vendor/xmlsec1-1.2.18/xmlsec.pc.in +11 -0
- data/vendor/xmlsec1-1.2.18/xmlsec.spec.in +185 -0
- data/vendor/xmlsec1-1.2.18/xmlsec1-config +243 -0
- data/vendor/xmlsec1-1.2.18/xmlsec1-gcrypt.pc +11 -0
- data/vendor/xmlsec1-1.2.18/xmlsec1-gnutls.pc +11 -0
- data/vendor/xmlsec1-1.2.18/xmlsec1-nss.pc +11 -0
- data/vendor/xmlsec1-1.2.18/xmlsec1-openssl.pc +11 -0
- data/vendor/xmlsec1-1.2.18/xmlsec1.m4 +172 -0
- data/vendor/xmlsec1-1.2.18/xmlsec1.pc +11 -0
- data/vendor/xmlsec1-1.2.18/xmlsec1.spec +185 -0
- data/vendor/xmlsec1-1.2.18/xmlsec1Conf.sh +13 -0
- data/vendor/xmlsec1-1.2.18/xmlsecConf.sh.in +13 -0
- data/xmlsec-shim.gemspec +18 -0
- metadata +1014 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/README.md
ADDED
data/Rakefile
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
require 'mkmf'
|
|
2
|
+
|
|
3
|
+
root = File.expand_path('../../..', __FILE__)
|
|
4
|
+
puts("Path is #{root}")
|
|
5
|
+
|
|
6
|
+
Dir.chdir(File.join(root, 'vendor/xmlsec1-1.2.18')) do
|
|
7
|
+
puts("Building vendor xmlsec")
|
|
8
|
+
system "./configure", "--prefix=#{root}", "--without-libxslt", "--enable-static-linking", "--disable-shared", "--disable-crypto-dl", "--disable-apps-crypto-dl"
|
|
9
|
+
system "make"
|
|
10
|
+
system "make install"
|
|
11
|
+
system "make clean"
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
create_makefile 'xmlsec'
|
data/lib/xmlsec-shim.rb
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
require "xmlsec-shim/version"
|
|
2
|
+
require 'pathname'
|
|
3
|
+
require 'open3'
|
|
4
|
+
|
|
5
|
+
module Xmlsec
|
|
6
|
+
module Shim
|
|
7
|
+
Root = Pathname.new(File.expand_path('../..', __FILE__))
|
|
8
|
+
Bin = Root.join('bin')
|
|
9
|
+
|
|
10
|
+
# Executables = Bin.children.inject({}) { |h, p|
|
|
11
|
+
# h[p.basename.to_s.to_sym] = p.to_s
|
|
12
|
+
# h
|
|
13
|
+
# }
|
|
14
|
+
|
|
15
|
+
class Bridge
|
|
16
|
+
def self.sign(doc_file, key_file)
|
|
17
|
+
binary_name = Bin.join("xmlsec1")
|
|
18
|
+
o, s = Open3.capture2("#{binary_name} --sign --privkey #{key_file} #{doc_file}")
|
|
19
|
+
output = o.gets
|
|
20
|
+
unless s.success?
|
|
21
|
+
raise output
|
|
22
|
+
end
|
|
23
|
+
output
|
|
24
|
+
end
|
|
25
|
+
end
|
|
26
|
+
end
|
|
27
|
+
end
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
Aleksey Sanin <aleksey@aleksey.com>
|
|
2
|
+
|
|
3
|
+
Windows port: Igor Zlatkovic <igor@stud.fh-frankfurt.de>
|
|
4
|
+
Debian port: John Belmonte <jvb@prairienet.org>
|
|
5
|
+
xmlsec-nss: Tej Arora <tej@netscape.com>, AOL Inc.
|
|
6
|
+
xmlsec-mscrypto: Wouter Ketting <wsh@xs4all.nl>, Cordys R&D BV
|
|
7
|
+
GOST support: Dmitry Belyavsky <beldmit@cryptocom.ru>, Cryptocom LTD (http://www.cryptocom.ru)
|
|
8
|
+
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
xmlsec, xmlsec-openssl, xmlsec-gnutls, xmlsec-gcrypt libraries
|
|
2
|
+
------------------------------------------------------------------------------
|
|
3
|
+
|
|
4
|
+
Copyright (C) 2002-2010 Aleksey Sanin. All Rights Reserved.
|
|
5
|
+
|
|
6
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
8
|
+
in the Software without restriction, including without limitation the rights
|
|
9
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
10
|
+
copies of the Software, and to permit persons to whom the Software is fur-
|
|
11
|
+
nished to do so, subject to the following conditions:
|
|
12
|
+
|
|
13
|
+
The above copyright notice and this permission notice shall be included in
|
|
14
|
+
all copies or substantial portions of the Software.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
17
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT-
|
|
18
|
+
NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
19
|
+
ALEKSEY SANIN BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
20
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CON-
|
|
21
|
+
NECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
22
|
+
|
|
23
|
+
Except as contained in this notice, the name of Aleksey Sanin shall not
|
|
24
|
+
be used in advertising or otherwise to promote the sale, use or other deal-
|
|
25
|
+
ings in this Software without prior written authorization from him.
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
xmlsec-nss library
|
|
29
|
+
------------------------------------------------------------------------------
|
|
30
|
+
Copyright (C) 2002-2010 Aleksey Sanin. All Rights Reserved.
|
|
31
|
+
Copyright (c) 2003 America Online, Inc. All rights reserved.
|
|
32
|
+
|
|
33
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
34
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
35
|
+
in the Software without restriction, including without limitation the rights
|
|
36
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
37
|
+
copies of the Software, and to permit persons to whom the Software is fur-
|
|
38
|
+
nished to do so, subject to the following conditions:
|
|
39
|
+
|
|
40
|
+
The above copyright notice and this permission notice shall be included in
|
|
41
|
+
all copies or substantial portions of the Software.
|
|
42
|
+
|
|
43
|
+
Portions of the Software were created using source code and/or APIs
|
|
44
|
+
governed by the Mozilla Public License (MPL). The MPL is available
|
|
45
|
+
at http://www.mozilla.org/MPL/MPL-1.1.html. The MPL permits such
|
|
46
|
+
portions to be distributed with code not governed by MPL, as long
|
|
47
|
+
as the requirements of MPL are fulfilled for such portions.
|
|
48
|
+
|
|
49
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
50
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT-
|
|
51
|
+
NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
52
|
+
ALEKSEY SANIN BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
53
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CON-
|
|
54
|
+
NECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
55
|
+
|
|
56
|
+
Except as contained in this notice, the name of Aleksey Sanin shall not
|
|
57
|
+
be used in advertising or otherwise to promote the sale, use or other deal-
|
|
58
|
+
ings in this Software without prior written authorization from him.
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
xmlsec-mscrypto library
|
|
62
|
+
------------------------------------------------------------------------------
|
|
63
|
+
|
|
64
|
+
Copyright (C) 2002-2010 Aleksey Sanin. All Rights Reserved.
|
|
65
|
+
Copyright (C) 2003 Cordys R&D BV, All rights reserved.
|
|
66
|
+
Copyright (C) 2007 Roumen Petrov.
|
|
67
|
+
Copyright (c) 2005-2006 Cryptocom LTD (http://www.cryptocom.ru).
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
71
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
72
|
+
in the Software without restriction, including without limitation the rights
|
|
73
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
74
|
+
copies of the Software, and to permit persons to whom the Software is fur-
|
|
75
|
+
nished to do so, subject to the following conditions:
|
|
76
|
+
|
|
77
|
+
The above copyright notice and this permission notice shall be included in
|
|
78
|
+
all copies or substantial portions of the Software.
|
|
79
|
+
|
|
80
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
81
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT-
|
|
82
|
+
NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
83
|
+
ALEKSEY SANIN BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
84
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CON-
|
|
85
|
+
NECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
86
|
+
|
|
87
|
+
Except as contained in this notice, the name of Aleksey Sanin shall not
|
|
88
|
+
be used in advertising or otherwise to promote the sale, use or other deal-
|
|
89
|
+
ings in this Software without prior written authorization from him.
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
References
|
|
94
|
+
------------------------------------------------------------------------------
|
|
95
|
+
|
|
96
|
+
* AOL
|
|
97
|
+
http://www.aleksey.com/pipermail/xmlsec/2003/005488.html
|
|
98
|
+
http://www.aleksey.com/pipermail/xmlsec/attachments/20030729/0e25648e/attachment.htm
|
|
99
|
+
|
|
100
|
+
* Cordys R&D BV
|
|
101
|
+
http://www.aleksey.com/pipermail/xmlsec/2003/005581.html
|
|
102
|
+
|
|
103
|
+
* Cryptocom LTD
|
|
104
|
+
http://www.aleksey.com/pipermail/xmlsec/2006/007410.html
|
|
105
|
+
|
|
@@ -0,0 +1,1810 @@
|
|
|
1
|
+
2011-05-11 Aleksey Sanin <aleksey@aleksey.com>
|
|
2
|
+
* 1.2.18 release
|
|
3
|
+
|
|
4
|
+
2011-05-01 Aleksey Sanin <aleksey@aleksey.com>
|
|
5
|
+
* Fixed crasher in 64 bit (reported by Roumen)
|
|
6
|
+
|
|
7
|
+
2011-03-31 Aleksey Sanin <aleksey@aleksey.com>
|
|
8
|
+
* 1.2.17 release
|
|
9
|
+
|
|
10
|
+
2011-03-30 Aleksey Sanin <aleksey@aleksey.com>
|
|
11
|
+
* Preparations for 1.2.17 release
|
|
12
|
+
|
|
13
|
+
2011-03-29 Aleksey Sanin <aleksey@aleksey.com>
|
|
14
|
+
* Fixed security issue with libxslt (CVE-2011-1425, reported by Nicolas Gregoire)
|
|
15
|
+
|
|
16
|
+
2011-02-05 Aleksey Sanin <aleksey@aleksey.com>
|
|
17
|
+
* Fixed pkcs12 file loading (based on patch from Andre de Souza Pinto)
|
|
18
|
+
|
|
19
|
+
2010-11-23 Aleksey Sanin <aleksey@aleksey.com>
|
|
20
|
+
* Fixed comments (based on patch from Wolfgang Woehl)
|
|
21
|
+
|
|
22
|
+
2010-11-09 Aleksey Sanin <aleksey@aleksey.com>
|
|
23
|
+
* Fixed extra quotes in configure (bug #631258)
|
|
24
|
+
|
|
25
|
+
2010-07-19 Aleksey Sanin <aleksey@aleksey.com>
|
|
26
|
+
* Fixed configure issue with empty --with-libxml/libxsl and config scripts in /bin directory
|
|
27
|
+
|
|
28
|
+
2010-06-27 Aleksey Sanin <aleksey@aleksey.com>
|
|
29
|
+
* Fixed gcrypt init/shutdown (patch from Roumen)
|
|
30
|
+
|
|
31
|
+
2010-04-25 Aleksey Sanin <aleksey@aleksey.com>
|
|
32
|
+
* 1.2.16 release
|
|
33
|
+
|
|
34
|
+
2010-04-24 Aleksey Sanin <aleksey@aleksey.com>
|
|
35
|
+
* Preparation for 1.2.16 release
|
|
36
|
+
|
|
37
|
+
2010-05-23 Aleksey Sanin <aleksey@aleksey.com>
|
|
38
|
+
* Added X509Data support to xmlsec-gnutls
|
|
39
|
+
|
|
40
|
+
2010-05-12 Aleksey Sanin <aleksey@aleksey.com>
|
|
41
|
+
* Several patches from Roumen: support NSS/NSPR from seamonkey
|
|
42
|
+
package; reorder libxmlsec as dep. lib for mingw; fix gcrypt/src/asn1.h
|
|
43
|
+
include; fix Unicode build for mingw
|
|
44
|
+
* Added RSA/SHA1/SHA256/SHA384/SHA512/MD5/RIPEMD160 for xmlsec-gnutls
|
|
45
|
+
* Added DSA/SHA1 for xmlsec-gnutls
|
|
46
|
+
|
|
47
|
+
2010-05-10 Aleksey Sanin <aleksey@aleksey.com>
|
|
48
|
+
* Added RSA/SHA1/SHA256/SHA384/SHA512/MD5/RIPEMD160 for xmlsec-gcrypt
|
|
49
|
+
* Added DSA/SHA1 for xmlsec-gcrypt
|
|
50
|
+
|
|
51
|
+
2010-05-09 Aleksey Sanin <aleksey@aleksey.com>
|
|
52
|
+
* Added DES KW support for xmlsec-mscrypto
|
|
53
|
+
* Added DES KW support for xmlsec-gnutls
|
|
54
|
+
* Separated xmlsec-gnutls and xmlsec-gcrypt libraries
|
|
55
|
+
|
|
56
|
+
2010-05-08 Aleksey Sanin <aleksey@aleksey.com>
|
|
57
|
+
* Added AES KW support for xmlsec-mscrypto
|
|
58
|
+
* Added AES KW support for xmlsec-gnutls
|
|
59
|
+
|
|
60
|
+
2010-04-30 Aleksey Sanin <aleksey@aleksey.com>
|
|
61
|
+
* Added RSA/OAEP support for xmlsec-mscrypto
|
|
62
|
+
|
|
63
|
+
2010-04-29 Aleksey Sanin <aleksey@aleksey.com>
|
|
64
|
+
* 1.2.15 release
|
|
65
|
+
|
|
66
|
+
2010-04-28 Aleksey Sanin <aleksey@aleksey.com>
|
|
67
|
+
* Preparation for 1.2.15 release
|
|
68
|
+
|
|
69
|
+
2010-04-27 Aleksey Sanin <aleksey@aleksey.com>
|
|
70
|
+
* Converted xmlsec-mscrypto to unicode and provided a compile time
|
|
71
|
+
option to switch between unicode/non-unicode builds
|
|
72
|
+
* Deleted support for old gnutls, new required version 2.8.0
|
|
73
|
+
* Added SHA256/384/512 support for xmlsec-gnutls
|
|
74
|
+
|
|
75
|
+
2010-04-26 Aleksey Sanin <aleksey@aleksey.com>
|
|
76
|
+
* Added support for HMAC with MD5, SHA1, SHA256/384/512 in xmlsec-mscrypto
|
|
77
|
+
* Added support for MD5 RSA/MD5 in xmlsec-mscrypto
|
|
78
|
+
|
|
79
|
+
2010-04-25 Aleksey Sanin <aleksey@aleksey.com>
|
|
80
|
+
* Added support for SHA256/384/512 for digest, HMAC and RSA in xmlsec-nss
|
|
81
|
+
(requires nss 3.8 + nspr 4.3 or greater)
|
|
82
|
+
* Added support for MD5 for digest and RSA in xmlsec-nss
|
|
83
|
+
* Minor fixes to xmlsec-nss (xmlsec bug #118630), bumping nss min
|
|
84
|
+
version to 3.9 + nspr 4.4.1 or greater
|
|
85
|
+
Other minor fixes for xmlsec-nss
|
|
86
|
+
|
|
87
|
+
2010-04-24 Aleksey Sanin <aleksey@aleksey.com>
|
|
88
|
+
* Fix PK_CONFIG problem (reported by Roumen)
|
|
89
|
+
* Enable --crypto for transform checks
|
|
90
|
+
|
|
91
|
+
2010-04-23 Aleksey Sanin <aleksey@aleksey.com>
|
|
92
|
+
* Enable RSA/SHA2 support in xmlsec-mscrypto
|
|
93
|
+
* Misc. cleanups in xmlsec-mscrypto
|
|
94
|
+
* Fix PK_CONFIG problem (reported by Roumen)
|
|
95
|
+
* Fix DSA support in xmlsec-nss (https://bugzilla.mozilla.org/show_bug.cgi?id=561598)
|
|
96
|
+
|
|
97
|
+
2010-04-23 Aleksey Sanin <aleksey@aleksey.com>
|
|
98
|
+
* Fix search for certificates with UTF-8 subject on Windows in xmlsec-mscrypto
|
|
99
|
+
* Remove spaces at the end of lines
|
|
100
|
+
|
|
101
|
+
2010-04-22 Aleksey Sanin <aleksey@aleksey.com>
|
|
102
|
+
* Fix search for certificates with Unicode subject on Windows in xmlsec-mscrypto
|
|
103
|
+
* Copy *.manifest files to installation for Windows builds
|
|
104
|
+
* Convert tabs to spaces
|
|
105
|
+
|
|
106
|
+
2010-04-21 Aleksey Sanin <aleksey@aleksey.com>
|
|
107
|
+
* Fix key name conversion to unicode problem in xmlsec-mscrypto
|
|
108
|
+
|
|
109
|
+
2010-04-20 Aleksey Sanin <aleksey@aleksey.com>
|
|
110
|
+
* Fix compile warnings in xmlsec-openssl
|
|
111
|
+
* Fix linking order issue (based on patch from Roumen)
|
|
112
|
+
|
|
113
|
+
2010-03-30 Aleksey Sanin <aleksey@aleksey.com>
|
|
114
|
+
* Fix typo Copyrigth -> Copyright
|
|
115
|
+
* Add xmlsec-mscrypto to the top level copyright file
|
|
116
|
+
* Refresh the copyright date to 2010
|
|
117
|
+
* Add references to licenses
|
|
118
|
+
|
|
119
|
+
2010-03-18 Aleksey Sanin <aleksey@aleksey.com>
|
|
120
|
+
* Ensure we have only one copy of key's cert after reading pkcs12
|
|
121
|
+
from openssl
|
|
122
|
+
|
|
123
|
+
2010-01-13 Aleksey Sanin <aleksey@aleksey.com>
|
|
124
|
+
* Fix valgrind's invalid read with chained XPath transforms (based
|
|
125
|
+
on patch from Frank Gross).
|
|
126
|
+
|
|
127
|
+
2009-09-05 Aleksey Sanin <aleksey@aleksey.com>
|
|
128
|
+
* preparation for 1.2.14 release
|
|
129
|
+
|
|
130
|
+
2009-11-05 Aleksey Sanin <aleksey@aleksey.com>
|
|
131
|
+
* Use installed ltdl on *nix and native code on Windows
|
|
132
|
+
|
|
133
|
+
2009-10-25 Aleksey Sanin <aleksey@aleksey.com>
|
|
134
|
+
* Fix --with-libxslt-src (patch from Roumen)
|
|
135
|
+
|
|
136
|
+
2009-09-12 Aleksey Sanin <aleksey@aleksey.com>
|
|
137
|
+
* Preparation for 1.2.13 release
|
|
138
|
+
|
|
139
|
+
2009-08-24 Aleksey Sanin <aleksey@aleksey.com>
|
|
140
|
+
* Fix XML dump format
|
|
141
|
+
|
|
142
|
+
2009-08-06 Aleksey Sanin <aleksey@aleksey.com>
|
|
143
|
+
* fix build for openssl 1.0 (based on patch from Roumen Petrov)
|
|
144
|
+
* cleanup test invocation scripts
|
|
145
|
+
* cleanup configure.in
|
|
146
|
+
|
|
147
|
+
2009-07-29 Aleksey Sanin <aleksey@aleksey.com>
|
|
148
|
+
* fix a couple minor issues (based on patch from Arfrever
|
|
149
|
+
Frehtes Taifersar Arahesis)
|
|
150
|
+
|
|
151
|
+
2009-07-17 Aleksey Sanin <aleksey@aleksey.com>
|
|
152
|
+
* preparation for 1.2.13 release
|
|
153
|
+
|
|
154
|
+
2009-07-14 Aleksey Sanin <aleksey@aleksey.com>
|
|
155
|
+
* increase default min hmac size to 80 bits
|
|
156
|
+
* added support for --with-libxml-src and --with-libxslt-src
|
|
157
|
+
./configure options
|
|
158
|
+
|
|
159
|
+
2009-06-25 Aleksey Sanin <aleksey@aleksey.com>
|
|
160
|
+
* implemented c14n 1.1 transform + tests
|
|
161
|
+
|
|
162
|
+
2009-06-15 Aleksey Sanin <aleksey@aleksey.com>
|
|
163
|
+
* configure.in docs/download.html docs/index.html docs/news.html
|
|
164
|
+
include/xmlsec/version.h: preparation for new 1.2.12 release
|
|
165
|
+
|
|
166
|
+
2009-06-15 Aleksey Sanin <aleksey@aleksey.com>
|
|
167
|
+
* added support for the GOST implemented by Russian Crypto Pro CSP
|
|
168
|
+
(patch from Dennis Prochko)
|
|
169
|
+
|
|
170
|
+
2009-06-15 Aleksey Sanin <aleksey@aleksey.com>
|
|
171
|
+
* fixed HMAC vuln with small values of HMAC length
|
|
172
|
+
|
|
173
|
+
2009-06-13 Aleksey Sanin <aleksey@aleksey.com>
|
|
174
|
+
* fixing gnutls detection (bug #585629)
|
|
175
|
+
|
|
176
|
+
2009-06-09 Aleksey Sanin <aleksey@aleksey.com>
|
|
177
|
+
* update SVN to GIT references in docs
|
|
178
|
+
|
|
179
|
+
2009-06-09 Aleksey Sanin <aleksey@aleksey.com>
|
|
180
|
+
* adding configurable Base64 line length
|
|
181
|
+
|
|
182
|
+
2008-09-10 Aleksey Sanin <aleksey@aleksey.com>
|
|
183
|
+
* fixing bug #501315 (patch from Antony Dovgal)
|
|
184
|
+
|
|
185
|
+
2008-08-26 Aleksey Sanin <aleksey@aleksey.com>
|
|
186
|
+
* apps/xmlsec.c: fix integer division (patch from Mikhail)
|
|
187
|
+
|
|
188
|
+
2008-06-10 Aleksey Sanin <aleksey@aleksey.com>
|
|
189
|
+
* src/mscrypto/x509.c src/openssl/x509.c src/nss/x509.c: fix crash
|
|
190
|
+
in the error reporting (based on patch from Frank Gross)
|
|
191
|
+
|
|
192
|
+
2008-06-04 Aleksey Sanin <aleksey@aleksey.com>
|
|
193
|
+
* src/templates.c src/keyinfo.c src/xmltree.c src/mscrypto/x509.c
|
|
194
|
+
src/openssl/x509.c src/nss/x509.c include/xmlsec/xmltree.h:
|
|
195
|
+
added new function xmlSecNodeEncodeAndSetContent for encoding
|
|
196
|
+
special chars in the node content (bug reported by Cliff Hones)
|
|
197
|
+
|
|
198
|
+
2008-06-04 Aleksey Sanin <aleksey@aleksey.com>
|
|
199
|
+
* src/xmltree.c, src/xmlenc.c, include/xmlsec/xmltree.h, include/xmlsec/xmlenc.h:
|
|
200
|
+
add an option to return the replaced (encrypted) node(s) to the caller
|
|
201
|
+
(based on the patch from Frank Gross)
|
|
202
|
+
|
|
203
|
+
2008-05-23 Aleksey Sanin <aleksey@aleksey.com>
|
|
204
|
+
|
|
205
|
+
* src/mscrypto/app.c: fix MS certificates ref counting
|
|
206
|
+
|
|
207
|
+
2007-11-06 Aleksey Sanin <aleksey@aleksey.com>
|
|
208
|
+
|
|
209
|
+
* configure.in docs/download.html docs/index.html docs/news.html
|
|
210
|
+
include/xmlsec/version.h: preparation for new 1.2.11 release
|
|
211
|
+
|
|
212
|
+
2007-07-19 Aleksey Sanin <aleksey@aleksey.com>
|
|
213
|
+
|
|
214
|
+
* bug #454397 - mingw build: added missing files
|
|
215
|
+
|
|
216
|
+
2007-07-19 Aleksey Sanin <aleksey@aleksey.com>
|
|
217
|
+
|
|
218
|
+
* bug #454397 - mingw build: normal way to pass def file to linker
|
|
219
|
+
(patch from Roumen Petrov)
|
|
220
|
+
|
|
221
|
+
2007-07-17 Aleksey Sanin <aleksey@aleksey.com>
|
|
222
|
+
|
|
223
|
+
* bug #454397 - mingw build: (cross-compilation) and several
|
|
224
|
+
minor cleanups (patch from Roumen Petrov)
|
|
225
|
+
|
|
226
|
+
2007-06-16 Aleksey Sanin <aleksey@aleksey.com>
|
|
227
|
+
|
|
228
|
+
* configure.in: configure fixes (patch from Roumen Petrov)
|
|
229
|
+
|
|
230
|
+
2007-06-06 Aleksey Sanin <aleksey@aleksey.com>
|
|
231
|
+
|
|
232
|
+
* src/mscrypto/*: better support for non micorsoft CSP's (patch from
|
|
233
|
+
Wouter and Ed Shallow)
|
|
234
|
+
|
|
235
|
+
2007-02-12 Aleksey Sanin <aleksey@aleksey.com>
|
|
236
|
+
|
|
237
|
+
* Makefile.am xmlsec1.m4: automake macro for xmlsec1 (from Heiko Ronsdorf)
|
|
238
|
+
|
|
239
|
+
2006-09-04 Aleksey Sanin <aleksey@aleksey.com>
|
|
240
|
+
|
|
241
|
+
* include/xmlsec/openssl/app.h src/openssl/app.c src/openssl/x509vfy.c:
|
|
242
|
+
added xmlSecOpenSSLAppKeysMngrAddCertsFile() function
|
|
243
|
+
(David Norrel)
|
|
244
|
+
|
|
245
|
+
2006-08-15 Aleksey Sanin <aleksey@aleksey.com>
|
|
246
|
+
|
|
247
|
+
* src/openssl/x509vfy.c: fixed loading certs from a directory
|
|
248
|
+
during openssl x509 store init (based on idea from David Norrel)
|
|
249
|
+
|
|
250
|
+
2006-06-12 Aleksey Sanin <aleksey@aleksey.com>
|
|
251
|
+
|
|
252
|
+
* include/xmlsec/templates.h, src/templates.c, src/xmltree.c:
|
|
253
|
+
support for custom namespaces prefixes for xmldisg namespace
|
|
254
|
+
(based on patch from Barry Ferg)
|
|
255
|
+
|
|
256
|
+
2006-06-12 Aleksey Sanin <aleksey@aleksey.com>
|
|
257
|
+
|
|
258
|
+
* configure.in docs/download.html docs/index.html docs/news.html
|
|
259
|
+
include/xmlsec/version.h: preparation for new 1.2.10 release
|
|
260
|
+
|
|
261
|
+
2006-06-12 Aleksey Sanin <aleksey@aleksey.com>
|
|
262
|
+
|
|
263
|
+
* xmlsec-config.in: lib64/ folder patch from Daniel
|
|
264
|
+
|
|
265
|
+
2006-06-08 Aleksey Sanin <aleksey@aleksey.com>
|
|
266
|
+
|
|
267
|
+
* config.h.in configure.in xmlsec-nss.pc.in: support different
|
|
268
|
+
packages for NSPR/NSS
|
|
269
|
+
|
|
270
|
+
2006-05-20 Aleksey Sanin <aleksey@aleksey.com>
|
|
271
|
+
Added xmlSecOpenSSLX509StoreAdoptCrl() function
|
|
272
|
+
|
|
273
|
+
2006-03-10 Aleksey Sanin <aleksey@aleksey.com>
|
|
274
|
+
|
|
275
|
+
* src/nss/app.c, src/openssl/x509vfy.c, src/xmldsig.c,
|
|
276
|
+
src/xmlsec-ltdl.c, src/xmlsec-ltdl.patch: cleanup Coverity
|
|
277
|
+
complaints
|
|
278
|
+
|
|
279
|
+
2006-02-26 Aleksey Sanin <aleksey@aleksey.com>
|
|
280
|
+
* apps/xmlsec.c tests/testDSig.sh: added an ability to skip
|
|
281
|
+
tests for transforms not available in given built
|
|
282
|
+
* tests/: added GOST test from Dmitry Belyavsky
|
|
283
|
+
|
|
284
|
+
2006-02-16 Aleksey Sanin <aleksey@aleksey.com>
|
|
285
|
+
* src/mscrypto/certkeys.c: fixed memleak in msrypto
|
|
286
|
+
|
|
287
|
+
2006-02-14 Aleksey Sanin <aleksey@aleksey.com>
|
|
288
|
+
* include/xmlsec/mscrypto/x509.h src/mscrypto/x509vfy.h:
|
|
289
|
+
added an option for disabling system trusted certs
|
|
290
|
+
for mscrypto store (based on patch from Dmitry Belyavsky)
|
|
291
|
+
|
|
292
|
+
2006-02-10 Aleksey Sanin <aleksey@aleksey.com>
|
|
293
|
+
* authors docs/authors.html
|
|
294
|
+
include/xmlsec/app.h include/xmlsec/private.h
|
|
295
|
+
include/xmlsec/strings.h include/xmlsec/mscrypto/crypto.h
|
|
296
|
+
include/xmlsec/mscrypto/symbols.h src/app.c src/dl.c
|
|
297
|
+
src/strings.c src/transforms.c src/mscrypto/certkeys.c
|
|
298
|
+
src/mscrypto/crypto.c src/mscrypto/digests.c
|
|
299
|
+
src/mscrypto/signatures.c src/skeleton/crypto.c:
|
|
300
|
+
added support for GOST94 for digests and
|
|
301
|
+
GOST 2001 keys/signatures: mscrypto only (patch from
|
|
302
|
+
Dmitry Belyavsky)
|
|
303
|
+
|
|
304
|
+
2005-12-20 Aleksey Sanin <aleksey@aleksey.com>
|
|
305
|
+
|
|
306
|
+
* src/mscrypto/x509vfy.c: check MSCrypto store for certs
|
|
307
|
+
(patch from Dmitry Belyavsky); replace tabs with spaces
|
|
308
|
+
|
|
309
|
+
2005-12-15 Aleksey Sanin <aleksey@aleksey.com>
|
|
310
|
+
|
|
311
|
+
* include/xmlsec/templates.h src/templates.c: functions
|
|
312
|
+
for adding X509IssuerName and X509SerialNumber nodes
|
|
313
|
+
to the template (patch from Dmitry Belyavsky)
|
|
314
|
+
|
|
315
|
+
2005-11-14 Aleksey Sanin <aleksey@aleksey.com>
|
|
316
|
+
|
|
317
|
+
* configure.in: fixing shrext vs. shrext_cmds conflict
|
|
318
|
+
|
|
319
|
+
2005-09-25 Aleksey Sanin <aleksey@aleksey.com>
|
|
320
|
+
* src/nss/pkikeys.c: fixing xmlsec-nss crash
|
|
321
|
+
* configure.in: change crypto libs order to be openssl/nss/gnutls
|
|
322
|
+
|
|
323
|
+
2005-07-12 Aleksey Sanin <aleksey@aleksey.com>
|
|
324
|
+
|
|
325
|
+
* configure.in docs/download.html docs/index.html docs/news.html:
|
|
326
|
+
preparation for new 1.2.9 release
|
|
327
|
+
|
|
328
|
+
2005-07-12 Aleksey Sanin <aleksey@aleksey.com>
|
|
329
|
+
|
|
330
|
+
* src/xmltree.c: fixing a problem with namespaces in the
|
|
331
|
+
nodes created by "template" functions
|
|
332
|
+
|
|
333
|
+
2005-07-10 Aleksey Sanin <aleksey@aleksey.com>
|
|
334
|
+
|
|
335
|
+
* src/openssl/evp.c: added hack from Erwann ABALEA:
|
|
336
|
+
OpenSSL ENGINE keys are always private since we can't query
|
|
337
|
+
engine and do real check
|
|
338
|
+
|
|
339
|
+
2005-07-10 Aleksey Sanin <aleksey@aleksey.com>
|
|
340
|
+
|
|
341
|
+
* docs/* include/* src/* tests/*: added support for
|
|
342
|
+
RSA-MD5/RIPEMD160/SHA224/SHA256/SHA384/SHA512 for OpenSSL 0.9.8
|
|
343
|
+
|
|
344
|
+
2005-07-10 Aleksey Sanin <aleksey@aleksey.com>
|
|
345
|
+
|
|
346
|
+
* configure.in docs/ include/ src/ tests/: implemented
|
|
347
|
+
SHA224/256/384/512, HMAC-SHA224/256/384/512, MD5 for OpenSSL 0.9.8
|
|
348
|
+
|
|
349
|
+
2005-07-10 Aleksey Sanin <aleksey@aleksey.com>
|
|
350
|
+
|
|
351
|
+
* configure.in docs/xmldsig.html docs/xmlenc.html
|
|
352
|
+
include/xmlsec/app.h include/xmlsec/private.h include/xmlsec/strings.h
|
|
353
|
+
include/xmlsec/openssl/crypto.h include/xmlsec/openssl/symbols.h
|
|
354
|
+
src/app.c src/dl.c src/strings.c: preparations for SHA224/256/384/512
|
|
355
|
+
and friends
|
|
356
|
+
|
|
357
|
+
2005-07-09 Aleksey Sanin <aleksey@aleksey.com>
|
|
358
|
+
|
|
359
|
+
* configure.in tests/aleksey-xmldsig-01/* tests/keys/*
|
|
360
|
+
tests/merlin-xmldsig-twenty-three/signature.tmpl
|
|
361
|
+
tests/testDSig.sh: updating test certificates for picky
|
|
362
|
+
OpenSSL 0.9.8
|
|
363
|
+
|
|
364
|
+
|
|
365
|
+
2005-07-08 Aleksey Sanin <aleksey@aleksey.com>
|
|
366
|
+
* configure.in src/openssl/x509vfy.c: initial support
|
|
367
|
+
for OpenSSL 0.9.8
|
|
368
|
+
|
|
369
|
+
2005-05-12 Aleksey Sanin <aleksey@aleksey.com>
|
|
370
|
+
|
|
371
|
+
* src/openssl/app.c: fixed "disable-x509" build option
|
|
372
|
+
(patch from Bernd Becker)
|
|
373
|
+
|
|
374
|
+
2005-05-11 Aleksey Sanin <aleksey@aleksey.com>
|
|
375
|
+
|
|
376
|
+
* src/openssl/signatures.c: fixed "disable-dsa" build option
|
|
377
|
+
(patch from Bernd Becker)
|
|
378
|
+
|
|
379
|
+
Wed 6 Apr 2005 00:18:21 CEST Igor Zlatkovic <igor@zlatkovic.com>
|
|
380
|
+
|
|
381
|
+
* .cvsignore: added Eclipse project files
|
|
382
|
+
|
|
383
|
+
2005-03-31 Aleksey Sanin <aleksey@aleksey.com>
|
|
384
|
+
|
|
385
|
+
* src/xmltree.c: fixing warning from Solaris (bug #172201)
|
|
386
|
+
|
|
387
|
+
2005-03-30 Aleksey Sanin <aleksey@aleksey.com>
|
|
388
|
+
|
|
389
|
+
* configure.in docs/download.html docs/index.html docs/news.html
|
|
390
|
+
include/xmlsec/version.h: preparing new release 1.2.8
|
|
391
|
+
|
|
392
|
+
Tue 22 Mar 2005 20:10:19 CET Igor Zlatkovic <igor@zlatkovic.com>
|
|
393
|
+
|
|
394
|
+
* apps/xmlsec.c: changed the type of the --depth parameter to
|
|
395
|
+
number.
|
|
396
|
+
|
|
397
|
+
2005-03-06 Aleksey Sanin <aleksey@aleksey.com>
|
|
398
|
+
|
|
399
|
+
* include/xmlsec/nss/crypto.h src/nss/Makefile.am src/nss/crypto.c
|
|
400
|
+
src/nss/keytrans.c src/nss/kt_rsa.c: better rsa pkcs transform
|
|
401
|
+
using nss wrap/unwrap code (based on the OO.org patch)
|
|
402
|
+
|
|
403
|
+
2005-03-06 Aleksey Sanin <aleksey@aleksey.com>
|
|
404
|
+
|
|
405
|
+
* include/xmlsec/nss/crypto.h src/nss/app.c
|
|
406
|
+
src/nss/crypto.c src/nss/x509.c: fixed nss initialization
|
|
407
|
+
problem
|
|
408
|
+
|
|
409
|
+
2005-03-05 Aleksey Sanin <aleksey@aleksey.com>
|
|
410
|
+
|
|
411
|
+
* src/nss/pkikeys.c: check that input public and private
|
|
412
|
+
keys have the same type (based on the OO.org patch)
|
|
413
|
+
|
|
414
|
+
2005-03-05 Aleksey Sanin <aleksey@aleksey.com>
|
|
415
|
+
|
|
416
|
+
* src/nss/digests.c src/nss/hmac.c src/nss/pkikeys.c
|
|
417
|
+
src/nss/signatures.c src/nss/x509.c src/nss/x509vfy.c:
|
|
418
|
+
print more detailed error message (based on the OO.org patch)
|
|
419
|
+
|
|
420
|
+
2005-03-04 Aleksey Sanin <aleksey@aleksey.com>
|
|
421
|
+
|
|
422
|
+
* src/mscrypto/x509vfy.c: fixed cert search (based on the OO.org patch)
|
|
423
|
+
|
|
424
|
+
2005-03-01 Aleksey Sanin <aleksey@aleksey.com>
|
|
425
|
+
|
|
426
|
+
* src/mscrypto/app.c: added stubs for adding keys to mscrypto
|
|
427
|
+
keys manager from ms key handle
|
|
428
|
+
|
|
429
|
+
2005-02-28 Aleksey Sanin <aleksey@aleksey.com>
|
|
430
|
+
|
|
431
|
+
* src/mscrypto/certkeys.c: WinNT 4.0 support (based on the OO.org patch)
|
|
432
|
+
|
|
433
|
+
2005-02-28 Aleksey Sanin <aleksey@aleksey.com>
|
|
434
|
+
|
|
435
|
+
* src/mscrypto/certkeys.c: preparation for WinNT 4.0 support
|
|
436
|
+
|
|
437
|
+
2005-02-28 Aleksey Sanin <aleksey@aleksey.com>
|
|
438
|
+
|
|
439
|
+
* src/mscrypto/x509.c: enable private key search for
|
|
440
|
+
a given certificate (based on the OO.org patch)
|
|
441
|
+
|
|
442
|
+
2005-02-27 Aleksey Sanin <aleksey@aleksey.com>
|
|
443
|
+
|
|
444
|
+
* src/mscrypto/certkeys.c: use default context when
|
|
445
|
+
getting public key from a cert (based on the OO.org patch)
|
|
446
|
+
* src/mscrypto/x509vfy.c: search both trusted and untrusted
|
|
447
|
+
cert stores when cert with given parameters is needed or
|
|
448
|
+
when certs chain is constructed (based on the OO.org patch)
|
|
449
|
+
|
|
450
|
+
2005-02-27 Aleksey Sanin <aleksey@aleksey.com>
|
|
451
|
+
|
|
452
|
+
* include/xmlsec/mscrypto/app.h include/xmlsec/mscrypto/x509.h
|
|
453
|
+
src/mscrypto/app.c src/mscrypto/x509vfy.c:
|
|
454
|
+
added function to add custom MS cert stores
|
|
455
|
+
to the xmlsec-mscrypto default keys manager
|
|
456
|
+
(based on the OO.org patch).
|
|
457
|
+
|
|
458
|
+
2005-02-22 Aleksey Sanin <aleksey@aleksey.com>
|
|
459
|
+
|
|
460
|
+
* docs/*: updated docs
|
|
461
|
+
|
|
462
|
+
2005-02-22 Aleksey Sanin <aleksey@aleksey.com>
|
|
463
|
+
|
|
464
|
+
* docs/index.html docs/news.html include/xmlsec/templates.h
|
|
465
|
+
src/templates.c: added functions to create <X509Data/> node
|
|
466
|
+
children in the signature template
|
|
467
|
+
|
|
468
|
+
2005-02-22 Aleksey Sanin <aleksey@aleksey.com>
|
|
469
|
+
|
|
470
|
+
* src/bn.c src/mscrypto/crypto.c src/mscrypto/x509.c
|
|
471
|
+
src/mscrypto/x509vfy.c tests/testDSig.sh
|
|
472
|
+
tests/aleksey-xmldsig-01/x509data-sn-test.tmpl
|
|
473
|
+
tests/aleksey-xmldsig-01/x509data-sn-test.xml
|
|
474
|
+
tests/keys/README tests/keys/*: support for
|
|
475
|
+
negative serial numbers, mscrypto cleanup
|
|
476
|
+
|
|
477
|
+
2005-02-21 Aleksey Sanin <aleksey@aleksey.com>
|
|
478
|
+
|
|
479
|
+
* docs/* docs/api/* man/*: updated docs
|
|
480
|
+
|
|
481
|
+
2005-02-21 Aleksey Sanin <aleksey@aleksey.com>
|
|
482
|
+
|
|
483
|
+
* configure.in, docs/download.html, docs/index.html, docs/news.html,
|
|
484
|
+
include/xmlsec/version.h: preparing new release 1.2.7
|
|
485
|
+
|
|
486
|
+
2005-01-26 Aleksey Sanin <aleksey@aleksey.com>
|
|
487
|
+
|
|
488
|
+
* src/bn.c: fixed xmlSecBnFromString function (patch from Michael Mi)
|
|
489
|
+
|
|
490
|
+
2004-11-08 Aleksey Sanin <aleksey@aleksey.com>
|
|
491
|
+
|
|
492
|
+
* include/xmlsec/keysmngr.h src/keysmngr.c: added
|
|
493
|
+
xmlSecSimpleKeysStoreGetKeys() function
|
|
494
|
+
|
|
495
|
+
2004-11-07 Aleksey Sanin <aleksey@aleksey.com>
|
|
496
|
+
|
|
497
|
+
* src/xmltree.c: fixed xmlSecGenerateID
|
|
498
|
+
|
|
499
|
+
2004-10-27 Aleksey Sanin <aleksey@aleksey.com>
|
|
500
|
+
|
|
501
|
+
* src/dl.c: set dl memory functions before initialization (from
|
|
502
|
+
Daniel Vogelheim patch)
|
|
503
|
+
|
|
504
|
+
2004-10-14 Aleksey Sanin <aleksey@aleksey.com>
|
|
505
|
+
|
|
506
|
+
* src/openssl/x509vfy.c: fixed bug #155329 (parsing quoted values
|
|
507
|
+
in the certificate subject)
|
|
508
|
+
|
|
509
|
+
2004-09-18 Aleksey Sanin <aleksey@aleksey.com>
|
|
510
|
+
* config.h.in configure.in inlude/xmlsec/private.h src/xmltree.c:
|
|
511
|
+
use xmlParseInNodeContext function to parse encrypted text in
|
|
512
|
+
xmlSecReplaceNodeBuffer, this bumps libxml2 requirements to 2.6.12
|
|
513
|
+
(bug #142358)
|
|
514
|
+
|
|
515
|
+
2004-08-25 Aleksey Sanin <aleksey@aleksey.com>
|
|
516
|
+
|
|
517
|
+
* configure.in docs/download.html docs/index.html
|
|
518
|
+
docs/news.html include/xmlsec/version.h: preparing
|
|
519
|
+
new release
|
|
520
|
+
|
|
521
|
+
2004-06-21 Aleksey Sanin <aleksey@aleksey.com>
|
|
522
|
+
|
|
523
|
+
* include/xmlsec/app.h include/xmlsec/gnutls/app.h
|
|
524
|
+
src/app.c src/gnutls/app.c src/skeleton/app.c: added functions
|
|
525
|
+
to load keys and certificates from memory (Bernd Becker)
|
|
526
|
+
|
|
527
|
+
2004-06-21 Aleksey Sanin <aleksey@aleksey.com>
|
|
528
|
+
|
|
529
|
+
* src/bn.c: keep a '0' character when we remove '0' from the beggining
|
|
530
|
+
|
|
531
|
+
2004-06-17 Aleksey Sanin <aleksey@aleksey.com>
|
|
532
|
+
|
|
533
|
+
* src/xmlenc.c: added NULL check
|
|
534
|
+
* src/xmltree.c: fixed memory leak
|
|
535
|
+
|
|
536
|
+
2004-06-16 Aleksey Sanin <aleksey@aleksey.com>
|
|
537
|
+
|
|
538
|
+
* Fixed xmlSecTmplNodeWriteNsList() function
|
|
539
|
+
|
|
540
|
+
2004-06-09 Igor Zlatkovic <igor@zlatkovic.com>
|
|
541
|
+
|
|
542
|
+
* win32/configure.js win32/Makefile.* minor changes for the new
|
|
543
|
+
layout of the Windows binary package
|
|
544
|
+
|
|
545
|
+
2004-05-13 Aleksey Sanin <aleksey@aleksey.com>
|
|
546
|
+
|
|
547
|
+
* examples/xmldsigverify.c: disable extended debug output
|
|
548
|
+
(fixed a hole found by Pawel)
|
|
549
|
+
|
|
550
|
+
2004-04-19 Aleksey Sanin <aleksey@aleksey.com>
|
|
551
|
+
|
|
552
|
+
* src/nodeset.c: fixing C14N bug with processing namespaces from attributes
|
|
553
|
+
|
|
554
|
+
2004-04-13 Aleksey Sanin <aleksey@aleksey.com>
|
|
555
|
+
|
|
556
|
+
* configure.in docs/download.html docs/index.html docs/news.html:
|
|
557
|
+
1.2.5 release preparation
|
|
558
|
+
|
|
559
|
+
2004-03-16 Aleksey Sanin <aleksey@aleksey.com>
|
|
560
|
+
|
|
561
|
+
* include/xmlsec/strings.h src/mscrypto/certkeys.c
|
|
562
|
+
src/nss/pkikeys.c src/openssl/evp.c src/strings.c: added J node
|
|
563
|
+
for DSAKeyValue
|
|
564
|
+
* tests/phaos-xmldsig-three/* tests/testDSig.sh: added new
|
|
565
|
+
phaos-xmldsig-three XMLDSig tests vectors
|
|
566
|
+
|
|
567
|
+
Mon Feb 23 17:44:29 2004 Aleksey Sanin <aleksey@aleksey.com>
|
|
568
|
+
|
|
569
|
+
* examples/xkms-server.c: finished xkms-server example
|
|
570
|
+
|
|
571
|
+
Thu Feb 19 16:01:38 2004 Aleksey Sanin <aleksey@aleksey.com>
|
|
572
|
+
|
|
573
|
+
* examples/.cvsignore examples/Makefile examples/Makefile.w32
|
|
574
|
+
examples/xkms-server.c: started work on xkms server example
|
|
575
|
+
|
|
576
|
+
Thu Feb 19 12:32:55 2004 Aleksey Sanin <aleksey@aleksey.com>
|
|
577
|
+
|
|
578
|
+
* include/xmlsec/xkms.h include/xmlsec/xmltree.h src/xkms.c
|
|
579
|
+
src/xmlsec.c src/xmltree.c: added ID attribute generation for xkms
|
|
580
|
+
* tests/aleksey-xkms-01/* tests/testXKMS.sh: modified xkms tests
|
|
581
|
+
to ignore Id attribute in comparison
|
|
582
|
+
|
|
583
|
+
Fri Feb 13 00:05:02 2004 Aleksey Sanin <aleksey@aleksey.com>
|
|
584
|
+
|
|
585
|
+
* configure.in include/xmlsec/private.h: fixed libxslt configuration
|
|
586
|
+
problem
|
|
587
|
+
|
|
588
|
+
Mon Feb 9 08:40:26 2004 Aleksey Sanin <aleksey@aleksey.com>
|
|
589
|
+
|
|
590
|
+
* src/xmltree.c: fixed bug with encrypting nodes with
|
|
591
|
+
no content (reported by Tomas Seiger)
|
|
592
|
+
|
|
593
|
+
Sat Feb 7 22:42:11 2004 Aleksey Sanin <aleksey@aleksey.com>
|
|
594
|
+
|
|
595
|
+
* include/xmlsec/* src/* tests/*: added XKMS SOAP 1.2 bindings
|
|
596
|
+
|
|
597
|
+
Thu Feb 5 23:37:24 2004 Aleksey Sanin <aleksey@aleksey.com>
|
|
598
|
+
|
|
599
|
+
* apps/xmlsec.c include/* src/* tests/*: added XKMS SOAP 1.1 bindings
|
|
600
|
+
|
|
601
|
+
Thu Feb 5 16:26:40 2004 Aleksey Sanin <aleksey@aleksey.com>
|
|
602
|
+
|
|
603
|
+
* apps/xmlsec.c: added new params for xkms
|
|
604
|
+
* include/xmlsec/Makefile.am include/xmlsec/private/xkms.h:
|
|
605
|
+
added new private xmlsec headers folder
|
|
606
|
+
* include/xmlsec/xmltree.h src/xmltree.c: created code for
|
|
607
|
+
reading/writing qname values
|
|
608
|
+
* include/xmlsec/strings.h include/xmlsec/soap.h
|
|
609
|
+
src/strings.h src/soap.c src/Makefile.am: created basic soap
|
|
610
|
+
messages parsing framework
|
|
611
|
+
* include/xmlsec/xkms.h src/xkms.c: added xkms request format
|
|
612
|
+
enum and parameters
|
|
613
|
+
* tests/aleksey-xkms-01/ tests/testXKMS.sh: added new tests
|
|
614
|
+
|
|
615
|
+
Wed Feb 4 01:26:51 2004 Aleksey Sanin <aleksey@aleksey.com>
|
|
616
|
+
|
|
617
|
+
* apps/xmlsec.c: created new --xkms-format parameter
|
|
618
|
+
(plain/soap-1.1/soap-1.2)
|
|
619
|
+
* configure.in xmlsec.spec.in include/xmlsec/Makefile.am
|
|
620
|
+
include/xmlsec/private/*: move internal xkms declarations to
|
|
621
|
+
a newly created "xmlsec/private" includes folder
|
|
622
|
+
* include/xmlsec/strings.h include/xmlsec/xkms.h
|
|
623
|
+
src/strings.c src/xkms.c tests/testXKMS.sh: preparation for soap
|
|
624
|
+
request/response suppport
|
|
625
|
+
|
|
626
|
+
Tue Feb 3 22:44:36 2004 Aleksey Sanin <aleksey@aleksey.com>
|
|
627
|
+
|
|
628
|
+
* apps/xmlsec.c: combined xkms server commands into one
|
|
629
|
+
* include/xmlsec/* src/*: added ValidateRequest/ValidateResult
|
|
630
|
+
StatusRequest/StatusResult and CompoundRequest/CompoundResult
|
|
631
|
+
* tests/aleksey-xkms-01/* tests/testXKMS.sh: added new negative
|
|
632
|
+
test cases
|
|
633
|
+
|
|
634
|
+
Tue Feb 3 18:12:10 2004 Aleksey Sanin <aleksey@aleksey.com>
|
|
635
|
+
|
|
636
|
+
* apps/xmlsec.c: added xkms server "expected service" param
|
|
637
|
+
* include/xmlsec/* src/*: created errors fallback when processing
|
|
638
|
+
xkms requests
|
|
639
|
+
* tests/aleksey-xkms-01/* tests/testXKMS.sh: added more negative
|
|
640
|
+
test cases
|
|
641
|
+
|
|
642
|
+
Tue Feb 3 01:40:29 2004 Aleksey Sanin <aleksey@aleksey.com>
|
|
643
|
+
|
|
644
|
+
* configure.in: tweaked my debug environment
|
|
645
|
+
* include/xmlsec/xmltree.h src/xmltree.c: created string2int and string2bitmap
|
|
646
|
+
helper klasses
|
|
647
|
+
* include/xmlsec/keys.h src/keyinfo.c src/keys.c: added KeyUseWith list
|
|
648
|
+
to the KeyReq object
|
|
649
|
+
* include/xmlsec/strings.h src/strings.c: added some xkms strings
|
|
650
|
+
* include/xmlsec/xkms.h src/xkms.c: LocateRequest (except signatures)
|
|
651
|
+
and most of LocateResult
|
|
652
|
+
|
|
653
|
+
Mon Feb 2 16:55:13 2004 Aleksey Sanin <aleksey@aleksey.com>
|
|
654
|
+
|
|
655
|
+
* include/xmlsec/xkms.h src/strings.c src/xkms.c: read xkms RequestAbstractType
|
|
656
|
+
and write xkms ResponseQbstractType (no signatures)
|
|
657
|
+
* Makefile.am tests/testXKMS.sh: created check-xkms target and script
|
|
658
|
+
* tests/aleksey-xkms-01: even more keys (der/pkcs12 formats),
|
|
659
|
+
"key not found" tests
|
|
660
|
+
|
|
661
|
+
Mon Feb 2 13:12:07 2004 Aleksey Sanin <aleksey@aleksey.com>
|
|
662
|
+
|
|
663
|
+
* apps/xmlsec.c include/xmlsec/xkms.h include/xmlsec/xmlsec.h src/xkms.c:
|
|
664
|
+
updated xkms schemas from xkms 2.0, renamed a couple functions
|
|
665
|
+
|
|
666
|
+
* tests/aleksey-xkms-01: copied new examples from xkms 2.0 spec
|
|
667
|
+
and created keys for using with these examples
|
|
668
|
+
|
|
669
|
+
Mon Jan 26 11:48:42 2004 Aleksey Sanin <aleksey@aleksey.com>
|
|
670
|
+
|
|
671
|
+
* configure.in docs/download.html docs/index.html docs/news.html
|
|
672
|
+
include/xmlsec/version.h: preparation for 1.2.4 release
|
|
673
|
+
* docs/related.html: added link to PyXmlSec project
|
|
674
|
+
|
|
675
|
+
Fri Jan 23 16:30:38 2004 Aleksey Sanin <aleksey@aleksey.com>
|
|
676
|
+
|
|
677
|
+
* docs/xmlsec-man.html man/xmlsec1-config.1 man/xmlsec1.1
|
|
678
|
+
xmlsec-config.in: make xmlsec1-config man page generic
|
|
679
|
+
|
|
680
|
+
Fri Jan 23 09:34:10 2004 Aleksey Sanin <aleksey@aleksey.com>
|
|
681
|
+
|
|
682
|
+
* configure.in: and one more config bug from John
|
|
683
|
+
|
|
684
|
+
Thu Jan 22 16:24:44 2004 Aleksey Sanin <aleksey@aleksey.com>
|
|
685
|
+
|
|
686
|
+
* configure.in: and one more gnutls configuration bug from John
|
|
687
|
+
|
|
688
|
+
Thu 22 Jan 2004 10:56:33 AM PST <aleksey@aleksey.com>
|
|
689
|
+
|
|
690
|
+
* src/buffer.c src/list.c: don' pass NULL to xmlRealloc()
|
|
691
|
+
|
|
692
|
+
Mon Jan 12 13:05:18 2004 Aleksey Sanin <aleksey@aleksey.com>
|
|
693
|
+
|
|
694
|
+
* examples/encrypt3.c include/xmlsec/crypto.h include/xmlsec/nss: make
|
|
695
|
+
exmaples compile with nss (again reported by John)
|
|
696
|
+
|
|
697
|
+
Mon Jan 12 10:30:24 2004 Aleksey Sanin <aleksey@aleksey.com>
|
|
698
|
+
|
|
699
|
+
* xmlsec-config.in: fixed nss configuration bug (reproted by John)
|
|
700
|
+
|
|
701
|
+
Sat Jan 10 19:03:17 2004 Aleksey Sanin <aleksey@aleksey.com>
|
|
702
|
+
|
|
703
|
+
* configure.in src/gnutls/ciphers.c src/gnutls/digests.c src/gnutls/hmac.c:
|
|
704
|
+
restored support for gnutls < 1.0 by request from John
|
|
705
|
+
|
|
706
|
+
Mon Jan 5 12:55:44 2004 Aleksey Sanin <aleksey@aleksey.com>
|
|
707
|
+
|
|
708
|
+
* configure.in docs/download.html docs/index.html
|
|
709
|
+
docs/news.html docs/xmlsec-man.html include/xmlsec/version.h
|
|
710
|
+
man/xmlsec1-config.1 man/xmlsec1.1: preparing 1.2.3 release
|
|
711
|
+
|
|
712
|
+
Mon Jan 5 12:42:52 2004 Aleksey Sanin <aleksey@aleksey.com>
|
|
713
|
+
|
|
714
|
+
* configure.in src/gnutls/ciphers.c src/gnutls/digests.c
|
|
715
|
+
src/gnutls/hmac.c: upgraded gnutls to 1.0.4 (bug #129190)
|
|
716
|
+
|
|
717
|
+
Thu 13 Nov 2003 08:19:55 AM PST <aleksey@aleksey.com>
|
|
718
|
+
|
|
719
|
+
* src/mscrypto/app.c: fixed non-initialized values (Glenn)
|
|
720
|
+
|
|
721
|
+
2003-11-11 Aleksey Sanin <aleksey@aleksey.com>
|
|
722
|
+
|
|
723
|
+
* docs/download.html docs/index.html docs/news.html
|
|
724
|
+
man/xmlsec1.1: preparing 1.2.2 release
|
|
725
|
+
|
|
726
|
+
Mon Nov 10 21:22:36 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
727
|
+
|
|
728
|
+
* src/bn.c: fixed xmlSecBnToDecString problem (reported by Edward)
|
|
729
|
+
|
|
730
|
+
Thu Nov 6 22:52:57 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
731
|
+
|
|
732
|
+
* configure.in: use pkgconfig for configuration if possible
|
|
733
|
+
(based on Daniel's idea)
|
|
734
|
+
* include/xmlsec/private.h include/xmlsec/xmltree.h
|
|
735
|
+
src/errors.c src/openssl/app.c: made xmlSecStrPrintf and
|
|
736
|
+
xmlSecStrVPrintf declarations private to xmlsec to fix
|
|
737
|
+
examples build failure
|
|
738
|
+
|
|
739
|
+
Wed Nov 5 14:19:11 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
740
|
+
|
|
741
|
+
* configure.in: fixed "--with-html-doc" option (patch from Daniel)
|
|
742
|
+
|
|
743
|
+
Wed Nov 5 13:39:47 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
744
|
+
|
|
745
|
+
* configure.in: fixed "--with-mozilla-ver" option for ./configure
|
|
746
|
+
script (patch from Daniel)
|
|
747
|
+
|
|
748
|
+
Wed Oct 29 07:55:17 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
749
|
+
|
|
750
|
+
* configure.in include/xmlsec/xmltree.h src/dl.c
|
|
751
|
+
src/errors.c src/mscrypto/crypto.c src/nss/crypto.c
|
|
752
|
+
src/openssl/app.c: fixed snprintf and vsnprintf warnings (bug #125684)
|
|
753
|
+
|
|
754
|
+
Mon Oct 20 19:34:35 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
755
|
+
|
|
756
|
+
* configure.in: created "--with-html-dir" option
|
|
757
|
+
to specify docs installation path
|
|
758
|
+
|
|
759
|
+
Mon Oct 20 08:40:46 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
760
|
+
|
|
761
|
+
* configure.in: load correct static openssl library when
|
|
762
|
+
more than one one openssl version is available (patch
|
|
763
|
+
from Roumen, bug #124534)
|
|
764
|
+
|
|
765
|
+
Mon Oct 13 19:43:52 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
766
|
+
|
|
767
|
+
* configure.in docs/download.html docs/index.html docs/news.html
|
|
768
|
+
include/xmlsec/version.h: new 1.2.1 release
|
|
769
|
+
|
|
770
|
+
Mon Oct 13 19:29:55 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
771
|
+
|
|
772
|
+
* configure.in docs/Makefile.am: added support for XMLSEC_DOCDIR
|
|
773
|
+
environment variable to ./configure script and removed *.sgml
|
|
774
|
+
files from docs installation
|
|
775
|
+
|
|
776
|
+
Sat Oct 11 21:16:54 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
777
|
+
|
|
778
|
+
* include/xmlsec/strings.h include/xmlsec/templates.h
|
|
779
|
+
src/strings.c src/templates.c: added template functions
|
|
780
|
+
for creating <enc:KeyReference/> and <enc:DataReference/>
|
|
781
|
+
nodes (based on patch from Wouter)
|
|
782
|
+
|
|
783
|
+
Thu 09 Oct 2003 03:59:02 PM PDT Aleksey Sanin <aleksey@aleksey.com>
|
|
784
|
+
|
|
785
|
+
* src/nodeset.c src/transforms.c: don't ignore nodes on the document
|
|
786
|
+
root element level (bug #124245)
|
|
787
|
+
|
|
788
|
+
Sun Oct 5 01:05:30 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
789
|
+
|
|
790
|
+
* include/xmlsec/transforms.h include/xmlsec/xmldsig.h
|
|
791
|
+
src/transforms.c src/xmldsig.c src/xpath.c apps/xmlsec.c
|
|
792
|
+
docs/faq.html: implemented Visa 3D hack to process some
|
|
793
|
+
URI attributes without XPath/XInclude engines
|
|
794
|
+
|
|
795
|
+
Thu Oct 2 10:28:59 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
796
|
+
|
|
797
|
+
* src/dl.c src/openssl/app.c src/openssl/x509vfy.c: fixing
|
|
798
|
+
compilation warnings reported in bug #123692
|
|
799
|
+
|
|
800
|
+
Wed Oct 1 19:05:13 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
801
|
+
|
|
802
|
+
* src/gnutls/README src/mscrypto/README src/nss/README
|
|
803
|
+
src/openssl/README: updated README files
|
|
804
|
+
|
|
805
|
+
Wed 01 Oct 2003 09:11:58 AM PDT Aleksey Sanin <aleksey@aleksey.com>
|
|
806
|
+
|
|
807
|
+
* include/xmlsec/dl.h: moved closing bracket for "extern "C"
|
|
808
|
+
a couple lines up to be in the right place (bug #123640)
|
|
809
|
+
|
|
810
|
+
Mon 29 Sep 2003 07:27:14 PM PDT Aleksey Sanin <aleksey@aleksey.com>
|
|
811
|
+
|
|
812
|
+
* docs/download.html docs/index.html docs/news.html: preparation
|
|
813
|
+
for 1.2.0 release
|
|
814
|
+
|
|
815
|
+
Mon 29 Sep 2003 07:07:07 PM PDT Aleksey Sanin <aleksey@aleksey.com>
|
|
816
|
+
|
|
817
|
+
* src/mscrypto: 2nd code review pass
|
|
818
|
+
|
|
819
|
+
Sat Sep 27 18:31:20 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
820
|
+
|
|
821
|
+
* include/xmlsec/openssl/crypto.h src/openssl/app.c
|
|
822
|
+
src/openssl/crypto.c src/openssl/x509vfy.c: added "default trusted certs"
|
|
823
|
+
folder and make it an input parameter to xmlSecOpenSSLAppInit method.
|
|
824
|
+
* examples/xmldsigverify.c: make use of this change
|
|
825
|
+
|
|
826
|
+
Sat 27 Sep 2003 05:23:41 PM PDT Aleksey Sanin <aleksey@aleksey.com>
|
|
827
|
+
|
|
828
|
+
* examples/ docs/tests/ docs/ : created new xmldsigverify script
|
|
829
|
+
and upgraded tests
|
|
830
|
+
|
|
831
|
+
Fri 26 Sep 2003 05:27:08 PM PDT Aleksey Sanin <aleksey@aleksey.com>
|
|
832
|
+
* src/mscrypto/ include/xmlsec/mscrypto/ : added API documentation
|
|
833
|
+
from Wouter
|
|
834
|
+
* docs/ : re-run the docs generation to pickup the new documentation
|
|
835
|
+
|
|
836
|
+
Thu Sep 25 23:10:19 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
837
|
+
|
|
838
|
+
* docs/authors.html: added "authors and contributors" page
|
|
839
|
+
* docs/ man/: regenerated docs to include xmlsec-mscrypto and link to new
|
|
840
|
+
authors.html page
|
|
841
|
+
* include/ src/: api reference documentation updates
|
|
842
|
+
|
|
843
|
+
Thu Sep 25 20:47:11 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
844
|
+
|
|
845
|
+
* include/xmlsec/keysdata.h: introduced new cert-pem and cert-der
|
|
846
|
+
key formats (public key in a certificate)
|
|
847
|
+
* include/xmlsec/nss/app.h nclude/xmlsec/nss/x509.h
|
|
848
|
+
include/xmlsec/openssl/app.h include/xmlsec/openssl/x509.h
|
|
849
|
+
src/nss/app.c src/nss/crypto.c src/nss/x509.c
|
|
850
|
+
src/openssl/app.c src/openssl/x509.c
|
|
851
|
+
src/mscrypto/app.c: implemented support for new formats
|
|
852
|
+
in OpenSSL, NSS and MSCrypto
|
|
853
|
+
* apps/xmlsec.c: added "--pubkey-cert-pem" and "--pubkey-cert-der" options
|
|
854
|
+
* tests/testDSig.sh tests/merlin-xmldsig-twenty-three/certs/lugh-cert.der:
|
|
855
|
+
use certificate for public keys
|
|
856
|
+
|
|
857
|
+
Thu 25 Sep 2003 05:51:37 PM PDT Aleksey Sanin <aleksey@aleksey.com>
|
|
858
|
+
|
|
859
|
+
* include/ src/ win32/ docs/ Makefile.am configure.in: merging
|
|
860
|
+
from XMLSEC_MSCRYPTO_083103 branch - new xmlsec-mscrypto library
|
|
861
|
+
implemented by Wouter, general functions for reading keys and certs
|
|
862
|
+
from memory (openssl/nss/mscrypto), default error callback for nss,
|
|
863
|
+
moving private keys in 01-phaos-enc tests to pkcs12 file.
|
|
864
|
+
|
|
865
|
+
Thu Sep 25 11:39:22 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
866
|
+
|
|
867
|
+
* apps/xmlsec.c: added root nodes namespaces registration
|
|
868
|
+
for "--node-xpath" command line option processing (by request
|
|
869
|
+
from Jan-Olof)
|
|
870
|
+
|
|
871
|
+
Sat 20 Sep 2003 11:19:14 AM PDT Aleksey Sanin <aleksey@aleksey.com>
|
|
872
|
+
|
|
873
|
+
* HACKING: added more info about hacking with xmlsec
|
|
874
|
+
|
|
875
|
+
Tue Sep 16 11:28:03 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
876
|
+
|
|
877
|
+
* docs/download.html docs/index.html docs/news.html: preparation
|
|
878
|
+
for 1.1.2 release
|
|
879
|
+
|
|
880
|
+
Tue Sep 16 02:28:41 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
881
|
+
|
|
882
|
+
* src/Makefile.am: link xmlsec lib with dl librarias
|
|
883
|
+
|
|
884
|
+
Sun 14 Sep 2003 02:13:51 AM PDT Aleksey Sanin <aleksey@aleksey.com>
|
|
885
|
+
|
|
886
|
+
* tests/testEnc.sh: added "--session-key <key>" paramater
|
|
887
|
+
to all tests with <EncryptedKey/> (problem reported by Wouter)
|
|
888
|
+
|
|
889
|
+
Fri 12 Sep 2003 09:43:21 PM PDT Aleksey Sanin <aleksey@aleksey.com>
|
|
890
|
+
|
|
891
|
+
* include/xmlsec/buffer.h src/buffer.c: added functions to convert
|
|
892
|
+
binary buffer to hex string and vice versa (based on patch from Remy)
|
|
893
|
+
|
|
894
|
+
Thu Sep 11 17:08:15 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
895
|
+
|
|
896
|
+
* src/Makefile.am src/dl.c src/xmlsec-ltdl.h src/xmlsec-ltdl.patch
|
|
897
|
+
win32/Makefile.msvc: use ltdl on Windows too
|
|
898
|
+
|
|
899
|
+
Thu Sep 11 16:39:18 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
900
|
+
|
|
901
|
+
* src/ltdl.* src/Makefile.am: upgraded to ltdl from libtool 1.4
|
|
902
|
+
|
|
903
|
+
Wed Sep 10 18:12:52 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
904
|
+
|
|
905
|
+
* xmlsec.spec.in: separated xmlsec and xmlsec-devel RPM
|
|
906
|
+
pacakges into xmlsec, xmlsec-openssl, xmlsec-devel and xmlsec-openssl-devel
|
|
907
|
+
|
|
908
|
+
Wed Sep 10 13:19:10 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
909
|
+
|
|
910
|
+
* include/xmlsec/version.h include/xmlsec/version.h.in
|
|
911
|
+
include/xmlsec/xmlsec.h src/xmlsec.c
|
|
912
|
+
src/gnutls/crypto.c src/nss/crypto.c
|
|
913
|
+
src/openssl/crypto.c src/skeleton/crypto.c:
|
|
914
|
+
apps/xmlsec.c examples/*.c
|
|
915
|
+
docs/api/chapters/init-and-shutdown.sgml: implemented new
|
|
916
|
+
function and macroses to check loaded xmlsec library
|
|
917
|
+
version from xmlsec-crypto libraries and apps
|
|
918
|
+
|
|
919
|
+
Wed Sep 10 12:36:17 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
920
|
+
|
|
921
|
+
* src/dl.c win32/Makefile.msvc win32/mycfg.bat: implemented
|
|
922
|
+
dynamic xmlsec-crypto libraries loading for Windows
|
|
923
|
+
|
|
924
|
+
Wed Sep 10 00:02:55 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
925
|
+
|
|
926
|
+
* Makefile.am configure.in xmlsec-config.in xmlsec.pc.in: added
|
|
927
|
+
support for xmlsec-crypto DL mode in xmlsec.pc and xmlsec-config files
|
|
928
|
+
|
|
929
|
+
* examples/*: added support for xmlsec-crypto DL mode to examples
|
|
930
|
+
|
|
931
|
+
* include/xmlsec/app.h include/xmlsec/private.h
|
|
932
|
+
include/xmlsec/version.h include/xmlsec/x509.h
|
|
933
|
+
src/app.c src/x509.c src/xkms.c: new API reference documentation
|
|
934
|
+
|
|
935
|
+
* docs/* man/* : included info about xmlsec-crypto DL mode in
|
|
936
|
+
tutorial and re-build docs to include new api reference docs
|
|
937
|
+
|
|
938
|
+
* tests/testDSig.sh tests/testEnc.sh tests/testKeys.sh: added
|
|
939
|
+
additional information printout
|
|
940
|
+
|
|
941
|
+
* win32/Makefile.msvc: excluded XKMS from windows builds
|
|
942
|
+
|
|
943
|
+
Tue Sep 9 16:14:01 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
944
|
+
|
|
945
|
+
* win32/Makefile.msvc win32/configure.js win32/mycfg.bat win32/mycfg_nss.bat:
|
|
946
|
+
windows build cleanup (bug #121579)
|
|
947
|
+
|
|
948
|
+
Tue Sep 9 12:52:00 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
949
|
+
|
|
950
|
+
* Makefile.am apps/* configure.in include/* src/* tests/*: implemented
|
|
951
|
+
loading xmlsec-crypto libraries as plugins (bug #121579)
|
|
952
|
+
* win32/: change build to allow building of more than one
|
|
953
|
+
xmlsec-crypto library (bug #121579)
|
|
954
|
+
|
|
955
|
+
Sun 24 Aug 2003 05:20:14 PM PDT Aleksey Sanin <aleksey@aleksey.com>
|
|
956
|
+
|
|
957
|
+
* docs/faq.html: upgraded licenses FAQ section to include
|
|
958
|
+
information about xmlsec-nss and xmlsec-gnutls
|
|
959
|
+
|
|
960
|
+
Fri Aug 22 11:06:28 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
961
|
+
|
|
962
|
+
* win32/Makefile.msvc: fixed linkinig problem on Windows (bug #120498)
|
|
963
|
+
|
|
964
|
+
Fri Aug 22 09:54:04 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
965
|
+
|
|
966
|
+
* configure.in include/xmlsec/errors.h: determine if __FUNCTION__ or
|
|
967
|
+
__func__ are defined from ./configure script. This should fix bug #120469
|
|
968
|
+
and prevent this problem from happening in the future.
|
|
969
|
+
* src/c14n.c src/openssl/kt_rsa.c src/transforms.c: fixed minor
|
|
970
|
+
warnings because of using strcmp, strchr, etc. functions with xmlChar*
|
|
971
|
+
variables by switching to xmlStrcmp, xmlStrchr, etc. (also bug #120469)
|
|
972
|
+
|
|
973
|
+
Wed Aug 20 21:26:00 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
974
|
+
|
|
975
|
+
* configure.in docs/api/sgml/version.sgml docs/api/xmlsec-version.html
|
|
976
|
+
docs/index.html docs/news.html docs/xmlsec-man.html
|
|
977
|
+
include/xmlsec/version.h man/xmlsec1-config.1 man/xmlsec1.1: new 1.1.1
|
|
978
|
+
release preparation
|
|
979
|
+
* docs/*: re-run docs generation/formatting
|
|
980
|
+
|
|
981
|
+
Fri Aug 8 22:18:45 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
982
|
+
|
|
983
|
+
* src/xpath.c: register namespaces before processing XPointer
|
|
984
|
+
expression in the URI attribute (bug #119462, reported by Steve)
|
|
985
|
+
|
|
986
|
+
Fri Aug 8 09:06:53 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
987
|
+
|
|
988
|
+
* include/xmlsec/keys.h src/keys.c: added xmlsec-core functions to
|
|
989
|
+
read keys from memory (patch from Joachim)
|
|
990
|
+
|
|
991
|
+
Thu Aug 7 11:38:43 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
992
|
+
|
|
993
|
+
* include/xmlsec/openssl/app.h src/openssl/app.c: added functions
|
|
994
|
+
to read keys and certs in xmlsec-openssl from memory and BIOs
|
|
995
|
+
(bug #119350, patch based on the code from Joachim)
|
|
996
|
+
|
|
997
|
+
Wed Aug 6 08:57:20 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
998
|
+
|
|
999
|
+
* Makefile.am configure.in xmlsec-gnutls.pc.in xmlsec-nss.pc.in
|
|
1000
|
+
xmlsec-openssl.pc.in xmlsecConf.sh.in:
|
|
1001
|
+
config bug fixing and improvements from Roumen
|
|
1002
|
+
|
|
1003
|
+
Mon Aug 4 19:39:52 2003 Aleksey Sanin <aleksey@aleksey.com>i
|
|
1004
|
+
|
|
1005
|
+
* include/xmlsec/Makefile.am include/xmlsec/x509.h src/Makefile.am
|
|
1006
|
+
src/x509.c src/openssl/x509.c win32/Makefile.msvc: moved code for
|
|
1007
|
+
reading X509Data node content from xmlsec-openssl to xmlsec-core
|
|
1008
|
+
to allow sharing with xmlsec-nss
|
|
1009
|
+
* src/nss/README src/nss/x509.c: added X509Data templates support
|
|
1010
|
+
for xmslec-nss (bug #118636, based on patch from Tej)
|
|
1011
|
+
|
|
1012
|
+
Mon 04 Aug 2003 04:06:02 PM PDT Aleksey Sanin <aleksey@aleksey.com>
|
|
1013
|
+
|
|
1014
|
+
* docs: rebuilding docs to get nss api reference
|
|
1015
|
+
|
|
1016
|
+
Mon Aug 4 14:47:02 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1017
|
+
|
|
1018
|
+
* Makefile.am xmlsec.spec.in: added HACKING file to the distribution
|
|
1019
|
+
* docs/download.html docs/index.html docs/news.html: updated docs
|
|
1020
|
+
for new 1.1.0 release
|
|
1021
|
+
|
|
1022
|
+
Wed Jul 30 18:35:15 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1023
|
+
|
|
1024
|
+
* xmlsec-gnutls.pc.in xmlsec-nss.pc.in xmlsec-openssl.pc.in: and
|
|
1025
|
+
one more change for the same bug #118685 - don't put "crypto"
|
|
1026
|
+
in version, use xmlsec1-crypto name instead of xmlsec-crypto,
|
|
1027
|
+
don't include nss flags and libs for xmlsec1-nss.pc
|
|
1028
|
+
|
|
1029
|
+
Wed Jul 30 15:23:17 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1030
|
+
|
|
1031
|
+
* Makefile.am configure.in xmlsec-gnutls.pc.in xmlsec-nss.pc.in
|
|
1032
|
+
xmlsec-openssl.pc.in xmlsec.pc.in: more *.pc files fixes
|
|
1033
|
+
for the same bug #118685
|
|
1034
|
+
|
|
1035
|
+
Wed Jul 30 11:49:20 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1036
|
+
|
|
1037
|
+
* Makefile.am configure.in xmlsec-gnutls.pc.in xmlsec-nss.pc.in
|
|
1038
|
+
xmlsec-openssl.pc.in: created separate *.pc files for xmlsec-crypto
|
|
1039
|
+
libraries (bug #118685 reported by John)
|
|
1040
|
+
|
|
1041
|
+
Tue Jul 29 20:20:33 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1042
|
+
|
|
1043
|
+
* src/nss/README: created xmlsec bugs for remian xmlsec-nss problems
|
|
1044
|
+
|
|
1045
|
+
Tue 29 Jul 2003 07:41:18 PM PDT Aleksey Sanin <aleksey@aleksey.com>
|
|
1046
|
+
|
|
1047
|
+
* src/ include/ docs/ man/ configure.in: merged xmlsec-nss
|
|
1048
|
+
from the branch (Tej)
|
|
1049
|
+
|
|
1050
|
+
Tue Jul 29 08:44:24 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1051
|
+
|
|
1052
|
+
* src/openssl/x509.c: minor patches for errors (Roumen)
|
|
1053
|
+
* src/xmltree.c: fixed xmlIsEmptyNode() to return false
|
|
1054
|
+
if there is an element child
|
|
1055
|
+
|
|
1056
|
+
Mon Jul 28 12:02:40 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1057
|
+
|
|
1058
|
+
* include/xmlsec/keyinfo.h: added XMLSEC_KEYINFO_FLAGS_STOP_ON_EMPTY_NODE flag
|
|
1059
|
+
* include/xmlsec/xmltree.h src/xmltree.c: added xmlSecIsEmptyNode and
|
|
1060
|
+
xmlSecIsEmptyString functions
|
|
1061
|
+
* src/openssl/x509.c: added an ability to write complex X509Data node
|
|
1062
|
+
content (based on patch from Roumen)
|
|
1063
|
+
* tests/testDSig.sh tests/aleksey-xmldsig-01/x509data-test.*: new test for
|
|
1064
|
+
complex X509Data node writing
|
|
1065
|
+
* tests/keys/ca2key.p12 tests/keys/dsakey.p12 tests/keys/rsakey.p12: new
|
|
1066
|
+
pkcs12 keys for tests
|
|
1067
|
+
|
|
1068
|
+
Sun 20 Jul 2003 08:10:53 PM PDT Aleksey Sanin <aleksey@aleksey.com>
|
|
1069
|
+
|
|
1070
|
+
* apps/ include/ src/ docs/api/ Copyright: updated copyrights
|
|
1071
|
+
everywhere
|
|
1072
|
+
|
|
1073
|
+
Fri 18 Jul 2003 10:30:33 AM PDT Aleksey Sanin <aleksey@aleksey.com>
|
|
1074
|
+
|
|
1075
|
+
* HACKING: added a coding and commiting rules
|
|
1076
|
+
|
|
1077
|
+
Wed 16 Jul 2003 10:11:23 PM PDT Aleksey Sanin <aleksey@aleksey.com>
|
|
1078
|
+
|
|
1079
|
+
* examples/README, examples/binary.dat: added examples of using
|
|
1080
|
+
command line tool
|
|
1081
|
+
|
|
1082
|
+
Wed 16 Jul 2003 12:50:00 AM PDT Aleksey Sanin <aleksey@aleksey.com>
|
|
1083
|
+
|
|
1084
|
+
* examples/myw32make.bat win32/mycfg-nss.bat: rename these
|
|
1085
|
+
files to clear exec bit (John)
|
|
1086
|
+
|
|
1087
|
+
* man/Makefile.am: use "--no-info" option in help2man
|
|
1088
|
+
|
|
1089
|
+
Mon Jul 14 11:06:16 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1090
|
+
|
|
1091
|
+
* configure.in docs/api/sgml/version.sgml docs/download.html
|
|
1092
|
+
docs/api/xmlsec-version.html docs/index.html docs/news.html
|
|
1093
|
+
docs/xmlsec-man.html include/xmlsec/version.h man/xmlsec1-config.1
|
|
1094
|
+
man/xmlsec1.1: preparation for 1.0.4 release
|
|
1095
|
+
* docs/api/xmlsec-notes-encrypt.html docs/api/xmlsec-notes-sign.html:
|
|
1096
|
+
fixed a mistype
|
|
1097
|
+
* docs/extra/xmlsec_oscon_2003.ppt: minor update
|
|
1098
|
+
|
|
1099
|
+
Fri Jul 11 13:33:28 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1100
|
+
|
|
1101
|
+
* Makefile.am: fixed builddir != sourcedir one more time (use abs_top_*
|
|
1102
|
+
instead of top_*)
|
|
1103
|
+
* configure.in: upgraded mozilla search path to 1.4
|
|
1104
|
+
|
|
1105
|
+
Mon 07 Jul 2003 08:05:18 AM PDT Aleksey Sanin <aleksey@aleksey.com>
|
|
1106
|
+
|
|
1107
|
+
* src/openssl/apps.c src/openssl/x509.c src/openssl/x509vfy.c: fixed
|
|
1108
|
+
sk_push() return value check problem (reported by Roumen)
|
|
1109
|
+
|
|
1110
|
+
Mon 07 Jul 2003 07:02:46 AM PDT Aleksey Sanin <aleksey@aleksey.com>
|
|
1111
|
+
|
|
1112
|
+
* Makefile.am: fixed test suite problem when builddir != sourcedir
|
|
1113
|
+
(reported by Roumen)
|
|
1114
|
+
|
|
1115
|
+
Thu Jul 3 07:57:25 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1116
|
+
|
|
1117
|
+
* src/openssl/x509vfy.c: added a const word to suppress
|
|
1118
|
+
warnings (Roumen)
|
|
1119
|
+
|
|
1120
|
+
Wed Jul 2 08:53:50 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1121
|
+
|
|
1122
|
+
* src/openssl/x509vfy.c: fixed certificates subject
|
|
1123
|
+
comparison function to handle multiple occurence
|
|
1124
|
+
of entries with the same value (bug report from
|
|
1125
|
+
Roumen)
|
|
1126
|
+
|
|
1127
|
+
Tue Jun 17 19:22:17 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1128
|
+
|
|
1129
|
+
* docs/download.html: fixing links to tarballs for local
|
|
1130
|
+
files (requested by John)
|
|
1131
|
+
|
|
1132
|
+
* examples/myw32make.bat win32/mycfg-nss.bat: clearing exec bit
|
|
1133
|
+
|
|
1134
|
+
Mon Jun 16 10:43:34 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1135
|
+
|
|
1136
|
+
* configure.in docs/download.html docs/index.html docs/news.html
|
|
1137
|
+
docs/xmlsec-man.html include/xmlsec/version.h man/xmlsec1-config.1
|
|
1138
|
+
man/xmlsec1.1: new 1.0.3 version preparation
|
|
1139
|
+
|
|
1140
|
+
* docs/Makefile.am docs/api-0.0.x/*: fixed second level links
|
|
1141
|
+
processing
|
|
1142
|
+
|
|
1143
|
+
* docs/api/sgml/* docs/api/tmpl/* docs/api/*: added new API calls
|
|
1144
|
+
|
|
1145
|
+
Mon Jun 16 09:20:53 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1146
|
+
|
|
1147
|
+
* configure.in: fixed NSS config bug #115297
|
|
1148
|
+
|
|
1149
|
+
Sun Jun 8 20:08:42 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1150
|
+
|
|
1151
|
+
* configure.in: fix for 'make distclean'
|
|
1152
|
+
|
|
1153
|
+
Sat Jun 7 20:35:25 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1154
|
+
|
|
1155
|
+
* Makefile.am apps/* include/xmlsec/keysdata.h src/openssl/app.c tests/*:
|
|
1156
|
+
added PKCS#8 support (based on Tej's patch)
|
|
1157
|
+
|
|
1158
|
+
Fri Jun 6 14:53:25 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1159
|
+
|
|
1160
|
+
* src/openssl/x509.c: skip ASN1 time check for OpenSSL 0.9.6
|
|
1161
|
+
|
|
1162
|
+
Thu Jun 5 19:32:12 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1163
|
+
|
|
1164
|
+
* docs/*: fixing online verifier link
|
|
1165
|
+
|
|
1166
|
+
Wed Jun 4 19:12:21 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1167
|
+
|
|
1168
|
+
* configure.in: added _ALL_SOURCE define for aix
|
|
1169
|
+
|
|
1170
|
+
Wed Jun 4 08:25:46 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1171
|
+
|
|
1172
|
+
* src/openssl/x509.c: fix my_gmtime function
|
|
1173
|
+
|
|
1174
|
+
Mon 02 Jun 2003 09:38:13 AM PDT Aleksey Sanin <aleksey@aleksey.com>
|
|
1175
|
+
|
|
1176
|
+
* removed debian folder
|
|
1177
|
+
|
|
1178
|
+
Sun Jun 1 20:30:08 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1179
|
+
|
|
1180
|
+
* configure.in docs/download.html docs/index.html docs/news.html
|
|
1181
|
+
docs/xmlsec-man.html include/xmlsec/version.h man/xmlsec1-config.1
|
|
1182
|
+
man/xmlsec1.1: preparing 1.0.2 release.
|
|
1183
|
+
* docs/xmldsig-verifier.html: point online verifier to web site
|
|
1184
|
+
|
|
1185
|
+
Thu May 29 17:15:04 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1186
|
+
|
|
1187
|
+
* src/gnutls/Makefile.am src/nss/Makefile.am
|
|
1188
|
+
src/openssl/Makefile.am src/skeleton/Makefile.am: don't use GCC
|
|
1189
|
+
options in Makefiles
|
|
1190
|
+
|
|
1191
|
+
Tue May 27 20:12:41 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1192
|
+
|
|
1193
|
+
* configure.in xmlsec-config.in xmlsecConf.sh.in
|
|
1194
|
+
src/gnutls/Makefile.am src/nss/Makefile.am src/openssl/Makefile.am:
|
|
1195
|
+
change xmlsec-config script to let user specify crypto engine
|
|
1196
|
+
(requested by John Belmonte)
|
|
1197
|
+
|
|
1198
|
+
Sun May 25 22:01:45 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1199
|
+
|
|
1200
|
+
* apps/xmlsec.c docs/xmlsec-man.html man/xmlsec1-config.1 man/xmlsec1.1:
|
|
1201
|
+
fixed help typo (reported by John Belmonte)
|
|
1202
|
+
* examples/README: removed obsolete autoconf information (reported by John Belmonte)
|
|
1203
|
+
* configure.in: added /usr/include/mozilla to NSS include path search list (reported by John Belmonte)
|
|
1204
|
+
|
|
1205
|
+
Thu May 15 03:08:18 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1206
|
+
|
|
1207
|
+
* apps/crypto.c apps/crypto.h apps/xmlsec.c: added command line
|
|
1208
|
+
options to support DER keys and certs format (Tej)
|
|
1209
|
+
* Makefile.am: use DER format for all tests
|
|
1210
|
+
* tests/testDSig.sh tests/testEnc.sh tests/testKeys.sh: added a new
|
|
1211
|
+
command line option "key-format" with possible values "der" or "pem"
|
|
1212
|
+
* tests/*/*.der tests/merlin-xmldsig-twenty-three/certs/*.crt:
|
|
1213
|
+
converted PEM keys and certs to DER format, removed *.crt files that
|
|
1214
|
+
used to have DER certificates (Tej)
|
|
1215
|
+
* tests/merlin-xmlenc-five/*.p8: re-added *.p8 files with '-kb' option
|
|
1216
|
+
|
|
1217
|
+
Mon 12 May 2003 01:38:11 PM PDT Aleksey Sanin <aleksey@aleksey.com>
|
|
1218
|
+
|
|
1219
|
+
* configure.in: use '-rpath-link' instead '-rpath' for NSS (Wan-Teh)
|
|
1220
|
+
|
|
1221
|
+
Mon May 12 10:01:30 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1222
|
+
|
|
1223
|
+
* configure.in: link with NSS using -rpath (Tej)
|
|
1224
|
+
|
|
1225
|
+
Mon May 5 08:00:31 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1226
|
+
|
|
1227
|
+
* configure.in: new configuration options for NSS (Tej)
|
|
1228
|
+
* src/nss/app.c src/nss/ciphers.c src/nss/crypto.c
|
|
1229
|
+
src/nss/digests.c src/nss/hmac.c: use NSS style includes (Tej)
|
|
1230
|
+
|
|
1231
|
+
Fri 02 May 2003 12:00:47 PM PDT Aleksey Sanin <aleksey@aleksey.com>
|
|
1232
|
+
|
|
1233
|
+
* src/openssl/app.c: adopt instead of copy the key cert
|
|
1234
|
+
from pkcs12 fil
|
|
1235
|
+
|
|
1236
|
+
Thu May 1 08:17:06 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1237
|
+
|
|
1238
|
+
* include/xmlsec/xmltree.h src/xmltree.c src/keysmngr.c:
|
|
1239
|
+
created a new function to quickly create a doc with one root node
|
|
1240
|
+
* src/list.c: fixed bug in xmlPtrListEmpty() function
|
|
1241
|
+
* src/xkms.c: created framework for Locate request/result processing
|
|
1242
|
+
|
|
1243
|
+
Wed Apr 30 16:31:10 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1244
|
+
|
|
1245
|
+
* include/xmlsec/strings.h src/strings.c: added strings
|
|
1246
|
+
for XKMS (XKISS) Locate request/result
|
|
1247
|
+
|
|
1248
|
+
Wed Apr 30 01:01:06 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1249
|
+
|
|
1250
|
+
* config.h.in configure.in: added check for timegm function
|
|
1251
|
+
* include/xmlsec/keys.h
|
|
1252
|
+
* include/xmlsec/xkms.h src/xkms.c apps/xmlsec.c: framework
|
|
1253
|
+
for xmlSecXkmsLocate/Validate functions
|
|
1254
|
+
* src/keys.c src/openssl/x509.c: added notValidBefore and
|
|
1255
|
+
notValidAfter time frame to xmlSecKey
|
|
1256
|
+
* src/xmldsig.c src/xmlenc.c: added "output" asserts to
|
|
1257
|
+
the *DebugDump() and *DebugXmlDump() functions
|
|
1258
|
+
* tests/aleksey-xkms-01/locate-compound.xml
|
|
1259
|
+
tests/aleksey-xkms-01/locate-key-from-usewith.xml
|
|
1260
|
+
tests/aleksey-xkms-01/locate-keyvalue-from-x509.xml
|
|
1261
|
+
tests/aleksey-xkms-01/readme.txt: XKMS test cases
|
|
1262
|
+
|
|
1263
|
+
Tue Apr 29 16:37:18 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1264
|
+
|
|
1265
|
+
* configure.in include/xmlsec/Makefile.am include/xmlsec/strings.h
|
|
1266
|
+
include/xmlsec/xkms.h include/xmlsec/xmlsec.h
|
|
1267
|
+
src/Makefile.am src/strings.c src/xkms.c apps/xmlsec.c: first
|
|
1268
|
+
XKMS framework (disabled by default)
|
|
1269
|
+
|
|
1270
|
+
Mon Apr 28 21:13:03 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1271
|
+
|
|
1272
|
+
* docs/download.html docs/index.html docs/news.html: preparing
|
|
1273
|
+
1.0.1 release.
|
|
1274
|
+
|
|
1275
|
+
Sun Apr 27 18:05:23 2003 Igor Zlatkovic <igor@zlatkovic.com>
|
|
1276
|
+
|
|
1277
|
+
* win32/Makefile.msvc: defined _REENTRANT to enable compilation
|
|
1278
|
+
with threaded libxml2
|
|
1279
|
+
|
|
1280
|
+
Thu Apr 24 08:15:32 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1281
|
+
|
|
1282
|
+
* config.h.in configure.in include/xmlsec/xmlsec.h: use
|
|
1283
|
+
'#define' instead of 'typedef' for the new xmlSecSize and
|
|
1284
|
+
xmlSecByte types in order to keep ABI
|
|
1285
|
+
|
|
1286
|
+
Tue Apr 22 13:51:33 2003 Igor Zlatkovic <igor@zlatkovic.com>
|
|
1287
|
+
|
|
1288
|
+
* win32/configure.js: updated the email address in the generated
|
|
1289
|
+
readme.txt file.
|
|
1290
|
+
|
|
1291
|
+
Sun 20 Apr 2003 03:12:02 PM PDT Aleksey Sanin <aleksey@aleksey.com>
|
|
1292
|
+
|
|
1293
|
+
* docs/*: updated docs with new xmlSecByte and xmlSecSize types
|
|
1294
|
+
* configure.in include/xmlsec/version.h: upgraded version to 1.0.1
|
|
1295
|
+
|
|
1296
|
+
Sun 20 Apr 2003 02:57:06 PM PDT Aleksey Sanin <aleksey@aleksey.com>
|
|
1297
|
+
|
|
1298
|
+
* src/* include/* apps/*: replaced 'unsigned char' with xmlSecByte
|
|
1299
|
+
typedefed to 'unsigned char' to make happy OpenBSD on sparc64
|
|
1300
|
+
* examples/*: replaced configure.in with simple Makefile to
|
|
1301
|
+
prevent problems on different platforms
|
|
1302
|
+
|
|
1303
|
+
Sun 20 Apr 2003 02:37:41 PM PDT Aleksey Sanin <aleksey@aleksey.com>
|
|
1304
|
+
|
|
1305
|
+
* src/* include/* apps/*: replaced size_t with xmlSecSize
|
|
1306
|
+
typedefed to 'unsigned int' to make happy OpenBSD on sparc64
|
|
1307
|
+
|
|
1308
|
+
Sat Apr 19 01:08:30 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1309
|
+
|
|
1310
|
+
* src/openssl/kw_des.c src/openssl/signatures.c:
|
|
1311
|
+
included openssl/sha.h to help OpenBSD port
|
|
1312
|
+
|
|
1313
|
+
Wed 26 Mar 2003 01:43:24 AM PST Aleksey Sanin <aleksey@aleksey.com>
|
|
1314
|
+
|
|
1315
|
+
* docs: 0.1.1 release
|
|
1316
|
+
|
|
1317
|
+
Wed Mar 19 22:56:49 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1318
|
+
|
|
1319
|
+
* configure.in include/xmlsec/version.h
|
|
1320
|
+
docs/download.html docs/index.html docs/news.html
|
|
1321
|
+
xmlsec.pc xmlsec.spec: 0.0.14 release
|
|
1322
|
+
|
|
1323
|
+
Wed Mar 19 10:59:41 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1324
|
+
|
|
1325
|
+
* apps/xmlsec.c: force Signature or EncryptedData node
|
|
1326
|
+
selection when specifing start node from xmlsec tool
|
|
1327
|
+
command line
|
|
1328
|
+
|
|
1329
|
+
Mon Mar 10 07:59:55 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1330
|
+
|
|
1331
|
+
* src/transforms.c: fixed Reference URI evaluation for
|
|
1332
|
+
the "xmlns()xpointer()" construction
|
|
1333
|
+
|
|
1334
|
+
Wed Mar 5 19:43:43 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1335
|
+
|
|
1336
|
+
* docs/index.html docs/news.html: new 0.1.0 release
|
|
1337
|
+
|
|
1338
|
+
Mon Feb 24 10:04:36 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1339
|
+
|
|
1340
|
+
* src/xmltree.c src/xslt.c: fixed bug in xmlSecTransformXsltAdd
|
|
1341
|
+
|
|
1342
|
+
Fri Feb 21 13:06:44 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1343
|
+
|
|
1344
|
+
* configure.in include/xmlsec/version.h
|
|
1345
|
+
docs/download.html docs/index.html docs/news.html
|
|
1346
|
+
xmlsec.pc xmlsec.spec: 0.0.13 release
|
|
1347
|
+
|
|
1348
|
+
Fri Feb 21 12:59:48 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1349
|
+
|
|
1350
|
+
* src/transforms.c: fixed incorrect processing of more than
|
|
1351
|
+
3 binary transforms in a row
|
|
1352
|
+
|
|
1353
|
+
Mon Feb 17 09:34:12 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1354
|
+
|
|
1355
|
+
* docs/api/* include/xmlsec/xmldsig.h
|
|
1356
|
+
src/keysmngr.c src/xmldsig.c: minor documentation bug fixes
|
|
1357
|
+
based on Jesse Pelton's email
|
|
1358
|
+
|
|
1359
|
+
Fri Feb 14 12:44:48 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1360
|
+
|
|
1361
|
+
* src/x509.c: set "verified" cert when loading pkcs12 file.
|
|
1362
|
+
|
|
1363
|
+
Wed Feb 5 09:49:30 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1364
|
+
|
|
1365
|
+
* apps/xmlsec.c include/xmlsec/keysmngr.h
|
|
1366
|
+
src/keysmngr.c src/x509.c: provide an ability
|
|
1367
|
+
to specify max cert verification depth
|
|
1368
|
+
(based on patch from Jean-Etienne SCHWARTZ)
|
|
1369
|
+
|
|
1370
|
+
Sun Jan 26 22:04:45 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1371
|
+
|
|
1372
|
+
* config.h.in configure.in include/xmlsec/version.h
|
|
1373
|
+
docs/news.html docs/download.html docs/index.html
|
|
1374
|
+
xmlsec.pc xmlsec.spec: preparation for 0.0.12 release
|
|
1375
|
+
|
|
1376
|
+
Sun Jan 26 21:39:56 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1377
|
+
|
|
1378
|
+
* include/xmlsec/digests.h src/hmac.c: fixed 91 bits HMAC
|
|
1379
|
+
bug reported by Rich Salz and Jonathan Wenocur
|
|
1380
|
+
* tests/aleksey-xmldsig-01/dtd-hmac-91.dtd
|
|
1381
|
+
tests/aleksey-xmldsig-01/dtd-hmac-91.tmpl
|
|
1382
|
+
tests/aleksey-xmldsig-01/dtd-hmac-91.xml
|
|
1383
|
+
* tests/testDSig.sh: the test case for 91 bits HMAC bug
|
|
1384
|
+
from Rich Salz and Jonathan Wenocur
|
|
1385
|
+
* apps/xmlsec.c: fixing minor compile warnings for
|
|
1386
|
+
the external DTD patch
|
|
1387
|
+
|
|
1388
|
+
Sun Jan 26 18:19:49 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1389
|
+
|
|
1390
|
+
* src/aes.c src/ciphers.c src/des.c: fixed bug with
|
|
1391
|
+
EVP ciphers for OpenSSL 0.9.7 when last block was not
|
|
1392
|
+
processed for padding
|
|
1393
|
+
* tests/aleksey-xmlenc-01/enc-des3cbc-keyname2.data
|
|
1394
|
+
tests/aleksey-xmlenc-01/enc-des3cbc-keyname2.tmpl
|
|
1395
|
+
tests/aleksey-xmlenc-01/enc-des3cbc-keyname2.xml
|
|
1396
|
+
tests/testEnc.sh: new test case for the bug fixed above
|
|
1397
|
+
|
|
1398
|
+
Wed Jan 22 11:37:36 2003 Aleksey Sanin <aleksey@aleksey.com>
|
|
1399
|
+
|
|
1400
|
+
* apps/xmlsec.c man/xmlsec.xml: applied patch from Rich Salz
|
|
1401
|
+
to allo external DTD specification for the xmlsec application
|
|
1402
|
+
|
|
1403
|
+
Mon 30 Dec 2002 09:52:58 AM PST Aleksey Sanin <aleksey@aleksey.com
|
|
1404
|
+
* configure.in docs/examples/dsig1/Makefile docs/examples/dsig2/Makefile
|
|
1405
|
+
docs/examples/dsig3/Makefile docs/examples/dsig4/Makefile
|
|
1406
|
+
docs/examples/dsig5/Makefile docs/examples/enc1/Makefile
|
|
1407
|
+
docs/examples/enc2/Makefile src/Makefile.am: fixed bug #102196 --
|
|
1408
|
+
Sun CC does ot have -WAll and -ansi options
|
|
1409
|
+
* include/xmlsec/errors.h: fixed bug #102194 -- Sun CC does not have
|
|
1410
|
+
__FUNCTION__ macro
|
|
1411
|
+
|
|
1412
|
+
Sat Dec 21 22:47:33 2002 Aleksey Sanin <aleksey@aleksey.com>
|
|
1413
|
+
|
|
1414
|
+
* apps/xmlsec.c: added "--node-xpath" option for specifing
|
|
1415
|
+
the operation "start node" (code based on patch from
|
|
1416
|
+
Ferrell Moultrie (ISSAtlanta)
|
|
1417
|
+
* src/transforms.c: fixed minor compilation warnings
|
|
1418
|
+
* src/x509.c: certs and crls are base64 encoded with 60 characters
|
|
1419
|
+
lines size (bug #101523)
|
|
1420
|
+
|
|
1421
|
+
Mon Dec 2 23:38:34 2002 Aleksey Sanin <aleksey@aleksey.com>
|
|
1422
|
+
|
|
1423
|
+
* config.h.in configure.in include/xmlsec/version.h
|
|
1424
|
+
docs/news.html docs/download.html docs/index.html
|
|
1425
|
+
xmlsec.pc xmlsec.spec: new 0.0.11 release updates
|
|
1426
|
+
* scripts/build_release.sh scripts/push_release.sh
|
|
1427
|
+
scripts/test_release.sh: checking in build scripts I am using
|
|
1428
|
+
|
|
1429
|
+
Thu Nov 28 11:57:17 2002 Aleksey Sanin <aleksey@aleksey.com>
|
|
1430
|
+
|
|
1431
|
+
* apps/xmlsec.c: print detailed help report only when
|
|
1432
|
+
user requests it; don't fail if key is not generated
|
|
1433
|
+
when algorithm is disabled
|
|
1434
|
+
|
|
1435
|
+
|
|
1436
|
+
Thu Nov 28 10:44:06 2002 Aleksey Sanin <aleksey@aleksey.com>
|
|
1437
|
+
|
|
1438
|
+
* src/transforms.c: fixed a bug in numeric references evaluation
|
|
1439
|
+
reported by Ingo Fischer
|
|
1440
|
+
|
|
1441
|
+
Wed Oct 30 17:14:03 2002 Aleksey Sanin <aleksey@aleksey.com>
|
|
1442
|
+
|
|
1443
|
+
* config.h.in configure.in: do not add -I/usr/include
|
|
1444
|
+
or -L/usr/lib if OpenSSL happens to be there
|
|
1445
|
+
(patch proposed by Scott Cantor)
|
|
1446
|
+
|
|
1447
|
+
Mon Oct 21 11:28:01 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
|
|
1448
|
+
|
|
1449
|
+
* include/xmlsec/errors.h: fixed the __FUNCTION__ macro logic
|
|
1450
|
+
|
|
1451
|
+
2002-10-20 Aleksey Sanin <aleksey@aleksey.com>
|
|
1452
|
+
|
|
1453
|
+
* config.h.in configure.in include/xmlsec/version.h
|
|
1454
|
+
xmlsec.pc xmlsec.spec docs/download.html
|
|
1455
|
+
docs/index.html docs/news.html: preparing 0.0.10 release
|
|
1456
|
+
|
|
1457
|
+
Sun 13 Oct 2002 09:37:38 AM PDT Aleksey Sanin <aleksey@aleksey.com>
|
|
1458
|
+
|
|
1459
|
+
* configure.in apps/Makefile.am: added dynamic linking option
|
|
1460
|
+
by request from John Belmonte
|
|
1461
|
+
|
|
1462
|
+
Fri Oct 11 09:13:27 2002 Aleksey Sanin <aleksey@aleksey.com>
|
|
1463
|
+
|
|
1464
|
+
* tests/testDSig.sh configure.in apps/xmlsec.c: applied patch from
|
|
1465
|
+
Ferrell Moultrie and removed strptime() function usage completelly
|
|
1466
|
+
* include/xmlsec/errors.h src/errors.c src/x509.c: added more
|
|
1467
|
+
error to the cert verification
|
|
1468
|
+
|
|
1469
|
+
Thu Oct 10 00:44:36 2002 Aleksey Sanin <aleksey@aleksey.com>
|
|
1470
|
+
|
|
1471
|
+
* apps/xmlsec.c tests/aleksey-xmldsig-01/enveloping-expired-cert.tmpl
|
|
1472
|
+
tests/aleksey-xmldsig-01/enveloping-expired-cert.xml
|
|
1473
|
+
tests/keys/expired.crt tests/keys/expired.csr tests/keys/expired.key
|
|
1474
|
+
tests/testDSig.sh: added test case to verify the new "expired cert" feature
|
|
1475
|
+
|
|
1476
|
+
Wed Oct 9 23:09:46 2002 Aleksey Sanin <aleksey@aleksey.com>
|
|
1477
|
+
|
|
1478
|
+
* apps/xmlsec.c include/xmlsec/x509.h src/keysmngr.c
|
|
1479
|
+
src/x509.c: added support for certificate verification parameter
|
|
1480
|
+
when OpenSSL 0.9.6 is used
|
|
1481
|
+
|
|
1482
|
+
Wed Oct 9 20:58:58 2002 Aleksey Sanin <aleksey@aleksey.com>
|
|
1483
|
+
|
|
1484
|
+
* include/xmlsec/keyinfo.h include/xmlsec/keys.h
|
|
1485
|
+
include/xmlsec/keysmngr.h include/xmlsec/x509.h
|
|
1486
|
+
include/xmlsec/xmldsig.h include/xmlsec/xmlenc.h
|
|
1487
|
+
src/keyinfo.c src/keys.c src/keysmngr.c
|
|
1488
|
+
src/x509.c src/xmldsig.c src/xmlenc.c: added certificates
|
|
1489
|
+
verification time parameter as it was suggested in the
|
|
1490
|
+
xmlsec mailing list
|
|
1491
|
+
* apps/xmlsec.c: added "--verification-time" parameter
|
|
1492
|
+
* config.h.in configure.in: added necessary check for
|
|
1493
|
+
strptime() function
|
|
1494
|
+
|
|
1495
|
+
Mon Oct 7 19:22:11 2002 Aleksey Sanin <aleksey@aleksey.com>
|
|
1496
|
+
|
|
1497
|
+
* apps/xmlsec.c: added "--output" option to spefcify output file
|
|
1498
|
+
* docs/xmlsec-man.html man/create.sh man/xmlsec.1 man/xmlsec.xml:
|
|
1499
|
+
changed the docs to reflect new "--output" option
|
|
1500
|
+
* tests/testDSig.sh tests/testEnc.sh: changed tests to use new
|
|
1501
|
+
"--output" option
|
|
1502
|
+
* configure.in xmlsec.pc xmlsec.spec: minor config changes
|
|
1503
|
+
|
|
1504
|
+
Sun Sep 29 20:12:17 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
|
|
1505
|
+
|
|
1506
|
+
* win32/Makefile.msvc: resolved further static link issues.
|
|
1507
|
+
|
|
1508
|
+
Sat Sep 28 19:14:40 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
|
|
1509
|
+
|
|
1510
|
+
* include/xmlsec/errors.h: added MSVC to the list of compilers with
|
|
1511
|
+
the predefined __FUNCTION__ macro.
|
|
1512
|
+
* include/xmlsec/xmlsec.h: resolved XMLSEC_EXPORT mess.
|
|
1513
|
+
* win32/Makefile.msvc: introduced a double-run compilation, resolved
|
|
1514
|
+
the static link problems.
|
|
1515
|
+
* win32/configure.js: added the iconv=yes|no option, important when
|
|
1516
|
+
linking statically to libxml.
|
|
1517
|
+
|
|
1518
|
+
Wed 25 Sep 2002 21:28:21 PM PDT Aleksey Sanin <aleksey@aleksey.com>
|
|
1519
|
+
|
|
1520
|
+
* include/xmlsec/x509.h src/x509.c: opened xmlSecX509Data
|
|
1521
|
+
structure by request from Moultrie, Ferrell
|
|
1522
|
+
|
|
1523
|
+
Wed 04 Sep 2002 06:54:23 PM PDT Aleksey Sanin <aleksey@aleksey.com>
|
|
1524
|
+
|
|
1525
|
+
* src/errors.c: aplied a patch from Ferrell Moultrie (additional
|
|
1526
|
+
errors strings for OpenSSL errors functions)
|
|
1527
|
+
|
|
1528
|
+
Tue 03 Sep 2002 06:24:57 PM PDT Aleksey Sanin <aleksey@aleksey.com>
|
|
1529
|
+
|
|
1530
|
+
* xmlsec-config.in: fixed a bug when xslt is not available
|
|
1531
|
+
|
|
1532
|
+
Mon 02 Sep 2002 12:20:03 PM PDT Aleksey Sanin <aleksey@aleksey.com>
|
|
1533
|
+
|
|
1534
|
+
* docs/*: added LibXML2, LibXSLT and OpenSSL logos
|
|
1535
|
+
|
|
1536
|
+
Sat Aug 31 17:12:56 2002 Aleksey Sanin <aleksey@aleksey.com>
|
|
1537
|
+
|
|
1538
|
+
* include/xmlsec/keys.h include/xmlsec/x509.h
|
|
1539
|
+
include/xmlsec/xmldsig.h include/xmlsec/xmlenc.h
|
|
1540
|
+
src/keys.c src/x509.c src/xmldsig.c src/xmlenc.c:
|
|
1541
|
+
added new function *DebugXmlDump() to print debug info
|
|
1542
|
+
in XML format
|
|
1543
|
+
* apps/xmlsec.c man/xmlsec.1 man/xmlsec.xml: added new
|
|
1544
|
+
options '--print-xml' and '-print-to-file'
|
|
1545
|
+
|
|
1546
|
+
Sat 31 Aug 2002 03:43:20 PM PDT Aleksey Sanin <aleksey@aleksey.com>
|
|
1547
|
+
|
|
1548
|
+
* docs/examples: added a new dsig example from Devin Heitmueller
|
|
1549
|
+
|
|
1550
|
+
Thu 29 Aug 2002 01:48:35 PM PDT Aleksey Sanin <aleksey@aleksey.com>
|
|
1551
|
+
|
|
1552
|
+
* docs/examples/dsig3 docs/examples/dsig4: fixed minor problems
|
|
1553
|
+
|
|
1554
|
+
Thu 29 Aug 2002 08:52:02 AM PDT Aleksey Sanin <aleksey@aleksey.com>
|
|
1555
|
+
|
|
1556
|
+
* apps/xmlsec.c: fixed minor copy/paste typo (thanks to Devin Heitmueller)
|
|
1557
|
+
|
|
1558
|
+
Wed 28 Aug 2002 04:22:10 PM PDT Aleksey Sanin <aleksey@aleksey.com>
|
|
1559
|
+
|
|
1560
|
+
* configure.in docs: new 0.0.9 release to fix release packaging problems
|
|
1561
|
+
|
|
1562
|
+
Fri Aug 23 10:54:39 2002 Aleksey Sanin <aleksey@aleksey.com>
|
|
1563
|
+
|
|
1564
|
+
* configure.in docs/download.html docs/index.html docs/news.html:
|
|
1565
|
+
New 0.0.8 release.
|
|
1566
|
+
|
|
1567
|
+
Thu Aug 15 21:08:41 2002 Aleksey Sanin <aleksey@aleksey.com>
|
|
1568
|
+
|
|
1569
|
+
* docs/api/* include/xmlsec/Makefile.am include/xmlsec/xpath.h
|
|
1570
|
+
src/xpath.c: removed xpath "here()" function declaration
|
|
1571
|
+
from global view and xpath.h file, rebuilt docs.
|
|
1572
|
+
|
|
1573
|
+
Thu 15 Aug 2002 08:45:26 PM PDT Aleksey Sanin <aleksey@aleksey.com>
|
|
1574
|
+
|
|
1575
|
+
* docs/api/* src/* include/xmlsec/*: finished writing
|
|
1576
|
+
documentation for 370+ internal and external symbols
|
|
1577
|
+
|
|
1578
|
+
Thu 15 Aug 2002 08:14:50 AM PDT Aleksey Sanin <aleksey@aleksey.com>
|
|
1579
|
+
|
|
1580
|
+
* tests/keys/README: applied patch from <xafilac@gmx.de>
|
|
1581
|
+
(bug #90824)
|
|
1582
|
+
|
|
1583
|
+
Wed Aug 14 19:38:56 2002 Aleksey Sanin <aleksey@aleksey.com>
|
|
1584
|
+
|
|
1585
|
+
* NEWS README: minor updates
|
|
1586
|
+
* docs/documentation.html docs/xmlsec-man.html man/Makefile.am:
|
|
1587
|
+
published xmlsec utility man page
|
|
1588
|
+
|
|
1589
|
+
Wed Aug 14 19:27:09 2002 Aleksey Sanin <aleksey@aleksey.com>
|
|
1590
|
+
|
|
1591
|
+
* docs/api/* include/xmlsec/base64.h include/xmlsec/bn.h
|
|
1592
|
+
include/xmlsec/transforms.h src/aes.c src/base64.c
|
|
1593
|
+
src/bn.c src/buffered.c src/c14n.c src/ciphers.c
|
|
1594
|
+
src/des.c src/digests.c src/dsa.c src/enveloped.c
|
|
1595
|
+
src/xmltree.c: and more and more documentation
|
|
1596
|
+
|
|
1597
|
+
Wed Aug 14 17:32:23 2002 Aleksey Sanin <aleksey@aleksey.com>
|
|
1598
|
+
|
|
1599
|
+
* docs/api/* include/xmlsec/transforms.h
|
|
1600
|
+
include/xmlsec/transformsInternal.h include/xmlsec/version.h
|
|
1601
|
+
include/xmlsec/version.h.in src/errors.c src/xpath.c:
|
|
1602
|
+
and more documentation...
|
|
1603
|
+
|
|
1604
|
+
Wed Aug 14 16:30:44 2002 Aleksey Sanin <aleksey@aleksey.com>
|
|
1605
|
+
|
|
1606
|
+
* docs/api/* include/xmlsec/keyinfo.h include/xmlsec/keys.h
|
|
1607
|
+
include/xmlsec/keysmngr.h include/xmlsec/xmldsig.h
|
|
1608
|
+
include/xmlsec/xmlenc.h src/debug.c src/keyinfo.c
|
|
1609
|
+
src/keys.c src/keysmngr.c src/xmldsig.c src/xmlenc.c
|
|
1610
|
+
tests/keys.xml: more documentation...
|
|
1611
|
+
|
|
1612
|
+
Wed Aug 14 13:08:32 2002 Aleksey Sanin <aleksey@aleksey.com>
|
|
1613
|
+
|
|
1614
|
+
* docs/api/* include/xmlsec/errors.h include/xmlsec/xmldsig.h
|
|
1615
|
+
include/xmlsec/xmlenc.h src/errors.c src/xmldsig.c
|
|
1616
|
+
src/xmlenc.c src/xmlsec.c: added comments and rebuild documentation
|
|
1617
|
+
* docs/faq.html: update FAQ
|
|
1618
|
+
|
|
1619
|
+
Wed 14 Aug 2002 09:44:31 AM PDT Aleksey Sanin <aleksey@aleksey.com>
|
|
1620
|
+
|
|
1621
|
+
* apps/xmlsec.c: fixed random numbers initialization
|
|
1622
|
+
|
|
1623
|
+
Tue 13 Aug 2002 09:11:45 PM PDT Aleksey Sanin <aleksey@aleksey.com>
|
|
1624
|
+
|
|
1625
|
+
* win32/* src/errors.c apps/xmlsec.c: made required changes
|
|
1626
|
+
to support new stuff in win32 port
|
|
1627
|
+
|
|
1628
|
+
Tue Aug 13 13:59:32 2002 Aleksey Sanin <aleksey@aleksey.com>
|
|
1629
|
+
|
|
1630
|
+
* apps/xmlsec.c configure.in src/ciphers.c src/des.c src/dsa.c
|
|
1631
|
+
src/hmac.c src/rsa.c: replaced XMLSEC_OPENSSL097 define with
|
|
1632
|
+
XMLSEC_OPENSSL096 define
|
|
1633
|
+
* docs/api/*: updated docs with new errors reporting functions
|
|
1634
|
+
|
|
1635
|
+
Tue 13 Aug 2002 01:36:16 PM PDT Aleksey Sanin <aleksey@aleksey.com>
|
|
1636
|
+
|
|
1637
|
+
* include/xmlsec/errors.h src/*.c configure.in: changed
|
|
1638
|
+
error reporting system and updated all files accordingly
|
|
1639
|
+
|
|
1640
|
+
Thu 08 Aug 2002 10:56:56 AM PDT Aleksey Sanin <aleksey@aleksey.com>
|
|
1641
|
+
|
|
1642
|
+
* src/xpath.c: removed XPointer support from XPath 2 filter
|
|
1643
|
+
|
|
1644
|
+
Wed Aug 7 14:32:44 2002 Aleksey Sanin <aleksey@aleksey.com>
|
|
1645
|
+
|
|
1646
|
+
* include/xmlsec/transforms.h include/xmlsec/xmlsec.h
|
|
1647
|
+
src/transforms.c src/xmlsec.c src/xpath.c: added XPointer
|
|
1648
|
+
transform (Additional XML Security URIs)
|
|
1649
|
+
* tests/aleksey-xmldsig-01/xpointer-hmac.tmpl
|
|
1650
|
+
tests/aleksey-xmldsig-01/xpointer-hmac.xml
|
|
1651
|
+
tests/merlin-xpath-filter2-three/sign-xfdl.tmpl
|
|
1652
|
+
tests/testDSig.sh: test cases for XPointer transform
|
|
1653
|
+
|
|
1654
|
+
|
|
1655
|
+
Wed Aug 7 01:08:13 2002 Aleksey Sanin <aleksey@aleksey.com>
|
|
1656
|
+
|
|
1657
|
+
* src/transforms.c src/xmldsig.c src/xmlenc.c: full
|
|
1658
|
+
xpointers support in Reference URIs is added
|
|
1659
|
+
* include/xmlsec/xmltree.h src/xmltree.c src/xmlsec.c
|
|
1660
|
+
apps/xmlsec.c : removed the IDs hack
|
|
1661
|
+
* docs/xmldsig-interop.html: added full XPointers support
|
|
1662
|
+
* tests/*: added ID attribute declaration when necessary
|
|
1663
|
+
|
|
1664
|
+
Tue Aug 6 09:51:54 2002 Aleksey Sanin <aleksey@aleksey.com>
|
|
1665
|
+
* docs/api: updated docs with new stuff
|
|
1666
|
+
* man/xmlsec-config.1: fixed minor problems in help file
|
|
1667
|
+
* include/xmlsec/nodeset.h src/enveloped.c src/nodeset.c
|
|
1668
|
+
src/transforms.c src/xmldsig.c src/xpath.c: changed new
|
|
1669
|
+
functions names
|
|
1670
|
+
|
|
1671
|
+
Mon Aug 5 22:55:05 2002 Aleksey Sanin <aleksey@aleksey.com>
|
|
1672
|
+
|
|
1673
|
+
* Makefile.am tests/testDSig.sh tests/testEnc.sh: added
|
|
1674
|
+
'perfcheck' flag to the Makefile for performance testing
|
|
1675
|
+
|
|
1676
|
+
Mon Aug 5 21:11:41 2002 Aleksey Sanin <aleksey@aleksey.com>
|
|
1677
|
+
|
|
1678
|
+
* include/xmlsec/nodeset.h include/xmlsec/transforms.h
|
|
1679
|
+
src/enveloped.c src/nodeset.c src/xpath.c: new node set
|
|
1680
|
+
code improved performaance (8-10 times!!!)
|
|
1681
|
+
|
|
1682
|
+
Mon Aug 5 17:58:31 2002 Aleksey Sanin <aleksey@aleksey.com>
|
|
1683
|
+
* Makefile.am configure.in src/xpathalt.c:
|
|
1684
|
+
Removed alt xpath trasnform implementation as outdated
|
|
1685
|
+
* include/xmlsec/nodeset.h src/nodeset.c
|
|
1686
|
+
src/Makefile.am include/xmlsec/Makefile.am
|
|
1687
|
+
include/xmlsec/transforms.h include/xmlsec/transformsInternal.h
|
|
1688
|
+
src/transforms.c include/xmlsec/xmltree.h src/xmltree.c
|
|
1689
|
+
src/c14n.c src/enveloped.c src/xmldsig.c
|
|
1690
|
+
src/xpath.c: create xmlsec specific nodes set object
|
|
1691
|
+
and start using it everythere
|
|
1692
|
+
* src/x509.c: updated the code to use new openssl 0.9.7 builds
|
|
1693
|
+
|
|
1694
|
+
Wed Jul 31 23:38:18 2002 Aleksey Sanin <aleksey@aleksey.com>
|
|
1695
|
+
|
|
1696
|
+
* Makefile.am configure.in: added "enable-profiling" config option
|
|
1697
|
+
* docs/download.html docs/index.html src/c14n.c:
|
|
1698
|
+
starting XPath and enveloped transforms performance improvements
|
|
1699
|
+
* tests/Makefile.am tests/merlin-c14n-three/* tests/testDSig.sh:
|
|
1700
|
+
added one more Merlin's test suite for exc-c14n
|
|
1701
|
+
|
|
1702
|
+
Wed Jul 31 15:56:17 2002 Aleksey Sanin <aleksey@aleksey.com>
|
|
1703
|
+
* apps/xmlsec.c src/xpath.c tests/testDSig.sh: improved
|
|
1704
|
+
XPath2 performance
|
|
1705
|
+
|
|
1706
|
+
Wed Jul 31 11:45:09 2002 Aleksey Sanin <aleksey@aleksey.com>
|
|
1707
|
+
* include/xmlsec/xmlsec.h src/keyinfo.c src/xmlsec.c src/xpath.c
|
|
1708
|
+
tests/Makefile.am tests/testDSig.sh tests/merlin-xpath-filter2-three:
|
|
1709
|
+
updated XPath2 transform implementation according to the
|
|
1710
|
+
latest spec and added Merlin's tests for it
|
|
1711
|
+
|
|
1712
|
+
Thu 18 Jul 2002 08:51:16 AM PDT Aleksey Sanin <aleksey@aleksey.com>
|
|
1713
|
+
* src/x509.c: fixed problems with using self-signed certs
|
|
1714
|
+
for signatures
|
|
1715
|
+
|
|
1716
|
+
Thu Jul 11 19:30:31 2002 Aleksey Sanin <aleksey@aleksey.com>
|
|
1717
|
+
* Makefile.am configure.in xmlsec.spec.in xmlsec.pc xmlsec.pc.in:
|
|
1718
|
+
Add pkgconfig script
|
|
1719
|
+
|
|
1720
|
+
* tests/Makefile.am tests/testDSig.sh tests/testEnc.sh tests/testKeys.sh:
|
|
1721
|
+
more fixes for dist
|
|
1722
|
+
|
|
1723
|
+
Thu Jul 11 17:17:22 2002 Aleksey Sanin <aleksey@aleksey.com>
|
|
1724
|
+
* configure.in src/Makefile.am tests/Makefile.am: fixed
|
|
1725
|
+
minor dist bugs
|
|
1726
|
+
|
|
1727
|
+
Thu Jul 11 11:47:14 2002 Aleksey Sanin <aleksey@aleksey.com>
|
|
1728
|
+
* Makefile.am docs/* docs/api/*: added faq and documentation
|
|
1729
|
+
pages
|
|
1730
|
+
|
|
1731
|
+
Thu Jul 11 9:19:45 2002 Aleksey Sanin <aleksey@aleksey.com>
|
|
1732
|
+
* Makefile.am configure.in docs/api/*: added API docs
|
|
1733
|
+
generation
|
|
1734
|
+
|
|
1735
|
+
Wed Jul 10 21:39:59 2002 Aleksey Sanin <aleksey@aleksey.com>
|
|
1736
|
+
* AUTHORS Makefile.am debian/* : added Debian packaging scripts from
|
|
1737
|
+
John Belmonte <jvb@prairienet.org>
|
|
1738
|
+
|
|
1739
|
+
Wed Jul 10 21:24:43 2002 Aleksey Sanin <aleksey@aleksey.com>
|
|
1740
|
+
* include/xmlsec/*.h src/*.c: some comments added
|
|
1741
|
+
|
|
1742
|
+
Wed Jul 10 18:06:12 2002 Aleksey Sanin <aleksey@aleksey.com>
|
|
1743
|
+
* Makefile.am config.h.in configure.in man/* xmlsec.spec.in:
|
|
1744
|
+
man pages for xmlsec and xmlsec-config were added
|
|
1745
|
+
* apps/xmlsec.c: "--version" and "--help" options added
|
|
1746
|
+
|
|
1747
|
+
Wed Jul 10 21:41:21 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
|
|
1748
|
+
* win32/Makefile.msvc: Fixed minor typos, static link flags
|
|
1749
|
+
and bindist target
|
|
1750
|
+
* apps/xmlsec.c: Added snprintf -> _snprintf mapping for MS
|
|
1751
|
+
C-runtime
|
|
1752
|
+
|
|
1753
|
+
Wed Jul 10 8:45:23 2002 Aleksey Sanin <aleksey@aleksey.com>
|
|
1754
|
+
* configure.in docs/* : 0.0.7 release
|
|
1755
|
+
|
|
1756
|
+
Fri Jun 21 00:48:52 2002 Aleksey Sanin <aleksey@aleksey.com>
|
|
1757
|
+
* Makefile.am configure.in: added win32 folder to the
|
|
1758
|
+
distribution
|
|
1759
|
+
|
|
1760
|
+
2002-06-20 Aleksey Sanin <aleksey@aleksey.com>
|
|
1761
|
+
* apps/xmlsec.c: added password protected pem files
|
|
1762
|
+
support
|
|
1763
|
+
|
|
1764
|
+
2002-06-19 Aleksey Sanin <aleksey@aleksey.com>
|
|
1765
|
+
* include/xmlsec/xmltree.h src/xmlsec.c src/xmltree.c:
|
|
1766
|
+
fixed ID attribute bug found by Sascha Breite
|
|
1767
|
+
|
|
1768
|
+
Mon Jun 3 21:18:54 2002 Aleksey Sanin <aleksey@aleksey.com>
|
|
1769
|
+
* src/enveloped.c: improved performance
|
|
1770
|
+
|
|
1771
|
+
Thu May 30 21:29:21 2002 Aleksey Sanin <aleksey@aleksey.com>
|
|
1772
|
+
* src/xmltree.c: propagating XPath fix from LibXML2
|
|
1773
|
+
|
|
1774
|
+
Wed May 29 21:28:13 2002 Aleksey Sanin <aleksey@aleksey.com>
|
|
1775
|
+
* apps/xmlsec.c include/xmlsec/keysmngr.h include/xmlsec/x509.h
|
|
1776
|
+
src/keysmngr.c src/x509.c tests/keys.xml: pkcs12 support added
|
|
1777
|
+
|
|
1778
|
+
Wed 29 May 2002 12:07:35 AM PDT Aleksey Sanin <aleksey@aleksey.com>
|
|
1779
|
+
*: merged 0.0.6 release from local CVS
|
|
1780
|
+
*: win32 port
|
|
1781
|
+
*: xpath filter2
|
|
1782
|
+
*: custom network handlers
|
|
1783
|
+
|
|
1784
|
+
Mon 29 Apr 2002 12:07:35 AM PDT Aleksey Sanin <aleksey@aleksey.com>
|
|
1785
|
+
*: Significant API re-factoring (make it more simple and consistent)
|
|
1786
|
+
*: added symmetric Key Wrappers support (AES, DES)
|
|
1787
|
+
*: added RIPEMD-160 support
|
|
1788
|
+
|
|
1789
|
+
Sat 30 Mar 2002 12:55:30 AM PST Aleksey Sanin <aleksey@aleksey.com>
|
|
1790
|
+
*: Finished x509 supprot
|
|
1791
|
+
*: Added functions to create signature "on-the-fly"
|
|
1792
|
+
*: Updated examples and docs
|
|
1793
|
+
*: Fixed header files installation bug
|
|
1794
|
+
|
|
1795
|
+
Wed 27 Mar 2002 11:20:42 PM PST Aleksey Sanin <aleksey@aleksey.com>
|
|
1796
|
+
*: Added x509 verification support and a skeleton for x509
|
|
1797
|
+
x509 based sigantures
|
|
1798
|
+
|
|
1799
|
+
Tue 26 Mar 2002 06:30:10 PM PST Aleksey Sanin <aleksey@aleksey.com>
|
|
1800
|
+
*: The result of operation (sign/verify) is returned in the
|
|
1801
|
+
list of xmlDSigSignature objects. Application can examine
|
|
1802
|
+
the key and signature method, content just before digesting or
|
|
1803
|
+
signing, etc. and decide what to do with it.
|
|
1804
|
+
*: The Transform and KeyInfo code was significantly re-written and
|
|
1805
|
+
separated from the XMLDSig code with a goal to reuse in in
|
|
1806
|
+
XML Signature or whatever.
|
|
1807
|
+
*: Added support for RetrievalMethod and Manifests (pretty simple
|
|
1808
|
+
adter the first change because both are based on Transforms)
|
|
1809
|
+
*: Added XSLT support (based on libxslt from Daniel Veillard)
|
|
1810
|
+
|