Bugzilla – Bug 4323
Public utility method to read X.509 certificate string
Last modified: 2006-04-06 15:23:02
You need to log in before you can comment on or make changes to this bug.
This is an enhancement request. Please consider making this method a public method: org.globus.gsi.CertUtil#readCertificate(BufferedReader) In the GridShib project, to process an X.509 certificate passed as an HTTP parameter, we are using the following incantation: X509Certificate cert = readCertificate(new BufferedReader(new StringReader(certStr))); where certStr is the value of the HTTP parameter. Since readCertificate in Java CoG is a private method, this only works if we copy the method definition to our codebase.
Added Jarek
Change committed to trunk.