llrsa.h

来自「rsa加密算法很好的例子」· C头文件 代码 · 共 30 行

H
30
字号
// LLrsa.h: interface for the CLLrsa class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_LLRSA_H__A68F5719_7C36_4389_9308_D27FDB8A9ABB__INCLUDED_)
#define AFX_LLRSA_H__A68F5719_7C36_4389_9308_D27FDB8A9ABB__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#include "LLrsaNode.h"

class CLLrsa  
{
public:
	void print();
	CLLrsa();
	virtual ~CLLrsa();

	CLLrsaNode* head;
	CLLrsaNode* tail;

	bool insert(long,long);

	long getNextToAdd(long&,long,long);
};

#endif // !defined(AFX_LLRSA_H__A68F5719_7C36_4389_9308_D27FDB8A9ABB__INCLUDED_)

⌨️ 快捷键说明

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