Skip to content

Commit b3c386c

Browse files
author
Git for Windows Build Agent
committed
Update 2 packages
mingw-w64-i686-libffi (3.5.1-1 -> 3.5.2-1) mingw-w64-i686-p11-kit (0.25.5-1 -> 0.25.7-1) Signed-off-by: Git for Windows Build Agent <[email protected]>
1 parent 56d735c commit b3c386c

File tree

37 files changed

+2343
-952
lines changed

37 files changed

+2343
-952
lines changed

mingw32/bin/libffi-8.dll

0 Bytes
Binary file not shown.

mingw32/bin/libp11-kit-0.dll

22.6 KB
Binary file not shown.

mingw32/bin/p11-kit.exe

20 KB
Binary file not shown.

mingw32/bin/trust.exe

20 KB
Binary file not shown.

mingw32/include/ffi.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* -----------------------------------------------------------------*-C-*-
2-
libffi 3.5.1
2+
libffi 3.5.2
33
- Copyright (c) 2011, 2014, 2019, 2021, 2022, 2024, 2025 Anthony Green
44
- Copyright (c) 1996-2003, 2007, 2008 Red Hat, Inc.
55
@@ -316,8 +316,8 @@ size_t ffi_java_raw_size (ffi_cif *cif) __attribute__((deprecated));
316316

317317
/* ---- Version API ------------------------------------------------------ */
318318

319-
#define FFI_VERSION_STRING "3.5.1"
320-
#define FFI_VERSION_NUMBER 30501
319+
#define FFI_VERSION_STRING "3.5.2"
320+
#define FFI_VERSION_NUMBER 30502
321321

322322
#ifndef LIBFFI_ASM
323323
/* Return a version string. */

mingw32/include/p11-kit-1/p11-kit/iter.h

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -45,16 +45,6 @@ extern "C" {
4545

4646
#ifdef P11_KIT_FUTURE_UNSTABLE_API
4747

48-
/*
49-
* If the caller is using the PKCS#11 GNU calling convention, then we cater
50-
* to that here.
51-
*/
52-
#ifdef CRYPTOKI_GNU
53-
typedef unsigned char CK_BBOOL;
54-
typedef ck_object_handle_t CK_OBJECT_HANDLE;
55-
typedef ck_session_handle_t CK_SESSION_HANDLE;
56-
#endif
57-
5848
typedef struct p11_kit_iter P11KitIter;
5949
typedef P11KitIter p11_kit_iter;
6050

mingw32/include/p11-kit-1/p11-kit/p11-kit.h

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,23 @@
4242
* to that here.
4343
*/
4444
#ifdef CRYPTOKI_GNU
45-
typedef ck_rv_t CK_RV;
45+
typedef ck_attribute_type_t CK_ATTRIBUTE_TYPE;
4646
typedef ck_object_handle_t CK_OBJECT_HANDLE;
47-
typedef unsigned long int CK_ULONG;
48-
typedef struct ck_function_list* CK_FUNCTION_LIST_PTR;
47+
typedef ck_rv_t CK_RV;
48+
typedef ck_session_handle_t CK_SESSION_HANDLE;
49+
typedef ck_slot_id_t CK_SLOT_ID;
50+
typedef struct ck_attribute *CK_ATTRIBUTE_PTR;
51+
typedef struct ck_attribute CK_ATTRIBUTE;
4952
typedef struct ck_function_list CK_FUNCTION_LIST;
53+
typedef struct ck_function_list* CK_FUNCTION_LIST_PTR;
54+
typedef struct ck_info *CK_INFO_PTR;
55+
typedef struct ck_info CK_INFO;
56+
typedef struct ck_slot_info *CK_SLOT_INFO_PTR;
57+
typedef struct ck_slot_info CK_SLOT_INFO;
58+
typedef struct ck_token_info *CK_TOKEN_INFO_PTR;
59+
typedef struct ck_token_info CK_TOKEN_INFO;
60+
typedef unsigned char CK_BBOOL;
61+
typedef unsigned long int CK_ULONG;
5062
#endif
5163

5264
#include "p11-kit/deprecated.h"

0 commit comments

Comments
 (0)