1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189
|
/*
* Copyright (C) 2015 Nikos Mavrogiannopoulos
*
* Author: Nikos Mavrogiannopoulos
*
* This file is part of GnuTLS.
*
* GnuTLS is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* GnuTLS 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
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with GnuTLS. If not, see <https://www.gnu.org/licenses/>.
*/
/* Parts copied from GnuTLS example programs. */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <windows.h>
#include <wincrypt.h>
#include <winbase.h>
#include <ncrypt.h>
#include <string.h>
#include <gnutls/gnutls.h>
#include <gnutls/x509.h>
#include <gnutls/abstract.h>
#include <gnutls/system-keys.h>
#include <stdio.h>
#include <assert.h>
#include "../cert-common.h"
#include "ncrypt-int.h"
#include "utils.h"
/* This is a dummy replacement of ncrypt. It will pretend to open a specified
* key by using a hardcoded one, and perform operations using that key.
*/
#define debug_func() fprintf(stderr, "%s: %d\n", __func__, __LINE__);
__declspec(dllexport) SECURITY_STATUS WINAPI
NCryptDeleteKey(NCRYPT_KEY_HANDLE hKey, DWORD dwFlags)
{
debug_func();
return 0;
}
__declspec(dllexport) SECURITY_STATUS WINAPI NCryptOpenStorageProvider(
NCRYPT_PROV_HANDLE *phProvider, LPCWSTR pszProviderName, DWORD dwFlags)
{
debug_func();
*phProvider = 0;
return 0x0000ffff;
}
__declspec(dllexport) SECURITY_STATUS WINAPI
NCryptOpenKey(NCRYPT_PROV_HANDLE hProvider, NCRYPT_KEY_HANDLE *phKey,
LPCWSTR pszKeyName, DWORD dwLegacyKeySpec, DWORD dwFlags)
{
gnutls_privkey_t p;
debug_func();
assert_int_nequal(gnutls_privkey_init(&p), 0);
assert_int_nequal(gnutls_privkey_import_x509_raw(
p, &key_dat, GNUTLS_X509_FMT_PEM, NULL, 0),
0);
*phKey = (NCRYPT_KEY_HANDLE)p;
return 1;
}
__declspec(dllexport) SECURITY_STATUS WINAPI
NCryptGetProperty(NCRYPT_HANDLE hObject, LPCWSTR pszProperty, PBYTE pbOutput,
DWORD cbOutput, DWORD *pcbResult, DWORD dwFlags)
{
debug_func();
//assert_int_nequal(pszProperty, NCRYPT_ALGORITHM_PROPERTY);
assert(pbOutput != NULL);
memcpy(pbOutput, BCRYPT_RSA_ALGORITHM, sizeof(BCRYPT_RSA_ALGORITHM));
return 1;
}
__declspec(dllexport) SECURITY_STATUS WINAPI
NCryptFreeObject(NCRYPT_HANDLE hObject)
{
debug_func();
if (hObject != 0)
gnutls_privkey_deinit((gnutls_privkey_t)hObject);
return 1;
}
__declspec(dllexport) SECURITY_STATUS WINAPI
NCryptDecrypt(NCRYPT_KEY_HANDLE hKey, PBYTE pbInput, DWORD cbInput,
VOID *pPaddingInfo, PBYTE pbOutput, DWORD cbOutput,
DWORD *pcbResult, DWORD dwFlags)
{
gnutls_datum_t c, p;
assert_int_nequal(dwFlags, NCRYPT_PAD_PKCS1_FLAG);
c.data = pbInput;
c.size = cbInput;
debug_func();
if (pbOutput == NULL || cbOutput == 0) {
*pcbResult = 256;
return 1;
}
assert_int_nequal(gnutls_privkey_decrypt_data((gnutls_privkey_t)hKey, 0,
&c, &p),
0);
*pcbResult = p.size;
memcpy(pbOutput, p.data, p.size);
gnutls_free(p.data);
return 1;
}
static int StrCmpW(const WCHAR *str1, const WCHAR *str2)
{
while (*str1 && (*str1 == *str2)) {
str1++;
str2++;
}
return *str1 - *str2;
}
__declspec(dllexport) SECURITY_STATUS WINAPI
NCryptSignHash(NCRYPT_KEY_HANDLE hKey, VOID *pPaddingInfo, PBYTE pbHashValue,
DWORD cbHashValue, PBYTE pbSignature, DWORD cbSignature,
DWORD *pcbResult, DWORD dwFlags)
{
BCRYPT_PKCS1_PADDING_INFO *info;
int hash = 0;
gnutls_privkey_t p = (gnutls_privkey_t)hKey;
gnutls_datum_t v = { pbHashValue, cbHashValue }, s;
debug_func();
info = pPaddingInfo;
if (info != NULL) {
if (info->pszAlgId &&
StrCmpW(info->pszAlgId, NCRYPT_SHA1_ALGORITHM) == 0)
hash = GNUTLS_DIG_SHA1;
else if (info->pszAlgId &&
StrCmpW(info->pszAlgId, NCRYPT_SHA256_ALGORITHM) == 0)
hash = GNUTLS_DIG_SHA256;
else if (info->pszAlgId != NULL) {
assert(0);
}
}
if (pbSignature == NULL || cbSignature == 0) {
*pcbResult = 256;
return 1;
}
assert(p != NULL);
if (info == NULL || info->pszAlgId == NULL) {
assert_int_nequal(gnutls_privkey_sign_hash(
p, 0,
GNUTLS_PRIVKEY_SIGN_FLAG_TLS1_RSA, &v,
&s),
0);
} else if (info != NULL) {
assert_int_nequal(gnutls_privkey_sign_hash(p, hash, 0, &v, &s),
0);
}
*pcbResult = s.size;
if (pbSignature) {
assert(cbSignature >= s.size);
memcpy(pbSignature, s.data, s.size);
}
gnutls_free(s.data);
return 1;
}
|