4898794edd81be5285ea6e544acbedeaeb31bf78
max
  Tue Nov 23 08:10:57 2021 -0800
Fixing pointers to README file for license in all source code files. refs #27614

diff --git src/hg/gsid/pwdtest/paypalSignEncrypt.h src/hg/gsid/pwdtest/paypalSignEncrypt.h
index 984c1bb..83cec6f 100644
--- src/hg/gsid/pwdtest/paypalSignEncrypt.h
+++ src/hg/gsid/pwdtest/paypalSignEncrypt.h
@@ -1,34 +1,34 @@
 /* paypalSignEncrypt.h - routines to sign and encrypt button data using openssl */
 
 /* Copyright (C) 2007 The Regents of the University of California 
- * See README in this or parent directory for licensing information. */
+ * See kent/LICENSE or http://genome.ucsc.edu/license/ for licensing information. */
 
 #ifndef PPSIGNENCRYPT_H
 #define PPSIGNENCRYPT_H
 
 
 #include "common.h"
 
 #include "openssl/buffer.h"
 #include "openssl/bio.h"
 #include "openssl/sha.h"
 #include "openssl/rand.h"
 #include "openssl/err.h"
 #include "openssl/rsa.h"
 #include "openssl/evp.h"
 #include "openssl/x509.h"
 #include "openssl/x509v3.h"
 #include "openssl/pkcs7.h"
 #include "openssl/pem.h"
 
 /* The following code comes directly from PayPal's ButtonEncyption.cpp file, and has been
    modified only to work with C
 */
 
 char* sign_and_encrypt(const char *data, RSA *rsa, X509 *x509, X509 *PPx509, bool verbose);
 /* sign and encrypt button data for safe delivery to paypal */
 
 char* sign_and_encryptFromFiles(const char *data, char *keyFile, char *certFile, char *ppCertFile, bool verbose);
 /* sign and encrypt button data for safe delivery to paypal, use keys/certs in specified filenames */
 
 #endif