Author: rjung Date: Sun May 24 13:13:11 2015 New Revision: 1681447 URL: http://svn.apache.org/r1681447 Log: Incompatible change: SSL.generateRSATempKey() and SSL.loadDSATempKey() had to go.
Modified: tomcat/native/branches/1.1.x/native/src/ssl.c tomcat/native/branches/1.1.x/xdocs/miscellaneous/changelog.xml Modified: tomcat/native/branches/1.1.x/native/src/ssl.c URL: http://svn.apache.org/viewvc/tomcat/native/branches/1.1.x/native/src/ssl.c?rev=1681447&r1=1681446&r2=1681447&view=diff ============================================================================== --- tomcat/native/branches/1.1.x/native/src/ssl.c (original) +++ tomcat/native/branches/1.1.x/native/src/ssl.c Sun May 24 13:13:11 2015 @@ -1072,6 +1072,24 @@ TCN_IMPLEMENT_CALL(void, SSL, setPasswor TCN_FREE_CSTRING(password); } +/* No longer supported */ +TCN_IMPLEMENT_CALL(jboolean, SSL, generateRSATempKey)(TCN_STDARGS, jint idx) +{ + UNREFERENCED_STDARGS; + UNREFERENCED(idx); + return JNI_FALSE; +} + +/* No longer supported */ +TCN_IMPLEMENT_CALL(jboolean, SSL, loadDSATempKey)(TCN_STDARGS, jint idx, + jstring file) +{ + UNREFERENCED_STDARGS; + UNREFERENCED(idx); + UNREFERENCED(file); + return JNI_FALSE; +} + TCN_IMPLEMENT_CALL(jstring, SSL, getLastError)(TCN_STDARGS) { char buf[256]; Modified: tomcat/native/branches/1.1.x/xdocs/miscellaneous/changelog.xml URL: http://svn.apache.org/viewvc/tomcat/native/branches/1.1.x/xdocs/miscellaneous/changelog.xml?rev=1681447&r1=1681446&r2=1681447&view=diff ============================================================================== --- tomcat/native/branches/1.1.x/xdocs/miscellaneous/changelog.xml (original) +++ tomcat/native/branches/1.1.x/xdocs/miscellaneous/changelog.xml Sun May 24 13:13:11 2015 @@ -45,6 +45,10 @@ by embedding custom parameters in the certificate file configured with <code>SSLCertificateFile</code>. (rjung) </update> + <update> + The APIs SSL.generateRSATempKey() and SSL.loadDSATempKey() + are no longer supported. (rjung) + </update> <fix> Use APR pool pre-cleanup API if available to reduce possibility of JVM core on shutdown. (mturk, rjung) --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org