You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by kw...@apache.org on 2017/03/18 14:39:43 UTC

svn commit: r1787563 - /httpcomponents/httpclient/branches/4.5.x/httpclient/src/main/java/org/apache/http/impl/auth/NTLMEngineImpl.java

Author: kwright
Date: Sat Mar 18 14:39:43 2017
New Revision: 1787563

URL: http://svn.apache.org/viewvc?rev=1787563&view=rev
Log:
HTTPCLIENT-1834: Missed a second constructor method.

Modified:
    httpcomponents/httpclient/branches/4.5.x/httpclient/src/main/java/org/apache/http/impl/auth/NTLMEngineImpl.java

Modified: httpcomponents/httpclient/branches/4.5.x/httpclient/src/main/java/org/apache/http/impl/auth/NTLMEngineImpl.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpclient/branches/4.5.x/httpclient/src/main/java/org/apache/http/impl/auth/NTLMEngineImpl.java?rev=1787563&r1=1787562&r2=1787563&view=diff
==============================================================================
--- httpcomponents/httpclient/branches/4.5.x/httpclient/src/main/java/org/apache/http/impl/auth/NTLMEngineImpl.java (original)
+++ httpcomponents/httpclient/branches/4.5.x/httpclient/src/main/java/org/apache/http/impl/auth/NTLMEngineImpl.java Sat Mar 18 14:39:43 2017
@@ -385,6 +385,16 @@ final class NTLMEngineImpl implements NT
             this.timestamp = timestamp;
         }
 
+        @Deprecated
+        public CipherGen(final String domain,
+            final String user,
+            final String password,
+            final byte[] challenge,
+            final String target,
+            final byte[] targetInformation) {
+            this(RND_GEN, System.currentTimeMillis(), domain, user, password, challenge, target, targetInformation);
+        }
+
         public CipherGen(final Random random, final long currentTime,
             final String domain,
             final String user,