1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-10-06 10:30:40 +03:00

Compare commits

..

No commits in common. "d4dbf3cdc5386d9e8b01561dbd0370e26bb1f5c4" and "36456e63a615ba9cd4bfc5308e8b5d33cef8b3b1" have entirely different histories.

3 changed files with 7 additions and 10 deletions

2
.gitignore vendored
View File

@ -209,4 +209,4 @@ developer_tools/stbchecker/**/ASALocalRun/
developer_tools/stbchecker/**/*.binlog developer_tools/stbchecker/**/*.binlog
developer_tools/stbchecker/**/*.nvuser developer_tools/stbchecker/**/*.nvuser
developer_tools/stbchecker/**/.mfractor/ developer_tools/stbchecker/**/.mfractor/
/vcpkg_installed

View File

@ -73,7 +73,7 @@ CK_PKCS11_FUNCTION_INFO(C_GetSlotList)
( (
CK_BBOOL tokenPresent, /* only slots with tokens? */ CK_BBOOL tokenPresent, /* only slots with tokens? */
CK_SLOT_ID_PTR pSlotList, /* receives array of slot IDs */ CK_SLOT_ID_PTR pSlotList, /* receives array of slot IDs */
CK_UINT_PTR pulCount /* receives number of slots */ CK_ULONG_PTR pulCount /* receives number of slots */
); );
#endif #endif
@ -351,7 +351,7 @@ CK_PKCS11_FUNCTION_INFO(C_FindObjects)
CK_SESSION_HANDLE hSession, /* session's handle */ CK_SESSION_HANDLE hSession, /* session's handle */
CK_OBJECT_HANDLE_PTR phObject, /* gets obj. handles */ CK_OBJECT_HANDLE_PTR phObject, /* gets obj. handles */
CK_ULONG ulMaxObjectCount, /* max handles to get */ CK_ULONG ulMaxObjectCount, /* max handles to get */
CK_UINT_PTR pulObjectCount /* actual # returned */ CK_ULONG_PTR pulObjectCount /* actual # returned */
); );
#endif #endif
@ -558,7 +558,7 @@ CK_PKCS11_FUNCTION_INFO(C_Sign)
CK_BYTE_PTR pData, /* the data to sign */ CK_BYTE_PTR pData, /* the data to sign */
CK_ULONG ulDataLen, /* count of bytes to sign */ CK_ULONG ulDataLen, /* count of bytes to sign */
CK_BYTE_PTR pSignature, /* gets the signature */ CK_BYTE_PTR pSignature, /* gets the signature */
CK_UINT_PTR pulSignatureLen /* gets signature length */ CK_ULONG_PTR pulSignatureLen /* gets signature length */
); );
#endif #endif

View File

@ -51,8 +51,6 @@ typedef CK_BYTE CK_BBOOL;
/* an unsigned value, at least 32 bits long */ /* an unsigned value, at least 32 bits long */
typedef unsigned long int CK_ULONG; typedef unsigned long int CK_ULONG;
typedef unsigned int CK_UINT;
/* a signed value, the same size as a CK_ULONG */ /* a signed value, the same size as a CK_ULONG */
/* CK_LONG is new for v2.0 */ /* CK_LONG is new for v2.0 */
typedef long int CK_LONG; typedef long int CK_LONG;
@ -70,7 +68,6 @@ typedef CK_BYTE CK_PTR CK_BYTE_PTR;
typedef CK_CHAR CK_PTR CK_CHAR_PTR; typedef CK_CHAR CK_PTR CK_CHAR_PTR;
typedef CK_UTF8CHAR CK_PTR CK_UTF8CHAR_PTR; typedef CK_UTF8CHAR CK_PTR CK_UTF8CHAR_PTR;
typedef CK_ULONG CK_PTR CK_ULONG_PTR; typedef CK_ULONG CK_PTR CK_ULONG_PTR;
typedef CK_UINT CK_PTR CK_UINT_PTR;
typedef void CK_PTR CK_VOID_PTR; typedef void CK_PTR CK_VOID_PTR;
/* Pointer to a CK_VOID_PTR-- i.e., pointer to pointer to void */ /* Pointer to a CK_VOID_PTR-- i.e., pointer to pointer to void */
@ -113,7 +110,7 @@ typedef CK_ULONG CK_NOTIFICATION;
#define CKN_SURRENDER 0 #define CKN_SURRENDER 0
typedef CK_UINT CK_SLOT_ID; typedef CK_ULONG CK_SLOT_ID;
typedef CK_SLOT_ID CK_PTR CK_SLOT_ID_PTR; typedef CK_SLOT_ID CK_PTR CK_SLOT_ID_PTR;
@ -265,7 +262,7 @@ typedef CK_TOKEN_INFO CK_PTR CK_TOKEN_INFO_PTR;
/* CK_SESSION_HANDLE is a Cryptoki-assigned value that /* CK_SESSION_HANDLE is a Cryptoki-assigned value that
* identifies a session */ * identifies a session */
typedef CK_UINT CK_SESSION_HANDLE; typedef CK_ULONG CK_SESSION_HANDLE;
typedef CK_SESSION_HANDLE CK_PTR CK_SESSION_HANDLE_PTR; typedef CK_SESSION_HANDLE CK_PTR CK_SESSION_HANDLE_PTR;
@ -313,7 +310,7 @@ typedef CK_SESSION_INFO CK_PTR CK_SESSION_INFO_PTR;
/* CK_OBJECT_HANDLE is a token-specific identifier for an /* CK_OBJECT_HANDLE is a token-specific identifier for an
* object */ * object */
typedef CK_UINT CK_OBJECT_HANDLE; typedef CK_ULONG CK_OBJECT_HANDLE;
typedef CK_OBJECT_HANDLE CK_PTR CK_OBJECT_HANDLE_PTR; typedef CK_OBJECT_HANDLE CK_PTR CK_OBJECT_HANDLE_PTR;