You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is caused by different private key format produced by certificate request created by openssl >= 1.x.x New private key format is incompatible with ssl-proxies-2.0.6.jar.
It is possible to convert new key format into old format using (at least on SL6)
importjava.io.IOException;
importorg.globus.gsi.CredentialException;
publicclassTestSSL {
publicstaticvoidmain(String[] args) throwsCredentialException, IOException {
System.out.println("Start");
neworg.globus.gsi.X509Credential("mycert.pem", "mykey.pem.old");
System.out.println("Old key was read OK");
neworg.globus.gsi.X509Credential("mycert.pem", "mykey.pem.new");
System.out.println("We'll not get here with current jglobus version 2.0.6");
}
}
The text was updated successfully, but these errors were encountered:
When I create certificate request with openssl >= 1.x.x (e.g. on SL6)
where content of my.cfg is following
than I'm not able to load private key using function:
It is caused by different private key format produced by certificate request created by openssl >= 1.x.x New private key format is incompatible with ssl-proxies-2.0.6.jar.
It is possible to convert new key format into old format using (at least on SL6)
and old format to new format using
and than one can test this issue e.g. by
The text was updated successfully, but these errors were encountered: