Author: rjung Date: Fri May 22 18:39:45 2015 New Revision: 1681182 URL: http://svn.apache.org/r1681182 Log: Deprecate tcnative function removed from trunk in r1681181.
Modified: tomcat/tc8.0.x/trunk/java/org/apache/tomcat/jni/SSL.java Modified: tomcat/tc8.0.x/trunk/java/org/apache/tomcat/jni/SSL.java URL: http://svn.apache.org/viewvc/tomcat/tc8.0.x/trunk/java/org/apache/tomcat/jni/SSL.java?rev=1681182&r1=1681181&r2=1681182&view=diff ============================================================================== --- tomcat/tc8.0.x/trunk/java/org/apache/tomcat/jni/SSL.java (original) +++ tomcat/tc8.0.x/trunk/java/org/apache/tomcat/jni/SSL.java Fri May 22 18:39:45 2015 @@ -343,6 +343,10 @@ public final class SSL { * You can use a low priority thread to generate them on the fly. * @param idx temporary key index. */ + /** + * @deprecated Only useful in combination with EXPORT Cipher + */ + @Deprecated public static native boolean generateRSATempKey(int idx); /** @@ -358,6 +362,10 @@ public final class SSL { * @param idx temporary key index. * @param file File containing DH params. */ + /** + * @deprecated Now automatically loaded from certificate file + */ + @Deprecated public static native boolean loadDSATempKey(int idx, String file); /** --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org