push 92ef5b88da02911741c0a2f56030fd2e20189321
[wine/hacks.git] / dlls / rsaenh / implglue.h
blob597ca1ebd1cd8ba335339a8890ae9a5c771b11ea
1 /*
2 * dlls/rsaenh/implglue.h
3 * Glueing the RSAENH specific code to the crypto library
5 * Copyright (c) 2004 Michael Jung
7 * based on code by Mike McCormack and David Hammerton
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
24 #ifndef __WINE_IMPLGLUE_H
25 #define __WINE_IMPLGLUE_H
27 #include "tomcrypt.h"
29 /* Next typedef copied from dlls/advapi32/crypt_md4.c */
30 typedef struct tagMD4_CTX {
31 unsigned int buf[4];
32 unsigned int i[2];
33 unsigned char in[64];
34 unsigned char digest[16];
35 } MD4_CTX;
37 /* Next typedef copied from dlls/advapi32/crypt_md5.c */
38 typedef struct tagMD5_CTX
40 unsigned int i[2];
41 unsigned int buf[4];
42 unsigned char in[64];
43 unsigned char digest[16];
44 } MD5_CTX;
46 /* Next typedef copied form dlls/advapi32/crypt_sha.c */
47 typedef struct tagSHA_CTX
49 ULONG Unknown[6];
50 ULONG State[5];
51 ULONG Count[2];
52 UCHAR Buffer[64];
53 } SHA_CTX, *PSHA_CTX;
55 typedef union tagHASH_CONTEXT {
56 md2_state md2;
57 MD4_CTX md4;
58 MD5_CTX md5;
59 SHA_CTX sha;
60 } HASH_CONTEXT;
62 typedef union tagKEY_CONTEXT {
63 rc2_key rc2;
64 des_key des;
65 des3_key des3;
66 prng_state rc4;
67 rsa_key rsa;
68 } KEY_CONTEXT;
70 BOOL init_hash_impl(ALG_ID aiAlgid, HASH_CONTEXT *pHashContext);
71 BOOL update_hash_impl(ALG_ID aiAlgid, HASH_CONTEXT *pHashContext, CONST BYTE *pbData,
72 DWORD dwDataLen);
73 BOOL finalize_hash_impl(ALG_ID aiAlgid, HASH_CONTEXT *pHashContext, BYTE *pbHashValue);
74 BOOL duplicate_hash_impl(ALG_ID aiAlgid, CONST HASH_CONTEXT *pSrcHashContext,
75 HASH_CONTEXT *pDestHashContext);
77 BOOL new_key_impl(ALG_ID aiAlgid, KEY_CONTEXT *pKeyContext, DWORD dwKeyLen);
78 BOOL free_key_impl(ALG_ID aiAlgid, KEY_CONTEXT *pKeyContext);
79 BOOL setup_key_impl(ALG_ID aiAlgid, KEY_CONTEXT *pKeyContext, DWORD dwKeyLen, DWORD dwSaltLen,
80 BYTE *abKeyValue);
81 BOOL duplicate_key_impl(ALG_ID aiAlgid, CONST KEY_CONTEXT *pSrcKeyContext,
82 KEY_CONTEXT *pDestKeyContext);
84 /* dwKeySpec is optional for symmetric key algorithms */
85 BOOL encrypt_block_impl(ALG_ID aiAlgid, DWORD dwKeySpec, KEY_CONTEXT *pKeyContext, CONST BYTE *pbIn, BYTE *pbOut,
86 DWORD enc);
87 BOOL encrypt_stream_impl(ALG_ID aiAlgid, KEY_CONTEXT *pKeyContext, BYTE *pbInOut, DWORD dwLen);
89 BOOL export_public_key_impl(BYTE *pbDest, const KEY_CONTEXT *pKeyContext, DWORD dwKeyLen,
90 DWORD *pdwPubExp);
91 BOOL import_public_key_impl(CONST BYTE *pbSrc, KEY_CONTEXT *pKeyContext, DWORD dwKeyLen,
92 DWORD dwPubExp);
93 BOOL export_private_key_impl(BYTE *pbDest, const KEY_CONTEXT *pKeyContext, DWORD dwKeyLen,
94 DWORD *pdwPubExp);
95 BOOL import_private_key_impl(CONST BYTE* pbSrc, KEY_CONTEXT *pKeyContext, DWORD dwKeyLen,
96 DWORD dwPubExp);
98 BOOL gen_rand_impl(BYTE *pbBuffer, DWORD dwLen);
100 #endif /* __WINE_IMPLGLUE_H */