mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
649 B
32 lines
649 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1992 - 1995.
|
|
//
|
|
// File: sign.h
|
|
//
|
|
// Contents:
|
|
//
|
|
// Classes:
|
|
//
|
|
// Functions:
|
|
//
|
|
// History: 10-30-95 TerenceS created
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#ifndef __SIGN_H__
|
|
#define __SIGN_H__
|
|
|
|
BOOL PctSign(PPctContext pContext,
|
|
PUCHAR pData,
|
|
DWORD dwDataLen,
|
|
PUCHAR pOutBuf,
|
|
DWORD *dwBufLen);
|
|
|
|
BOOL PctVerifySign(PPctContext pContext,
|
|
PVOID pCert,
|
|
PUCHAR pSigData,
|
|
DWORD dwSigLen);
|
|
|
|
#endif
|