home *** CD-ROM | disk | FTP | other *** search
/ PC-Online 1998 February / PCOnline_02_1998.iso / filesbbs / os2 / pgp263.arj / PGP263I.SRC / PGP263II.ZIP / src / rsaglue.h < prev    next >
C/C++ Source or Header  |  1994-07-15  |  566b  |  18 lines

  1. /* rsaglue.h - Glue routines for RSA encryption and decryption */
  2.  
  3. extern char signon_legalese[];
  4.  
  5. /* Declarations */
  6. int
  7. rsa_public_encrypt(unitptr outbuf, byteptr inbuf, short bytes,
  8.      unitptr E, unitptr N);
  9. int
  10. rsa_private_encrypt(unitptr outbuf, byteptr inbuf, short bytes,
  11.      unitptr E, unitptr D, unitptr P, unitptr Q, unitptr U, unitptr N);
  12. int
  13. rsa_public_decrypt(byteptr outbuf, unitptr inbuf,
  14.     unitptr E, unitptr N);
  15. int
  16. rsa_private_decrypt(byteptr outbuf, unitptr inbuf,
  17.      unitptr E, unitptr D, unitptr P, unitptr Q, unitptr U, unitptr N);
  18.