blowfish.h

来自「vc环境下的pgp源码」· C头文件 代码 · 共 28 行

H
28
字号
/*____________________________________________________________________________
	Copyright (C) 1996-1999 Network Associates, Inc.
	All rights reserved.

	$Id: blowfish.h,v 1.3 1999/03/10 02:31:38 heller Exp $
____________________________________________________________________________*/
#ifndef BLOWFISH_H
#define BLOWFISH_H

#ifdef __cplusplus
extern "C" {
#endif

#include "PGPfone.h"

#define MAXKEYBYTES 56		/* 448 bits */

void	BlowfishDecipher(ulong *sxl, ulong *sxr, ulong *dxl, ulong *dxr, ulong *P, ulong **S);
void	BlowfishEncipher(ulong *sxl, ulong *sxr, ulong *dxl, ulong *dxr, ulong *P, ulong **S);
void	BlowfishInit(uchar *key, short keybytes, ulong **newP, ulong ***newS);
void	BlowfishDone(ulong *P, ulong **S);

#ifdef __cplusplus
}
#endif

#endif	// BLOWFISH_H

⌨️ 快捷键说明

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