source: trunk/src/advapi32/crypt.cpp@ 2216

Last change on this file since 2216 was 2216, checked in by sandervl, 26 years ago

JW's crypto stubs added

File size: 1.3 KB
Line 
1/* $Id: crypt.cpp,v 1.2 1999-12-27 18:44:59 sandervl Exp $ */
2/*
3 * dlls/advapi32/crypt.c
4 */
5
6#include <os2win.h>
7#include <stdlib.h>
8#include <stdarg.h>
9#include <string.h>
10#include <odinwrap.h>
11#include <misc.h>
12#include "wincrypt.h"
13/*
14#include "windef.h"
15#include "winerror.h"
16#include "wincrypt.h"
17#include "debugtools.h"
18*/
19
20ODINDEBUGCHANNEL(ADVAPI32-CRYPT)
21
22/******************************************************************************
23 * CryptAcquireContextA
24 * Acquire a crypto provider context handle.
25 *
26 * PARAMS
27 * phProv: Pointer to HCRYPTPROV for the output.
28 * pszContainer: FIXME (unknown)
29 * pszProvider: FIXME (unknown)
30 * dwProvType: Crypto provider type to get a handle.
31 * dwFlags: flags for the operation
32 *
33 * RETURNS TRUE on success, FALSE on failure.
34 */
35
36BOOL WINAPI CryptAcquireContextA( HCRYPTPROV *phProv, LPCSTR pszContainer,
37 LPCSTR pszProvider, DWORD dwProvType, DWORD dwFlags)
38{
39 dprintf(("(%p, %s, %s, %ld, %08lx): not implemented.\n", phProv, pszContainer,
40 pszProvider, dwProvType, dwFlags));
41 return FALSE;
42}
43
44/******************************************************************************
45 * CryptSetKeyParam
46 */
47BOOL WINAPI CryptSetKeyParam( HCRYPTKEY hKey, DWORD dwParam, BYTE *pbData, DWORD dwFlags)
48{
49 dprintf(("(%lx, %lx, %p, %lx): not implemented.\n", hKey, dwParam, pbData, dwFlags));
50 return FALSE;
51}
52
Note: See TracBrowser for help on using the repository browser.