Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package bctoolbox for openSUSE:Factory 
checked in at 2021-06-25 15:00:41
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/bctoolbox (Old)
 and      /work/SRC/openSUSE:Factory/.bctoolbox.new.2625 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "bctoolbox"

Fri Jun 25 15:00:41 2021 rev:22 rq:901323 version:4.5.20

Changes:
--------
--- /work/SRC/openSUSE:Factory/bctoolbox/bctoolbox.changes      2021-05-18 
18:26:28.514953876 +0200
+++ /work/SRC/openSUSE:Factory/.bctoolbox.new.2625/bctoolbox.changes    
2021-06-25 15:01:08.464137168 +0200
@@ -1,0 +2,6 @@
+Tue Jun 22 11:59:06 UTC 2021 - Paolo Stivanin <i...@paolostivanin.com>
+
+- Update to 4.5.20
+  * no changelog available
+
+-------------------------------------------------------------------

Old:
----
  bctoolbox-4.5.15.tar.gz

New:
----
  bctoolbox-4.5.20.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ bctoolbox.spec ++++++
--- /var/tmp/diff_new_pack.4aSpQf/_old  2021-06-25 15:01:08.924137728 +0200
+++ /var/tmp/diff_new_pack.4aSpQf/_new  2021-06-25 15:01:08.928137734 +0200
@@ -18,7 +18,7 @@
 
 %define sover   1
 Name:           bctoolbox
-Version:        4.5.15
+Version:        4.5.20
 Release:        0
 Summary:        Utility library for software from Belledonne Communications
 License:        GPL-2.0-or-later

++++++ bctoolbox-4.5.15.tar.gz -> bctoolbox-4.5.20.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bctoolbox-4.5.15/src/crypto/mbedtls.c 
new/bctoolbox-4.5.20/src/crypto/mbedtls.c
--- old/bctoolbox-4.5.15/src/crypto/mbedtls.c   2021-05-10 14:00:16.000000000 
+0200
+++ new/bctoolbox-4.5.20/src/crypto/mbedtls.c   2021-06-10 14:56:37.000000000 
+0200
@@ -1538,7 +1538,7 @@
                uint8_t hashLength,
                uint8_t *output)
 {
-       uint8_t hashOutput[48];
+       uint8_t hashOutput[64];
        mbedtls_sha512(input, inputLength, hashOutput, 1); /* last param to one 
to select SHA384 and not SHA512 */
 
        /* check output length, can't be>48 */
@@ -1791,8 +1791,8 @@
  * @param[out] output          Output data buffer
  *
  */
-void bctbx_aes128CfbEncrypt(const uint8_t key[16],
-               const uint8_t IV[16],
+void bctbx_aes128CfbEncrypt(const uint8_t *key,
+               const uint8_t *IV,
                const uint8_t *input,
                size_t inputLength,
                uint8_t *output)
@@ -1823,8 +1823,8 @@
  * @param[out] output          Output data buffer
  *
  */
-void bctbx_aes128CfbDecrypt(const uint8_t key[16],
-               const uint8_t IV[16],
+void bctbx_aes128CfbDecrypt(const uint8_t *key,
+               const uint8_t *IV,
                const uint8_t *input,
                size_t inputLength,
                uint8_t *output)
@@ -1855,8 +1855,8 @@
  * @param[out] output          Output data buffer
  *
  */
-void bctbx_aes256CfbEncrypt(const uint8_t key[32],
-               const uint8_t IV[16],
+void bctbx_aes256CfbEncrypt(const uint8_t *key,
+               const uint8_t *IV,
                const uint8_t *input,
                size_t inputLength,
                uint8_t *output)
@@ -1884,8 +1884,8 @@
  * @param[out] output          Output data buffer
  *
  */
-void bctbx_aes256CfbDecrypt(const uint8_t key[32],
-               const uint8_t IV[16],
+void bctbx_aes256CfbDecrypt(const uint8_t *key,
+               const uint8_t *IV,
                const uint8_t *input,
                size_t inputLength,
                uint8_t *output)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bctoolbox-4.5.15/src/utils/port.c 
new/bctoolbox-4.5.20/src/utils/port.c
--- old/bctoolbox-4.5.15/src/utils/port.c       2021-05-10 14:00:16.000000000 
+0200
+++ new/bctoolbox-4.5.20/src/utils/port.c       2021-06-10 14:56:37.000000000 
+0200
@@ -1728,7 +1728,7 @@
        output_string[8] = '\0';
 }
 
-uint32_t bctbx_str_to_uint32(const uint8_t *input_string) {
+uint32_t bctbx_str_to_uint32(const uint8_t input_string[9]) {
        return  (((uint32_t)bctbx_char_to_byte(input_string[0]))<<28)
                | (((uint32_t)bctbx_char_to_byte(input_string[1]))<<24)
                | (((uint32_t)bctbx_char_to_byte(input_string[2]))<<20)

Reply via email to