src/hg/gsid/gsidMember/paypalSignEncrypt.h 1.3
1.3 2009/04/14 18:14:44 galt
oops cannot mix malloc and freez
Index: src/hg/gsid/gsidMember/paypalSignEncrypt.h
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/gsid/gsidMember/paypalSignEncrypt.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -b -B -U 1000000 -r1.2 -r1.3
--- src/hg/gsid/gsidMember/paypalSignEncrypt.h 14 Apr 2009 07:20:02 -0000 1.2
+++ src/hg/gsid/gsidMember/paypalSignEncrypt.h 14 Apr 2009 18:14:44 -0000 1.3
@@ -1,15 +1,15 @@
/* paypalSignEncrypt.h - routines to sign and encrypt button data using openssl */
#ifndef PPSIGNENCRYPT_H
#define PPSIGNENCRYPT_H
/* The following code comes directly from PayPal's ButtonEncyption.cpp file, and has been
modified only to work with C
*/
char* sign_and_encryptFromFiles(
const char *data, char *keyFile, char *certFile, char *ppCertFile, int verbose);
-/* sign and encrypt button data for safe delivery to paypal, use keys/certs in specified filenames */
+/* sign and encrypt button data for safe delivery to paypal, use keys/certs in specified filenames. Free return value with free(). */
#endif