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

  1. struct BigNum;
  2.  
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6.  
  7. /* Generate a Sophie Germain prime */
  8. int germainPrimeGen(struct BigNum *bn, int (*f)(void *arg, int c), void *arg);
  9.  
  10. #ifdef __cplusplus
  11. }
  12. #endif
  13.