You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@santuario.apache.org by bl...@apache.org on 2005/07/05 13:55:03 UTC

cvs commit: xml-security/c/src/utils XSECPlatformUtils.cpp

blautenb    2005/07/05 04:55:02

  Modified:    c/src/utils XSECPlatformUtils.cpp
  Log:
  Call DSIGSignature::Initialise to register digital signature algorithms
  
  Revision  Changes    Path
  1.12      +5 -1      xml-security/c/src/utils/XSECPlatformUtils.cpp
  
  Index: XSECPlatformUtils.cpp
  ===================================================================
  RCS file: /home/cvs/xml-security/c/src/utils/XSECPlatformUtils.cpp,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- XSECPlatformUtils.cpp	3 Feb 2005 13:53:54 -0000	1.11
  +++ XSECPlatformUtils.cpp	5 Jul 2005 11:55:02 -0000	1.12
  @@ -30,6 +30,7 @@
   #include <xsec/utils/XSECPlatformUtils.hpp>
   #include <xsec/framework/XSECError.hpp>
   #include <xsec/dsig/DSIGConstants.hpp>
  +#include <xsec/dsig/DSIGSignature.hpp>
   #include <xsec/xkms/XKMSConstants.hpp>
   #include <xsec/framework/XSECAlgorithmMapper.hpp>
   
  @@ -95,6 +96,9 @@
   	// Initialise the XENCCipherImpl class
   	XENCCipherImpl::Initialise();
   
  +	// Initialise the DSIGSignature class
  +	DSIGSignature::Initialise();
  +
   };
   
   void XSECPlatformUtils::SetCryptoProvider(XSECCryptoProvider * p) {