bnjacobi.h
来自「著名的加密软件的应用于电子邮件中」· C头文件 代码 · 共 28 行
H
28 行
/*
* bnjacobi.h
*
* Copyright (C) 1995-1997 Pretty Good Privacy, Inc. All rights reserved.
*
* For a small (usually prime, but not necessarily) prime p,
* Return Jacobi(p,bn), which is -1, 0 or +1.
* bn must be odd.
*
* $Id: bnjacobi.h,v 1.3.2.1 1997/06/07 09:49:38 mhw Exp $
*/
#ifdef __cplusplus
extern "C" {
#endif
struct BigNum;
#ifndef TYPE_BIGNUM
#define TYPE_BIGNUM 1
typedef struct BigNum BigNum;
#endif
int BNExport bnJacobiQ(unsigned p, struct BigNum const *bn);
#ifdef __cplusplus
}
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?