View | Details | Raw Unified | Return to bug 221890 | Differences between
and this patch

Collapse All | Expand All

(-)b/security/apache-xml-security-c/files/patch-xsec_enc_NSS_NSSCryptoSymmetricKey.hpp (+11 lines)
Added Link Here
1
--- xsec/enc/NSS/NSSCryptoSymmetricKey.hpp.orig	2017-09-03 18:52:39 UTC
2
+++ xsec/enc/NSS/NSSCryptoSymmetricKey.hpp
3
@@ -149,7 +149,7 @@ public :
4
 							 SymmetricKeyMode mode = MODE_CBC,
5
 							 const unsigned char * iv = NULL,
6
                              const unsigned char* tag = NULL,
7
-                             unsigned int taglen = NULL);
8
+                             unsigned int taglen = 0U);
9
 
10
 	/**
11
 	 * \brief Continue an decrypt operation using this key.
(-)b/security/apache-xml-security-c/files/patch-xsec_enc_OpenSSL_OpenSSLCryptoSymmetricKey.hpp (+11 lines)
Added Link Here
1
--- xsec/enc/OpenSSL/OpenSSLCryptoSymmetricKey.hpp.orig	2017-09-03 18:59:26 UTC
2
+++ xsec/enc/OpenSSL/OpenSSLCryptoSymmetricKey.hpp
3
@@ -151,7 +151,7 @@ public :
4
 							 SymmetricKeyMode mode = MODE_CBC,
5
 							 const unsigned char * iv = NULL,
6
                              const unsigned char* tag = NULL,
7
-                             unsigned int taglen = NULL);
8
+                             unsigned int taglen = 0U);
9
 
10
 	/**
11
 	 * \brief Continue an decrypt operation using this key.
(-)b/security/apache-xml-security-c/files/patch-xsec_enc_WinCAPI_WinCAPICryptoSymmetricKey.hpp (+11 lines)
Added Link Here
1
--- xsec/enc/WinCAPI/WinCAPICryptoSymmetricKey.hpp.orig	2017-09-03 18:59:55 UTC
2
+++ xsec/enc/WinCAPI/WinCAPICryptoSymmetricKey.hpp
3
@@ -158,7 +158,7 @@ public :
4
 							 SymmetricKeyMode mode = MODE_CBC,
5
 							 const unsigned char * iv = NULL,
6
                              const unsigned char* tag = NULL,
7
-                             unsigned int taglen = NULL);
8
+                             unsigned int taglen = 0U);
9
 
10
 	/**
11
 	 * \brief Continue an decrypt operation using this key.
(-)b/security/apache-xml-security-c/files/patch-xsec_enc_XSECCryptoSymmetricKey.hpp (+11 lines)
Added Link Here
1
--- xsec/enc/XSECCryptoSymmetricKey.hpp.orig	2017-09-03 18:48:32 UTC
2
+++ xsec/enc/XSECCryptoSymmetricKey.hpp
3
@@ -185,7 +185,7 @@ public :
4
 							 SymmetricKeyMode mode = MODE_CBC,
5
 							 const unsigned char* iv = NULL,
6
                              const unsigned char* tag = NULL,
7
-                             unsigned int taglen = NULL) = 0;
8
+                             unsigned int taglen = 0U) = 0;
9
 
10
 	/**
11
 	 * \brief Continue a decrypt operation using this key.
(-)b/security/apache-xml-security-c/files/patch-xsec_tools_checksig_InteropResolver.cpp (-1 / +11 lines)
Added Link Here
0
- 
1
--- xsec/tools/checksig/InteropResolver.cpp.orig	2017-09-03 19:03:40 UTC
2
+++ xsec/tools/checksig/InteropResolver.cpp
3
@@ -645,7 +645,7 @@ XSECCryptoKey * InteropResolver::resolve
4
 
5
 	}
6
 
7
-	return false;
8
+	return 0;
9
 
10
 }
11
 

Return to bug 221890