Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
4ce39cd0
Commit
4ce39cd0
authored
Jun 20, 2022
by
Hans Leidekker
Committed by
Alexandre Julliard
Jun 21, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Move SECPKG_ATTR defines to a new header and add missing definitions.
parent
f5627617
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
67 additions
and
16 deletions
+67
-16
minschannel.h
include/minschannel.h
+44
-0
schannel.h
include/schannel.h
+23
-16
No files found.
include/minschannel.h
0 → 100644
View file @
4ce39cd0
/*
* Copyright 2022 Hans Leidekker for CodeWeavers
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef __WINE_MINSCHANNEL_H__
#define __WINE_MINSCHANNEL_H__
#define SECPKG_ATTR_ISSUER_LIST 0x50
#define SECPKG_ATTR_REMOTE_CRED 0x51
#define SECPKG_ATTR_LOCAL_CRED 0x52
#define SECPKG_ATTR_REMOTE_CERT_CONTEXT 0x53
#define SECPKG_ATTR_LOCAL_CERT_CONTEXT 0x54
#define SECPKG_ATTR_ROOT_STORE 0x55
#define SECPKG_ATTR_SUPPORTED_ALGS 0x56
#define SECPKG_ATTR_CIPHER_STRENGTHS 0x57
#define SECPKG_ATTR_SUPPORTED_PROTOCOLS 0x58
#define SECPKG_ATTR_ISSUER_LIST_EX 0x59
#define SECPKG_ATTR_CONNECTION_INFO 0x5a
#define SECPKG_ATTR_EAP_KEY_BLOCK 0x5b
#define SECPKG_ATTR_MAPPED_CRED_ATTR 0x5c
#define SECPKG_ATTR_SESSION_INFO 0x5d
#define SECPKG_ATTR_APP_DATA 0x5e
#define SECPKG_ATTR_REMOTE_CERTIFICATES 0x5f
#define SECPKG_ATTR_CLIENT_CERT_POLICY 0x60
#define SECPKG_ATTR_CC_POLICY_RESULT 0x61
#define SECPKG_ATTR_USE_NCRYPT 0x62
#define SECPKG_ATTR_LOCAL_CERT_INFO 0x63
#define SECPKG_ATTR_CIPHER_INFO 0x64
#endif
/* __WINE_MINSCHANNEL_H__ */
include/schannel.h
View file @
4ce39cd0
...
@@ -18,6 +18,7 @@
...
@@ -18,6 +18,7 @@
#ifndef __WINE_SCHANNEL_H__
#ifndef __WINE_SCHANNEL_H__
#define __WINE_SCHANNEL_H__
#define __WINE_SCHANNEL_H__
#include <minschannel.h>
#include <wincrypt.h>
#include <wincrypt.h>
/* Package names */
/* Package names */
...
@@ -179,22 +180,6 @@ static const WCHAR SCHANNEL_NAME_W[] = { 'S','c','h','a','n','n','e','l',0 };
...
@@ -179,22 +180,6 @@ static const WCHAR SCHANNEL_NAME_W[] = { 'S','c','h','a','n','n','e','l',0 };
#define SCH_CRED_IGNORE_NO_REVOCATION_CHECK 2048
#define SCH_CRED_IGNORE_NO_REVOCATION_CHECK 2048
#define SCH_CRED_IGNORE_REVOCATION_OFFLINE 4096
#define SCH_CRED_IGNORE_REVOCATION_OFFLINE 4096
#define SECPKG_ATTR_ISSUER_LIST 0x50
#define SECPKG_ATTR_REMOTE_CRED 0x51
#define SECPKG_ATTR_LOCAL_CRED 0x52
#define SECPKG_ATTR_REMOTE_CERT_CONTEXT 0x53
#define SECPKG_ATTR_LOCAL_CERT_CONTEXT 0x54
#define SECPKG_ATTR_ROOT_STORE 0x55
#define SECPKG_ATTR_SUPPORTED_ALGS 0x56
#define SECPKG_ATTR_CIPHER_STRENGTHS 0x57
#define SECPKG_ATTR_SUPPORTED_PROTOCOLS 0x58
#define SECPKG_ATTR_ISSUER_LIST_EX 0x59
#define SECPKG_ATTR_CONNECTION_INFO 0x5a
#define SECPKG_ATTR_EAP_KEY_BLOCK 0x5b
#define SECPKG_ATTR_MAPPED_CRED_ATTR 0x5c
#define SECPKG_ATTR_SESSION_INFO 0x5d
#define SECPKG_ATTR_APP_DATA 0x5e
#define UNISP_RPC_ID 14
#define UNISP_RPC_ID 14
struct
_HMAPPER
;
struct
_HMAPPER
;
...
@@ -299,4 +284,26 @@ typedef struct _SecPkgContext_ConnectionInfo
...
@@ -299,4 +284,26 @@ typedef struct _SecPkgContext_ConnectionInfo
DWORD
dwExchStrength
;
DWORD
dwExchStrength
;
}
SecPkgContext_ConnectionInfo
,
*
PSecPkgContext_ConnectionInfo
;
}
SecPkgContext_ConnectionInfo
,
*
PSecPkgContext_ConnectionInfo
;
#define SECPKGCONTEXT_CIPHERINFO_V1 1
#define SZ_ALG_MAX_SIZE 64
typedef
struct
_SecPkgContext_CipherInfo
{
DWORD
dwVersion
;
DWORD
dwProtocol
;
DWORD
dwCipherSuite
;
DWORD
dwBaseCipherSuite
;
WCHAR
szCipherSuite
[
SZ_ALG_MAX_SIZE
];
WCHAR
szCipher
[
SZ_ALG_MAX_SIZE
];
DWORD
dwCipherLen
;
DWORD
dwCipherBlockLen
;
WCHAR
szHash
[
SZ_ALG_MAX_SIZE
];
DWORD
dwHashLen
;
WCHAR
szExchange
[
SZ_ALG_MAX_SIZE
];
DWORD
dwMinExchangeLen
;
DWORD
dwMaxExchangeLen
;
WCHAR
szCertificate
[
SZ_ALG_MAX_SIZE
];
DWORD
dwKeyType
;
}
SecPkgContext_CipherInfo
,
*
PSecPkgContext_CipherInfo
;
#endif
/* __WINE_SCHANNEL_H__ */
#endif
/* __WINE_SCHANNEL_H__ */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment