bnsieve.h

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

H
39
字号
/*
 * bnsieve.h - Trial division for prime finding.
 *
 * This is generally not intended for direct use by a user of the library;
 * the bnprime.c and dhprime.c functions. are more likely to be used.
 * However, a special application may need these.
 *
 * $Id: bnsieve.h,v 1.1 1997/12/14 11:30:39 wprice Exp $
 */

#ifndef Included_bnsieve_h
#define Included_bnsieve_h

PGP_BEGIN_C_DECLARATIONS

#include "pgpBase.h"

#include "pgpOpaqueStructs.h"

/* Remove multiples of a single number from the sieve */
void sieveSingle(unsigned char *array, unsigned size, unsigned start,
	unsigned step);

/* Build a sieve starting at the number and incrementing by "step". */
int sieveBuild(unsigned char *array, unsigned size,
	BigNum const *bn, unsigned step, unsigned dbl);

/* Similar, but uses a >16-bit step size */
int sieveBuildBig(unsigned char *array, unsigned size,
	BigNum const *bn, BigNum const *step, unsigned dbl);

/* Return the next bit set in the sieve (or 0 on failure) */
unsigned sieveSearch(unsigned char const *array, unsigned size,
	unsigned start);

PGP_END_C_DECLARATIONS

#endif /* Included_bnsieve_h */

⌨️ 快捷键说明

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