Skip to content

Commit

Permalink
Update 4 packages
Browse files Browse the repository at this point in the history
gnutls (3.8.3-1 -> 3.8.4-1)
libgnutls (3.8.3-1 -> 3.8.4-1)
mingw-w64-i686-gnutls (3.8.3-1 -> 3.8.4-1)
mingw-w64-x86_64-gnutls (3.8.3-1 -> 3.8.4-1)

Signed-off-by: Git for Windows Build Agent <[email protected]>
  • Loading branch information
Git for Windows Build Agent committed Mar 22, 2024
1 parent 2a2d7cb commit 5661ee8
Show file tree
Hide file tree
Showing 3,712 changed files with 6,330 additions and 6,610 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
Binary file modified mingw32/bin/certtool.exe
Binary file not shown.
Binary file modified mingw32/bin/gnutls-cli-debug.exe
Binary file not shown.
Binary file modified mingw32/bin/gnutls-cli.exe
Binary file not shown.
Binary file modified mingw32/bin/gnutls-serv.exe
Binary file not shown.
Binary file modified mingw32/bin/libgnutls-30.dll
Binary file not shown.
Binary file modified mingw32/bin/libgnutls-openssl-27.dll
Binary file not shown.
Binary file modified mingw32/bin/libgnutlsxx-30.dll
Binary file not shown.
Binary file modified mingw32/bin/ocsptool.exe
Binary file not shown.
Binary file modified mingw32/bin/p11tool.exe
Binary file not shown.
Binary file modified mingw32/bin/psktool.exe
Binary file not shown.
10 changes: 6 additions & 4 deletions mingw32/include/gnutls/gnutls.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,14 @@
extern "C" {
#endif

#define GNUTLS_VERSION "3.8.3"
#define GNUTLS_VERSION "3.8.4"

/* clang-format off */
#define GNUTLS_VERSION_MAJOR 3
#define GNUTLS_VERSION_MINOR 8
#define GNUTLS_VERSION_PATCH 3
#define GNUTLS_VERSION_PATCH 4

#define GNUTLS_VERSION_NUMBER 0x030803
#define GNUTLS_VERSION_NUMBER 0x030804
/* clang-format on */

#define GNUTLS_CIPHER_RIJNDAEL_128_CBC GNUTLS_CIPHER_AES_128_CBC
Expand Down Expand Up @@ -876,6 +876,7 @@ typedef enum gnutls_certificate_print_formats {
* gnutls_pk_algorithm_t:
* @GNUTLS_PK_UNKNOWN: Unknown public-key algorithm.
* @GNUTLS_PK_RSA: RSA public-key algorithm.
* @GNUTLS_PK_RSA_OAEP: RSA public-key algorithm, with OAEP padding.
* @GNUTLS_PK_RSA_PSS: RSA public-key algorithm, with PSS padding.
* @GNUTLS_PK_DSA: DSA public-key algorithm.
* @GNUTLS_PK_DH: Diffie-Hellman algorithm. Used to generate parameters.
Expand Down Expand Up @@ -904,7 +905,8 @@ typedef enum {
GNUTLS_PK_GOST_12_512 = 10,
GNUTLS_PK_ECDH_X448 = 11,
GNUTLS_PK_EDDSA_ED448 = 12,
GNUTLS_PK_MAX = GNUTLS_PK_EDDSA_ED448
GNUTLS_PK_RSA_OAEP = 13,
GNUTLS_PK_MAX = GNUTLS_PK_RSA_OAEP
} gnutls_pk_algorithm_t;

const char *gnutls_pk_algorithm_get_name(gnutls_pk_algorithm_t algorithm);
Expand Down
8 changes: 8 additions & 0 deletions mingw32/include/gnutls/x509.h
Original file line number Diff line number Diff line change
Expand Up @@ -410,6 +410,14 @@ void gnutls_x509_spki_set_rsa_pss_params(gnutls_x509_spki_t spki,
gnutls_digest_algorithm_t dig,
unsigned int salt_size);

int gnutls_x509_spki_set_rsa_oaep_params(gnutls_x509_spki_t spki,
gnutls_digest_algorithm_t dig,
const gnutls_datum_t *label);

int gnutls_x509_spki_get_rsa_oaep_params(gnutls_x509_spki_t spki,
gnutls_digest_algorithm_t *dig,
gnutls_datum_t *label);

int gnutls_x509_crt_get_pk_algorithm(gnutls_x509_crt_t cert,
unsigned int *bits);
int gnutls_x509_crt_set_spki(gnutls_x509_crt_t crt,
Expand Down
Binary file modified mingw32/lib/libgnutls-openssl.a
Binary file not shown.
Binary file modified mingw32/lib/libgnutls.a
Binary file not shown.
Binary file modified mingw32/lib/libgnutls.dll.a
Binary file not shown.
Binary file modified mingw32/lib/libgnutlsxx.a
Binary file not shown.
2 changes: 1 addition & 1 deletion mingw32/lib/pkgconfig/gnutls.pc
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ includedir=${prefix}/include
Name: GnuTLS
Description: Transport Security Layer implementation for the GNU system
URL: https://www.gnutls.org/
Version: 3.8.3
Version: 3.8.4
Libs: -L${libdir} -lgnutls
Libs.private: /mingw32/lib/libintl.dll.a -lws2_32 -lws2_32 -lgmp -lunistring -latomic -ladvapi32 -lcrypt32 -lncrypt -lbcrypt
Requires.private: nettle, hogweed, libtasn1, libidn2, p11-kit-1, zlib, libbrotlienc, libbrotlidec, libzstd
Expand Down
Loading

0 comments on commit 5661ee8

Please sign in to comment.