public class sun.net.www.protocol.http.ntlm.NTLMAuthentication extends sun.net.www.protocol.http.AuthenticationInfo
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: sun.net.www.protocol.http.ntlm.NTLMAuthentication
  super_class: sun.net.www.protocol.http.AuthenticationInfo
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 170

  private static final sun.net.www.protocol.http.ntlm.NTLMAuthenticationCallback NTLMAuthCallback;
    descriptor: Lsun/net/www/protocol/http/ntlm/NTLMAuthenticationCallback;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private java.lang.String hostname;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private static final java.lang.String defaultDomain;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final boolean ntlmCache;
    descriptor: Z
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  java.net.PasswordAuthentication pw;
    descriptor: Ljava/net/PasswordAuthentication;
    flags: (0x0000) 

  com.sun.security.ntlm.Client client;
    descriptor: Lcom/sun/security/ntlm/Client;
    flags: (0x0000) 

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=2, args_size=0
         0: .line 76
            invokestatic sun.net.www.protocol.http.ntlm.NTLMAuthenticationCallback.getNTLMAuthenticationCallback:()Lsun/net/www/protocol/http/ntlm/NTLMAuthenticationCallback;
         1: .line 75
            putstatic sun.net.www.protocol.http.ntlm.NTLMAuthentication.NTLMAuthCallback:Lsun/net/www/protocol/http/ntlm/NTLMAuthenticationCallback;
         2: .line 84
            invokestatic sun.security.action.GetPropertyAction.privilegedGetProperties:()Ljava/util/Properties;
            astore 0 /* props */
        start local 0 // java.util.Properties props
         3: .line 85
            aload 0 /* props */
            ldc "http.auth.ntlm.domain"
            ldc ""
            invokevirtual java.util.Properties.getProperty:(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
            putstatic sun.net.www.protocol.http.ntlm.NTLMAuthentication.defaultDomain:Ljava/lang/String;
         4: .line 86
            aload 0 /* props */
            ldc "jdk.ntlm.cache"
            ldc "true"
            invokevirtual java.util.Properties.getProperty:(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
            astore 1 /* ntlmCacheProp */
        start local 1 // java.lang.String ntlmCacheProp
         5: .line 87
            aload 1 /* ntlmCacheProp */
            invokestatic java.lang.Boolean.parseBoolean:(Ljava/lang/String;)Z
            putstatic sun.net.www.protocol.http.ntlm.NTLMAuthentication.ntlmCache:Z
        end local 1 // java.lang.String ntlmCacheProp
        end local 0 // java.util.Properties props
         6: .line 88
            return
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            3    6     0          props  Ljava/util/Properties;
            5    6     1  ntlmCacheProp  Ljava/lang/String;

  public static boolean supportsTransparentAuth();
    descriptor: ()Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 91
            iconst_0
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static boolean isTrustedSite(java.net.URL);
    descriptor: (Ljava/net/URL;)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.net.URL url
         0: .line 100
            getstatic sun.net.www.protocol.http.ntlm.NTLMAuthentication.NTLMAuthCallback:Lsun/net/www/protocol/http/ntlm/NTLMAuthenticationCallback;
            ifnull 2
         1: .line 101
            getstatic sun.net.www.protocol.http.ntlm.NTLMAuthentication.NTLMAuthCallback:Lsun/net/www/protocol/http/ntlm/NTLMAuthenticationCallback;
            aload 0 /* url */
            invokevirtual sun.net.www.protocol.http.ntlm.NTLMAuthenticationCallback.isTrustedSite:(Ljava/net/URL;)Z
            ireturn
         2: .line 102
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 0 // java.net.URL url
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0   url  Ljava/net/URL;
    MethodParameters:
      Name  Flags
      url   

  private void init0();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // sun.net.www.protocol.http.ntlm.NTLMAuthentication this
         0: .line 107
            aload 0 /* this */
         1: .line 108
            new sun.net.www.protocol.http.ntlm.NTLMAuthentication$1
            dup
            aload 0 /* this */
            invokespecial sun.net.www.protocol.http.ntlm.NTLMAuthentication$1.<init>:(Lsun/net/www/protocol/http/ntlm/NTLMAuthentication;)V
         2: .line 107
            invokestatic java.security.AccessController.doPrivileged:(Ljava/security/PrivilegedAction;)Ljava/lang/Object;
            checkcast java.lang.String
            putfield sun.net.www.protocol.http.ntlm.NTLMAuthentication.hostname:Ljava/lang/String;
         3: .line 119
            return
        end local 0 // sun.net.www.protocol.http.ntlm.NTLMAuthentication this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/net/www/protocol/http/ntlm/NTLMAuthentication;

  public void <init>(boolean, java.net.URL, java.net.PasswordAuthentication, java.lang.String);
    descriptor: (ZLjava/net/URL;Ljava/net/PasswordAuthentication;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=5
        start local 0 // sun.net.www.protocol.http.ntlm.NTLMAuthentication this
        start local 1 // boolean isProxy
        start local 2 // java.net.URL url
        start local 3 // java.net.PasswordAuthentication pw
        start local 4 // java.lang.String authenticatorKey
         0: .line 133
            aload 0 /* this */
            iload 1 /* isProxy */
            ifeq 1
            bipush 112
            goto 2
      StackMap locals:
      StackMap stack: uninitialized-this
         1: bipush 115
         2: .line 134
      StackMap locals: uninitialized-this int java.net.URL java.net.PasswordAuthentication java.lang.String
      StackMap stack: uninitialized-this int
            getstatic sun.net.www.protocol.http.AuthScheme.NTLM:Lsun/net/www/protocol/http/AuthScheme;
         3: .line 135
            aload 2 /* url */
         4: .line 136
            ldc ""
         5: .line 137
            aload 4 /* authenticatorKey */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.String
            invokespecial sun.net.www.protocol.http.AuthenticationInfo.<init>:(CLsun/net/www/protocol/http/AuthScheme;Ljava/net/URL;Ljava/lang/String;Ljava/lang/String;)V
         6: .line 138
            aload 0 /* this */
            aload 3 /* pw */
            invokevirtual sun.net.www.protocol.http.ntlm.NTLMAuthentication.init:(Ljava/net/PasswordAuthentication;)V
         7: .line 139
            return
        end local 4 // java.lang.String authenticatorKey
        end local 3 // java.net.PasswordAuthentication pw
        end local 2 // java.net.URL url
        end local 1 // boolean isProxy
        end local 0 // sun.net.www.protocol.http.ntlm.NTLMAuthentication this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    8     0              this  Lsun/net/www/protocol/http/ntlm/NTLMAuthentication;
            0    8     1           isProxy  Z
            0    8     2               url  Ljava/net/URL;
            0    8     3                pw  Ljava/net/PasswordAuthentication;
            0    8     4  authenticatorKey  Ljava/lang/String;
    MethodParameters:
                  Name  Flags
      isProxy           
      url               
      pw                
      authenticatorKey  

  private void init(java.net.PasswordAuthentication);
    descriptor: (Ljava/net/PasswordAuthentication;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=8, locals=8, args_size=2
        start local 0 // sun.net.www.protocol.http.ntlm.NTLMAuthentication this
        start local 1 // java.net.PasswordAuthentication pw
         0: .line 145
            aload 0 /* this */
            aload 1 /* pw */
            putfield sun.net.www.protocol.http.ntlm.NTLMAuthentication.pw:Ljava/net/PasswordAuthentication;
         1: .line 146
            aload 1 /* pw */
            invokevirtual java.net.PasswordAuthentication.getUserName:()Ljava/lang/String;
            astore 5 /* s */
        start local 5 // java.lang.String s
         2: .line 147
            aload 5 /* s */
            bipush 92
            invokevirtual java.lang.String.indexOf:(I)I
            istore 6 /* i */
        start local 6 // int i
         3: .line 148
            iload 6 /* i */
            iconst_m1
            if_icmpne 7
         4: .line 149
            aload 5 /* s */
            astore 2 /* username */
        start local 2 // java.lang.String username
         5: .line 150
            getstatic sun.net.www.protocol.http.ntlm.NTLMAuthentication.defaultDomain:Ljava/lang/String;
            astore 3 /* ntdomain */
        start local 3 // java.lang.String ntdomain
         6: .line 151
            goto 9
        end local 3 // java.lang.String ntdomain
        end local 2 // java.lang.String username
         7: .line 152
      StackMap locals: sun.net.www.protocol.http.ntlm.NTLMAuthentication java.net.PasswordAuthentication top top top java.lang.String int
      StackMap stack:
            aload 5 /* s */
            iconst_0
            iload 6 /* i */
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
            invokevirtual java.lang.String.toUpperCase:()Ljava/lang/String;
            astore 3 /* ntdomain */
        start local 3 // java.lang.String ntdomain
         8: .line 153
            aload 5 /* s */
            iload 6 /* i */
            iconst_1
            iadd
            invokevirtual java.lang.String.substring:(I)Ljava/lang/String;
            astore 2 /* username */
        start local 2 // java.lang.String username
         9: .line 155
      StackMap locals: sun.net.www.protocol.http.ntlm.NTLMAuthentication java.net.PasswordAuthentication java.lang.String java.lang.String top java.lang.String int
      StackMap stack:
            aload 1 /* pw */
            invokevirtual java.net.PasswordAuthentication.getPassword:()[C
            astore 4 /* password */
        start local 4 // char[] password
        10: .line 156
            aload 0 /* this */
            invokevirtual sun.net.www.protocol.http.ntlm.NTLMAuthentication.init0:()V
        11: .line 158
            ldc "ntlm.version"
            invokestatic sun.security.action.GetPropertyAction.privilegedGetProperty:(Ljava/lang/String;)Ljava/lang/String;
            astore 7 /* version */
        start local 7 // java.lang.String version
        12: .line 159
            aload 0 /* this */
            new com.sun.security.ntlm.Client
            dup
            aload 7 /* version */
            aload 0 /* this */
            getfield sun.net.www.protocol.http.ntlm.NTLMAuthentication.hostname:Ljava/lang/String;
            aload 2 /* username */
            aload 3 /* ntdomain */
            aload 4 /* password */
            invokespecial com.sun.security.ntlm.Client.<init>:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;[C)V
            putfield sun.net.www.protocol.http.ntlm.NTLMAuthentication.client:Lcom/sun/security/ntlm/Client;
        end local 7 // java.lang.String version
        13: .line 160
            goto 19
      StackMap locals: sun.net.www.protocol.http.ntlm.NTLMAuthentication java.net.PasswordAuthentication java.lang.String java.lang.String char[] java.lang.String int
      StackMap stack: com.sun.security.ntlm.NTLMException
        14: pop
        15: .line 162
            aload 0 /* this */
            new com.sun.security.ntlm.Client
            dup
            aconst_null
            aload 0 /* this */
            getfield sun.net.www.protocol.http.ntlm.NTLMAuthentication.hostname:Ljava/lang/String;
            aload 2 /* username */
            aload 3 /* ntdomain */
            aload 4 /* password */
            invokespecial com.sun.security.ntlm.Client.<init>:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;[C)V
            putfield sun.net.www.protocol.http.ntlm.NTLMAuthentication.client:Lcom/sun/security/ntlm/Client;
        16: .line 163
            goto 19
      StackMap locals:
      StackMap stack: com.sun.security.ntlm.NTLMException
        17: pop
        18: .line 165
            new java.lang.AssertionError
            dup
            ldc "Really?"
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        19: .line 168
      StackMap locals:
      StackMap stack:
            return
        end local 6 // int i
        end local 5 // java.lang.String s
        end local 4 // char[] password
        end local 3 // java.lang.String ntdomain
        end local 2 // java.lang.String username
        end local 1 // java.net.PasswordAuthentication pw
        end local 0 // sun.net.www.protocol.http.ntlm.NTLMAuthentication this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   20     0      this  Lsun/net/www/protocol/http/ntlm/NTLMAuthentication;
            0   20     1        pw  Ljava/net/PasswordAuthentication;
            5    7     2  username  Ljava/lang/String;
            9   20     2  username  Ljava/lang/String;
            6    7     3  ntdomain  Ljava/lang/String;
            8   20     3  ntdomain  Ljava/lang/String;
           10   20     4  password  [C
            2   20     5         s  Ljava/lang/String;
            3   20     6         i  I
           12   13     7   version  Ljava/lang/String;
      Exception table:
        from    to  target  type
          11    13      14  Class com.sun.security.ntlm.NTLMException
          15    16      17  Class com.sun.security.ntlm.NTLMException
    MethodParameters:
      Name  Flags
      pw    

  public void <init>(boolean, java.lang.String, int, java.net.PasswordAuthentication, java.lang.String);
    descriptor: (ZLjava/lang/String;ILjava/net/PasswordAuthentication;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=6, args_size=6
        start local 0 // sun.net.www.protocol.http.ntlm.NTLMAuthentication this
        start local 1 // boolean isProxy
        start local 2 // java.lang.String host
        start local 3 // int port
        start local 4 // java.net.PasswordAuthentication pw
        start local 5 // java.lang.String authenticatorKey
         0: .line 176
            aload 0 /* this */
            iload 1 /* isProxy */
            ifeq 1
            bipush 112
            goto 2
      StackMap locals:
      StackMap stack: uninitialized-this
         1: bipush 115
         2: .line 177
      StackMap locals: uninitialized-this int java.lang.String int java.net.PasswordAuthentication java.lang.String
      StackMap stack: uninitialized-this int
            getstatic sun.net.www.protocol.http.AuthScheme.NTLM:Lsun/net/www/protocol/http/AuthScheme;
         3: .line 178
            aload 2 /* host */
         4: .line 179
            iload 3 /* port */
         5: .line 180
            ldc ""
         6: .line 181
            aload 5 /* authenticatorKey */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.String
            invokespecial sun.net.www.protocol.http.AuthenticationInfo.<init>:(CLsun/net/www/protocol/http/AuthScheme;Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;)V
         7: .line 182
            aload 0 /* this */
            aload 4 /* pw */
            invokevirtual sun.net.www.protocol.http.ntlm.NTLMAuthentication.init:(Ljava/net/PasswordAuthentication;)V
         8: .line 183
            return
        end local 5 // java.lang.String authenticatorKey
        end local 4 // java.net.PasswordAuthentication pw
        end local 3 // int port
        end local 2 // java.lang.String host
        end local 1 // boolean isProxy
        end local 0 // sun.net.www.protocol.http.ntlm.NTLMAuthentication this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    9     0              this  Lsun/net/www/protocol/http/ntlm/NTLMAuthentication;
            0    9     1           isProxy  Z
            0    9     2              host  Ljava/lang/String;
            0    9     3              port  I
            0    9     4                pw  Ljava/net/PasswordAuthentication;
            0    9     5  authenticatorKey  Ljava/lang/String;
    MethodParameters:
                  Name  Flags
      isProxy           
      host              
      port              
      pw                
      authenticatorKey  

  protected boolean useAuthCache();
    descriptor: ()Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.net.www.protocol.http.ntlm.NTLMAuthentication this
         0: .line 187
            getstatic sun.net.www.protocol.http.ntlm.NTLMAuthentication.ntlmCache:Z
            ifeq 1
            aload 0 /* this */
            invokespecial sun.net.www.protocol.http.AuthenticationInfo.useAuthCache:()Z
            ifeq 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // sun.net.www.protocol.http.ntlm.NTLMAuthentication this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/net/www/protocol/http/ntlm/NTLMAuthentication;

  public boolean supportsPreemptiveAuthorization();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.net.www.protocol.http.ntlm.NTLMAuthentication this
         0: .line 195
            iconst_0
            ireturn
        end local 0 // sun.net.www.protocol.http.ntlm.NTLMAuthentication this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/net/www/protocol/http/ntlm/NTLMAuthentication;

  public java.lang.String getHeaderValue(java.net.URL, java.lang.String);
    descriptor: (Ljava/net/URL;Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // sun.net.www.protocol.http.ntlm.NTLMAuthentication this
        start local 1 // java.net.URL url
        start local 2 // java.lang.String method
         0: .line 203
            new java.lang.RuntimeException
            dup
            ldc "getHeaderValue not supported"
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;)V
            athrow
        end local 2 // java.lang.String method
        end local 1 // java.net.URL url
        end local 0 // sun.net.www.protocol.http.ntlm.NTLMAuthentication this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lsun/net/www/protocol/http/ntlm/NTLMAuthentication;
            0    1     1     url  Ljava/net/URL;
            0    1     2  method  Ljava/lang/String;
    MethodParameters:
        Name  Flags
      url     
      method  

  public boolean isAuthorizationStale(java.lang.String);
    descriptor: (Ljava/lang/String;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // sun.net.www.protocol.http.ntlm.NTLMAuthentication this
        start local 1 // java.lang.String header
         0: .line 216
            iconst_0
            ireturn
        end local 1 // java.lang.String header
        end local 0 // sun.net.www.protocol.http.ntlm.NTLMAuthentication this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lsun/net/www/protocol/http/ntlm/NTLMAuthentication;
            0    1     1  header  Ljava/lang/String;
    MethodParameters:
        Name  Flags
      header  

  public synchronized boolean setHeaders(sun.net.www.protocol.http.HttpURLConnection, sun.net.www.HeaderParser, java.lang.String);
    descriptor: (Lsun/net/www/protocol/http/HttpURLConnection;Lsun/net/www/HeaderParser;Ljava/lang/String;)Z
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=6, args_size=4
        start local 0 // sun.net.www.protocol.http.ntlm.NTLMAuthentication this
        start local 1 // sun.net.www.protocol.http.HttpURLConnection conn
        start local 2 // sun.net.www.HeaderParser p
        start local 3 // java.lang.String raw
         0: .line 232
            aload 3 /* raw */
            invokevirtual java.lang.String.length:()I
            bipush 6
            if_icmpge 3
         1: .line 233
            aload 0 /* this */
            invokevirtual sun.net.www.protocol.http.ntlm.NTLMAuthentication.buildType1Msg:()Ljava/lang/String;
            astore 4 /* response */
        start local 4 // java.lang.String response
         2: .line 234
            goto 5
        end local 4 // java.lang.String response
         3: .line 235
      StackMap locals:
      StackMap stack:
            aload 3 /* raw */
            iconst_5
            invokevirtual java.lang.String.substring:(I)Ljava/lang/String;
            astore 5 /* msg */
        start local 5 // java.lang.String msg
         4: .line 236
            aload 0 /* this */
            aload 5 /* msg */
            invokevirtual sun.net.www.protocol.http.ntlm.NTLMAuthentication.buildType3Msg:(Ljava/lang/String;)Ljava/lang/String;
            astore 4 /* response */
        end local 5 // java.lang.String msg
        start local 4 // java.lang.String response
         5: .line 238
      StackMap locals: java.lang.String
      StackMap stack:
            aload 1 /* conn */
            aload 0 /* this */
            invokevirtual sun.net.www.protocol.http.ntlm.NTLMAuthentication.getHeaderName:()Ljava/lang/String;
            aload 4 /* response */
            invokevirtual sun.net.www.protocol.http.HttpURLConnection.setAuthenticationProperty:(Ljava/lang/String;Ljava/lang/String;)V
         6: .line 239
            iconst_1
            ireturn
        end local 4 // java.lang.String response
         7: .line 240
      StackMap locals: sun.net.www.protocol.http.ntlm.NTLMAuthentication sun.net.www.protocol.http.HttpURLConnection sun.net.www.HeaderParser java.lang.String
      StackMap stack: java.io.IOException
            pop
         8: .line 241
            iconst_0
            ireturn
         9: .line 242
      StackMap locals:
      StackMap stack: java.security.GeneralSecurityException
            pop
        10: .line 243
            iconst_0
            ireturn
        end local 3 // java.lang.String raw
        end local 2 // sun.net.www.HeaderParser p
        end local 1 // sun.net.www.protocol.http.HttpURLConnection conn
        end local 0 // sun.net.www.protocol.http.ntlm.NTLMAuthentication this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   11     0      this  Lsun/net/www/protocol/http/ntlm/NTLMAuthentication;
            0   11     1      conn  Lsun/net/www/protocol/http/HttpURLConnection;
            0   11     2         p  Lsun/net/www/HeaderParser;
            0   11     3       raw  Ljava/lang/String;
            2    3     4  response  Ljava/lang/String;
            5    7     4  response  Ljava/lang/String;
            4    5     5       msg  Ljava/lang/String;
      Exception table:
        from    to  target  type
           0     6       7  Class java.io.IOException
           0     6       9  Class java.security.GeneralSecurityException
    MethodParameters:
      Name  Flags
      conn  
      p     
      raw   

  private java.lang.String buildType1Msg();
    descriptor: ()Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // sun.net.www.protocol.http.ntlm.NTLMAuthentication this
         0: .line 248
            aload 0 /* this */
            getfield sun.net.www.protocol.http.ntlm.NTLMAuthentication.client:Lcom/sun/security/ntlm/Client;
            invokevirtual com.sun.security.ntlm.Client.type1:()[B
            astore 1 /* msg */
        start local 1 // byte[] msg
         1: .line 249
            new java.lang.StringBuilder
            dup
            ldc "NTLM "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            invokestatic java.util.Base64.getEncoder:()Ljava/util/Base64$Encoder;
            aload 1 /* msg */
            invokevirtual java.util.Base64$Encoder.encodeToString:([B)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            astore 2 /* result */
        start local 2 // java.lang.String result
         2: .line 250
            aload 2 /* result */
            areturn
        end local 2 // java.lang.String result
        end local 1 // byte[] msg
        end local 0 // sun.net.www.protocol.http.ntlm.NTLMAuthentication this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lsun/net/www/protocol/http/ntlm/NTLMAuthentication;
            1    3     1     msg  [B
            2    3     2  result  Ljava/lang/String;

  private java.lang.String buildType3Msg(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // sun.net.www.protocol.http.ntlm.NTLMAuthentication this
        start local 1 // java.lang.String challenge
         0: .line 258
            invokestatic java.util.Base64.getDecoder:()Ljava/util/Base64$Decoder;
            aload 1 /* challenge */
            invokevirtual java.util.Base64$Decoder.decode:(Ljava/lang/String;)[B
            astore 2 /* type2 */
        start local 2 // byte[] type2
         1: .line 259
            bipush 8
            newarray 8
            astore 3 /* nonce */
        start local 3 // byte[] nonce
         2: .line 260
            new java.util.Random
            dup
            invokespecial java.util.Random.<init>:()V
            aload 3 /* nonce */
            invokevirtual java.util.Random.nextBytes:([B)V
         3: .line 261
            aload 0 /* this */
            getfield sun.net.www.protocol.http.ntlm.NTLMAuthentication.client:Lcom/sun/security/ntlm/Client;
            aload 2 /* type2 */
            aload 3 /* nonce */
            invokevirtual com.sun.security.ntlm.Client.type3:([B[B)[B
            astore 4 /* msg */
        start local 4 // byte[] msg
         4: .line 262
            new java.lang.StringBuilder
            dup
            ldc "NTLM "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            invokestatic java.util.Base64.getEncoder:()Ljava/util/Base64$Encoder;
            aload 4 /* msg */
            invokevirtual java.util.Base64$Encoder.encodeToString:([B)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            astore 5 /* result */
        start local 5 // java.lang.String result
         5: .line 263
            aload 5 /* result */
            areturn
        end local 5 // java.lang.String result
        end local 4 // byte[] msg
        end local 3 // byte[] nonce
        end local 2 // byte[] type2
        end local 1 // java.lang.String challenge
        end local 0 // sun.net.www.protocol.http.ntlm.NTLMAuthentication this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0       this  Lsun/net/www/protocol/http/ntlm/NTLMAuthentication;
            0    6     1  challenge  Ljava/lang/String;
            1    6     2      type2  [B
            2    6     3      nonce  [B
            4    6     4        msg  [B
            5    6     5     result  Ljava/lang/String;
    Exceptions:
      throws java.security.GeneralSecurityException, java.io.IOException
    MethodParameters:
           Name  Flags
      challenge  
}
SourceFile: "NTLMAuthentication.java"
NestMembers:
  sun.net.www.protocol.http.ntlm.NTLMAuthentication$1
InnerClasses:
  public Decoder = java.util.Base64$Decoder of java.util.Base64
  public Encoder = java.util.Base64$Encoder of java.util.Base64
  sun.net.www.protocol.http.ntlm.NTLMAuthentication$1