Remove debug printf
[heimdal.git] / lib / hcrypto / evp-crypt.c
blob8b7ea3050990a171574cf2a80ed12cd03f88f432
1 /*
2 * Copyright (c) 2008 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
4 * All rights reserved.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the Institute nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
34 /* Windows crypto provider plugin, sample */
36 #include <config.h>
38 #define HC_DEPRECATED
40 #include <sys/types.h>
41 #include <stdio.h>
42 #include <stdlib.h>
43 #include <string.h>
44 #include <assert.h>
46 #include <evp.h>
48 #include <crypt.h>
51 static HCRYPTPROV hCryptProv = NULL;
57 struct generic_key {
58 HCRYPTKEY *hKey;
61 static int
62 generic_cbc_do_cipher(EVP_CIPHER_CTX *ctx,
63 unsigned char *out,
64 const unsigned char *in,
65 unsigned int size)
67 struct generic_key *gk = ctx->cipher_data;
68 BOOL bResult;
69 DWORD length = size;
71 bResult = CryptSetKeyParam(gk->hKey, KP_IV, ctx->iv, 0);
72 _ASSERT(bResult);
74 memcpy(out, in, size);
76 if (ctx->encrypt)
77 bResult = CryptEncrypt(gk->hKey, 0, TRUE, 0, out, &length, size);
78 else
79 bResult = CryptDecrypt(gk->hKey, 0, TRUE, 0, out, &length);
80 _ASSERT(bResult);
82 return 1;
85 static int
86 generic_cleanup(EVP_CIPHER_CTX *ctx)
88 struct generic_key *gk = ctx->cipher_data;
89 CryptDestroyKey(gk->hKey);
90 gk->hKey = NULL;
91 return 1;
94 static HCRYPTKEY
95 import_key(int alg, const unsigned char *key, size_t keylen)
97 struct {
98 BLOBHEADER hdr;
99 DWORD len;
100 BYTE key[1];
101 } *key_blob;
102 size_t bloblen = sizeof(*key_blob) - 1 + keylen;
104 key_blob = malloc(bloblen);
106 key_blob->hdr.bType = PLAINTEXTKEYBLOB;
107 key_blob->hdr.bVersion = CUR_BLOB_VERSION;
108 key_blob->hdr.reserved = 0;
109 key_blob->hdr.aiKeyAlg = alg;
110 key_blob->len = 24;
111 memcpy(key_blob->key, key, keylen);
113 bResult = CryptImportKey(hCryptProv,
114 (void *)key_blob, bloblen, 0, 0,
115 &gk->hKey);
116 free(key_blob);
117 _ASSERT(bResult);
119 return hKey;
122 static int
123 crypto_des_ede3_cbc_init(EVP_CIPHER_CTX *ctx,
124 const unsigned char * key,
125 const unsigned char * iv,
126 int encp)
128 struct generic_key *gk = ctx->cipher_data;
129 DWORD paramData;
131 gk->hKey = import_key(CALG_3DES,
132 key->key->keyvalue.data,
133 key->key->keyvalue.len);
135 return 1;
139 * The tripple DES cipher type (Micrsoft crypt provider)
141 * @return the DES-EDE3-CBC EVP_CIPHER pointer.
143 * @ingroup hcrypto_evp
146 const EVP_CIPHER *
147 EVP_wincrypt_des_ede3_cbc(void)
149 static const EVP_CIPHER des_ede3_cbc = {
154 EVP_CIPH_CBC_MODE,
155 crypto_des_ede3_cbc_init,
156 generic_cbc_do_cipher,
157 generic_cleanup,
158 sizeof(struct generic_key),
159 NULL,
160 NULL,
161 NULL,
162 NULL
164 return &des_ede3_cbc;
171 struct generic_hash {
172 HCRYPTHASH hHash;
175 static void
176 crypto_md5_init(struct generic_hash *m);
178 BOOL bResult;
179 bResult = CryptCreateHash(hCryptProv, CALG_MD5, 0, 0, &m->hHash);
180 _ASSERT(bResult);
183 static void
184 generic_hash_update (struct generic_hash *m, const void *p, size_t len)
186 BOOL bResult;
187 bResult = CryptHashData(m->hHash, data, ( DWORD )len, 0 );
188 _ASSERT(bResult);
191 static void
192 generic_hash_final (void *res, struct generic_hash *m);
194 DWORD length;
195 BOOL bResult;
196 bResult = CryptGetHashParam(m->hHash, HP_HASHVAL, res, &length, 0)
197 _ASSERT(bResult);
200 static void
201 generic_hash_cleanup(struct generic_hash *m)
203 CryptDestroyHash(m->hHash);
204 m->hHash = NULL;
207 const EVP_MD *
208 EVP_wincrypt_md5(void)
210 static const struct hc_evp_md md5 = {
213 sizeof(struct generic_hash),
214 (hc_evp_md_init)crypto_md5_init,
215 (hc_evp_md_update)generic_hash_update,
216 (hc_evp_md_final)generic_hash_final,
217 (hc_evp_md_cleanup)generic_hash_cleanup
219 return &md5;