Update security/apache-xml-security-c to version 1.7.3_1
[dports.git] / security / apache-xml-security-c / files / patch-xsec_enc_OpenSSL_OpenSSLCryptoSymmetricKey.hpp
1 ------------------------------------------------------------------------
2 r1806743 | scantor | 2017-08-31 01:23:01 +0200 (Thu, 31 Aug 2017) | 1 line
3
4 Fix NULL warnings
5
6 Index: xsec/enc/OpenSSL/OpenSSLCryptoSymmetricKey.hpp
7 ===================================================================
8 --- xsec/enc/OpenSSL/OpenSSLCryptoSymmetricKey.hpp      (revision 1806742)
9 +++ xsec/enc/OpenSSL/OpenSSLCryptoSymmetricKey.hpp      (revision 1806743)
10 @@ -151,7 +151,7 @@
11                               SymmetricKeyMode mode = MODE_CBC,
12                               const unsigned char * iv = NULL,
13                               const unsigned char* tag = NULL,
14 -                             unsigned int taglen = NULL);
15 +                             unsigned int taglen = 0);
16  
17      /**
18       * \brief Continue an decrypt operation using this key.
19 Index: xsec/enc/XSECCryptoSymmetricKey.hpp
20 ===================================================================
21 --- xsec/enc/XSECCryptoSymmetricKey.hpp (revision 1806742)
22 +++ xsec/enc/XSECCryptoSymmetricKey.hpp (revision 1806743)
23 @@ -185,7 +185,7 @@
24                                                          SymmetricKeyMode mode = MODE_CBC,
25                                                          const unsigned char* iv = NULL,
26                               const unsigned char* tag = NULL,
27 -                             unsigned int taglen = NULL) = 0;
28 +                             unsigned int taglen = 0) = 0;
29  
30         /**
31          * \brief Continue a decrypt operation using this key.
32
33 ------------------------------------------------------------------------