Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for toBase64String (0.17 sec)

  1. src/main/java/jcifs/http/NtlmHttpURLConnection.java

                    return; // no NTLM
                int attempt = 0;
                while ( attempt < MAX_REDIRECTS ) {
                    this.connection.setRequestProperty(this.authProperty, this.authMethod + ' ' + Base64.toBase64String(type1.toByteArray()));
                    this.connection.connect(); // send type 1
                    response = parseResponseCode();
                    if ( response != HTTP_UNAUTHORIZED && response != HTTP_PROXY_AUTH ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 25.5K bytes
    - Viewed (0)
Back to top