Skip to Content.
Sympa Menu

perfsonar-dev - perfsonar: r3013 - branches/saslca/src/edu/psu/sasl_ca

Subject: perfsonar development work

List archive

perfsonar: r3013 - branches/saslca/src/edu/psu/sasl_ca


Chronological Thread 
  • From:
  • To:
  • Subject: perfsonar: r3013 - branches/saslca/src/edu/psu/sasl_ca
  • Date: Wed, 31 Oct 2007 05:32:08 -0400

Author: rodriguez
Date: 2007-10-31 05:32:07 -0400 (Wed, 31 Oct 2007)
New Revision: 3013

Modified:
branches/saslca/src/edu/psu/sasl_ca/ClientProtocolHandler.java
Log:
Removing an strange piece of code (writting the cert to the file /tmp/foo)

Modified: branches/saslca/src/edu/psu/sasl_ca/ClientProtocolHandler.java
===================================================================
--- branches/saslca/src/edu/psu/sasl_ca/ClientProtocolHandler.java
2007-10-31 08:43:42 UTC (rev 3012)
+++ branches/saslca/src/edu/psu/sasl_ca/ClientProtocolHandler.java
2007-10-31 09:32:07 UTC (rev 3013)
@@ -710,14 +710,14 @@
// decode the cert.
byte[] decodedCert =
Base64.decode(encodedCert);

- try {
+/* try {
java.io.FileOutputStream fos
= new java.io.FileOutputStream(
"/tmp/foo");
fos.write(decodedCert);
fos.close();
} catch (Exception ex) {
logger.error("Error writing
cert bytes to /tmp/foo");
- }
+ } */

X509Certificate tempCert =
(X509Certificate) this.certFactory

.generateCertificate(new ByteArrayInputStream(



  • perfsonar: r3013 - branches/saslca/src/edu/psu/sasl_ca, svnlog, 10/31/2007

Archive powered by MHonArc 2.6.16.

Top of Page