home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / crypl200.zip / BNLIB / JACOBI.H < prev    next >
C/C++ Source or Header  |  1996-05-16  |  200b  |  8 lines

  1. /*
  2.  * For a small (usually prime, but not necessarily) prime p,
  3.  * Return Jacobi(p,bn), which is -1, 0 or +1.
  4.  * bn must be odd.
  5.  */
  6. struct BigNum;
  7. int bnJacobiQ(unsigned p, struct BigNum const *bn);
  8.