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 2003/09/15 13:49:04 UTC

cvs commit: xml-security/c/src/framework XSECException.hpp XSECError.cpp

blautenb    2003/09/15 04:49:04

  Modified:    c/src/framework XSECException.hpp XSECError.cpp
  Log:
  New codes for EncryptionMethod
  
  Revision  Changes    Path
  1.10      +4 -2      xml-security/c/src/framework/XSECException.hpp
  
  Index: XSECException.hpp
  ===================================================================
  RCS file: /home/cvs/xml-security/c/src/framework/XSECException.hpp,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- XSECException.hpp	31 Aug 2003 12:50:47 -0000	1.9
  +++ XSECException.hpp	15 Sep 2003 11:49:04 -0000	1.10
  @@ -150,7 +150,9 @@
   		CipherDataError				= 44,
   		CipherValueError			= 45,
   		CipherError					= 46,
  -		UnknownError				= 47		// Must be last!
  +		AlgorithmMapperError		= 47,
  +		EncryptionMethodError		= 48,
  +		UnknownError				= 49		// Must be last!
   
   	};
   
  
  
  
  1.8       +2 -0      xml-security/c/src/framework/XSECError.cpp
  
  Index: XSECError.cpp
  ===================================================================
  RCS file: /home/cvs/xml-security/c/src/framework/XSECError.cpp,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- XSECError.cpp	31 Aug 2003 12:50:47 -0000	1.7
  +++ XSECError.cpp	15 Sep 2003 11:49:04 -0000	1.8
  @@ -121,6 +121,8 @@
   	"An error occurred processing a CipherData node",
   	"An error occurred processing a CipherValue node",
   	"An error occurred in the XSECCipher processor",
  +	"An error occurred in the Algorithm Mapper",
  +	"An error occurred processing an EncryptionMethod node",
   	"Unknown Error type",
   
   };