esrccryptoapi.h

来自「手机加密通话软件」· C头文件 代码 · 共 35 行

H
35
字号
/* Copyright 2001,2002,2003 NAH6 BV
 * All Rights Reserved
 *
 *  $Header: /var/lib/cvs/secphone/ui/rng/sources/esrcCryptoApi.h,v 1.3 2003/11/21 12:39:24 itsme Exp $
 *
 *
 */


#ifndef __ESRCCRYPTOAPI_H__

#include <windows.h>    // nescesary for wincrypt
#include <wincrypt.h>

#include "fnaEntropySource.h"

class esrcCryptoApi : public EntropySource {
public:
    esrcCryptoApi();
    virtual ~esrcCryptoApi();

    virtual void HandleSource();

    virtual bool IsPolledSource() const;

    virtual const char* name() const { return "esrcCryptoApi"; }

private:
    HCRYPTPROV m_hProv;
};

#define __ESRCCRYPTOAPI_H__
#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?