public class org.apache.commons.net.smtp.SMTPSClient extends org.apache.commons.net.smtp.SMTPClient
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.net.smtp.SMTPSClient
  super_class: org.apache.commons.net.smtp.SMTPClient
{
  private static final java.lang.String DEFAULT_PROTOCOL;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "TLS"

  private final boolean isImplicit;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.String protocol;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private javax.net.ssl.SSLContext context;
    descriptor: Ljavax/net/ssl/SSLContext;
    flags: (0x0002) ACC_PRIVATE

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

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

  private javax.net.ssl.TrustManager trustManager;
    descriptor: Ljavax/net/ssl/TrustManager;
    flags: (0x0002) ACC_PRIVATE

  private javax.net.ssl.KeyManager keyManager;
    descriptor: Ljavax/net/ssl/KeyManager;
    flags: (0x0002) ACC_PRIVATE

  private javax.net.ssl.HostnameVerifier hostnameVerifier;
    descriptor: Ljavax/net/ssl/HostnameVerifier;
    flags: (0x0002) ACC_PRIVATE

  private boolean tlsEndpointChecking;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.net.smtp.SMTPSClient this
         0: .line 90
            aload 0 /* this */
            ldc "TLS"
            iconst_0
            invokespecial org.apache.commons.net.smtp.SMTPSClient.<init>:(Ljava/lang/String;Z)V
         1: .line 91
            return
        end local 0 // org.apache.commons.net.smtp.SMTPSClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/net/smtp/SMTPSClient;

  public void <init>(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.net.smtp.SMTPSClient this
        start local 1 // boolean implicit
         0: .line 99
            aload 0 /* this */
            ldc "TLS"
            iload 1 /* implicit */
            invokespecial org.apache.commons.net.smtp.SMTPSClient.<init>:(Ljava/lang/String;Z)V
         1: .line 100
            return
        end local 1 // boolean implicit
        end local 0 // org.apache.commons.net.smtp.SMTPSClient this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/apache/commons/net/smtp/SMTPSClient;
            0    2     1  implicit  Z
    MethodParameters:
          Name  Flags
      implicit  

  public void <init>(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.net.smtp.SMTPSClient this
        start local 1 // java.lang.String proto
         0: .line 108
            aload 0 /* this */
            aload 1 /* proto */
            iconst_0
            invokespecial org.apache.commons.net.smtp.SMTPSClient.<init>:(Ljava/lang/String;Z)V
         1: .line 109
            return
        end local 1 // java.lang.String proto
        end local 0 // org.apache.commons.net.smtp.SMTPSClient this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/apache/commons/net/smtp/SMTPSClient;
            0    2     1  proto  Ljava/lang/String;
    MethodParameters:
       Name  Flags
      proto  

  public void <init>(java.lang.String, boolean);
    descriptor: (Ljava/lang/String;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.apache.commons.net.smtp.SMTPSClient this
        start local 1 // java.lang.String proto
        start local 2 // boolean implicit
         0: .line 116
            aload 0 /* this */
            invokespecial org.apache.commons.net.smtp.SMTPClient.<init>:()V
         1: .line 65
            aload 0 /* this */
            aconst_null
            putfield org.apache.commons.net.smtp.SMTPSClient.context:Ljavax/net/ssl/SSLContext;
         2: .line 68
            aload 0 /* this */
            aconst_null
            putfield org.apache.commons.net.smtp.SMTPSClient.suites:[Ljava/lang/String;
         3: .line 70
            aload 0 /* this */
            aconst_null
            putfield org.apache.commons.net.smtp.SMTPSClient.protocols:[Ljava/lang/String;
         4: .line 73
            aload 0 /* this */
            aconst_null
            putfield org.apache.commons.net.smtp.SMTPSClient.trustManager:Ljavax/net/ssl/TrustManager;
         5: .line 76
            aload 0 /* this */
            aconst_null
            putfield org.apache.commons.net.smtp.SMTPSClient.keyManager:Ljavax/net/ssl/KeyManager;
         6: .line 79
            aload 0 /* this */
            aconst_null
            putfield org.apache.commons.net.smtp.SMTPSClient.hostnameVerifier:Ljavax/net/ssl/HostnameVerifier;
         7: .line 118
            aload 0 /* this */
            aload 1 /* proto */
            putfield org.apache.commons.net.smtp.SMTPSClient.protocol:Ljava/lang/String;
         8: .line 119
            aload 0 /* this */
            iload 2 /* implicit */
            putfield org.apache.commons.net.smtp.SMTPSClient.isImplicit:Z
         9: .line 120
            return
        end local 2 // boolean implicit
        end local 1 // java.lang.String proto
        end local 0 // org.apache.commons.net.smtp.SMTPSClient this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   10     0      this  Lorg/apache/commons/net/smtp/SMTPSClient;
            0   10     1     proto  Ljava/lang/String;
            0   10     2  implicit  Z
    MethodParameters:
          Name  Flags
      proto     
      implicit  

  public void <init>(java.lang.String, boolean, java.lang.String);
    descriptor: (Ljava/lang/String;ZLjava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // org.apache.commons.net.smtp.SMTPSClient this
        start local 1 // java.lang.String proto
        start local 2 // boolean implicit
        start local 3 // java.lang.String encoding
         0: .line 131
            aload 0 /* this */
            aload 3 /* encoding */
            invokespecial org.apache.commons.net.smtp.SMTPClient.<init>:(Ljava/lang/String;)V
         1: .line 65
            aload 0 /* this */
            aconst_null
            putfield org.apache.commons.net.smtp.SMTPSClient.context:Ljavax/net/ssl/SSLContext;
         2: .line 68
            aload 0 /* this */
            aconst_null
            putfield org.apache.commons.net.smtp.SMTPSClient.suites:[Ljava/lang/String;
         3: .line 70
            aload 0 /* this */
            aconst_null
            putfield org.apache.commons.net.smtp.SMTPSClient.protocols:[Ljava/lang/String;
         4: .line 73
            aload 0 /* this */
            aconst_null
            putfield org.apache.commons.net.smtp.SMTPSClient.trustManager:Ljavax/net/ssl/TrustManager;
         5: .line 76
            aload 0 /* this */
            aconst_null
            putfield org.apache.commons.net.smtp.SMTPSClient.keyManager:Ljavax/net/ssl/KeyManager;
         6: .line 79
            aload 0 /* this */
            aconst_null
            putfield org.apache.commons.net.smtp.SMTPSClient.hostnameVerifier:Ljavax/net/ssl/HostnameVerifier;
         7: .line 132
            aload 0 /* this */
            aload 1 /* proto */
            putfield org.apache.commons.net.smtp.SMTPSClient.protocol:Ljava/lang/String;
         8: .line 133
            aload 0 /* this */
            iload 2 /* implicit */
            putfield org.apache.commons.net.smtp.SMTPSClient.isImplicit:Z
         9: .line 134
            return
        end local 3 // java.lang.String encoding
        end local 2 // boolean implicit
        end local 1 // java.lang.String proto
        end local 0 // org.apache.commons.net.smtp.SMTPSClient this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   10     0      this  Lorg/apache/commons/net/smtp/SMTPSClient;
            0   10     1     proto  Ljava/lang/String;
            0   10     2  implicit  Z
            0   10     3  encoding  Ljava/lang/String;
    MethodParameters:
          Name  Flags
      proto     
      implicit  
      encoding  

  public void <init>(boolean, javax.net.ssl.SSLContext);
    descriptor: (ZLjavax/net/ssl/SSLContext;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.apache.commons.net.smtp.SMTPSClient this
        start local 1 // boolean implicit
        start local 2 // javax.net.ssl.SSLContext ctx
         0: .line 141
            aload 0 /* this */
            invokespecial org.apache.commons.net.smtp.SMTPClient.<init>:()V
         1: .line 65
            aload 0 /* this */
            aconst_null
            putfield org.apache.commons.net.smtp.SMTPSClient.context:Ljavax/net/ssl/SSLContext;
         2: .line 68
            aload 0 /* this */
            aconst_null
            putfield org.apache.commons.net.smtp.SMTPSClient.suites:[Ljava/lang/String;
         3: .line 70
            aload 0 /* this */
            aconst_null
            putfield org.apache.commons.net.smtp.SMTPSClient.protocols:[Ljava/lang/String;
         4: .line 73
            aload 0 /* this */
            aconst_null
            putfield org.apache.commons.net.smtp.SMTPSClient.trustManager:Ljavax/net/ssl/TrustManager;
         5: .line 76
            aload 0 /* this */
            aconst_null
            putfield org.apache.commons.net.smtp.SMTPSClient.keyManager:Ljavax/net/ssl/KeyManager;
         6: .line 79
            aload 0 /* this */
            aconst_null
            putfield org.apache.commons.net.smtp.SMTPSClient.hostnameVerifier:Ljavax/net/ssl/HostnameVerifier;
         7: .line 143
            aload 0 /* this */
            iload 1 /* implicit */
            putfield org.apache.commons.net.smtp.SMTPSClient.isImplicit:Z
         8: .line 144
            aload 0 /* this */
            aload 2 /* ctx */
            putfield org.apache.commons.net.smtp.SMTPSClient.context:Ljavax/net/ssl/SSLContext;
         9: .line 145
            aload 0 /* this */
            ldc "TLS"
            putfield org.apache.commons.net.smtp.SMTPSClient.protocol:Ljava/lang/String;
        10: .line 146
            return
        end local 2 // javax.net.ssl.SSLContext ctx
        end local 1 // boolean implicit
        end local 0 // org.apache.commons.net.smtp.SMTPSClient this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   11     0      this  Lorg/apache/commons/net/smtp/SMTPSClient;
            0   11     1  implicit  Z
            0   11     2       ctx  Ljavax/net/ssl/SSLContext;
    MethodParameters:
          Name  Flags
      implicit  
      ctx       

  public void <init>(javax.net.ssl.SSLContext);
    descriptor: (Ljavax/net/ssl/SSLContext;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.net.smtp.SMTPSClient this
        start local 1 // javax.net.ssl.SSLContext context
         0: .line 155
            aload 0 /* this */
            iconst_0
            aload 1 /* context */
            invokespecial org.apache.commons.net.smtp.SMTPSClient.<init>:(ZLjavax/net/ssl/SSLContext;)V
         1: .line 156
            return
        end local 1 // javax.net.ssl.SSLContext context
        end local 0 // org.apache.commons.net.smtp.SMTPSClient this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/apache/commons/net/smtp/SMTPSClient;
            0    2     1  context  Ljavax/net/ssl/SSLContext;
    MethodParameters:
         Name  Flags
      context  

  protected void _connectAction_();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.net.smtp.SMTPSClient this
         0: .line 170
            aload 0 /* this */
            getfield org.apache.commons.net.smtp.SMTPSClient.isImplicit:Z
            ifeq 2
         1: .line 171
            aload 0 /* this */
            invokevirtual org.apache.commons.net.smtp.SMTPSClient.performSSLNegotiation:()V
         2: .line 173
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokespecial org.apache.commons.net.smtp.SMTPClient._connectAction_:()V
         3: .line 175
            return
        end local 0 // org.apache.commons.net.smtp.SMTPSClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/commons/net/smtp/SMTPSClient;
    Exceptions:
      throws java.io.IOException

  private void initSSLContext();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.apache.commons.net.smtp.SMTPSClient this
         0: .line 183
            aload 0 /* this */
            getfield org.apache.commons.net.smtp.SMTPSClient.context:Ljavax/net/ssl/SSLContext;
            ifnonnull 2
         1: .line 185
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.net.smtp.SMTPSClient.protocol:Ljava/lang/String;
            aload 0 /* this */
            invokevirtual org.apache.commons.net.smtp.SMTPSClient.getKeyManager:()Ljavax/net/ssl/KeyManager;
            aload 0 /* this */
            invokevirtual org.apache.commons.net.smtp.SMTPSClient.getTrustManager:()Ljavax/net/ssl/TrustManager;
            invokestatic org.apache.commons.net.util.SSLContextUtils.createSSLContext:(Ljava/lang/String;Ljavax/net/ssl/KeyManager;Ljavax/net/ssl/TrustManager;)Ljavax/net/ssl/SSLContext;
            putfield org.apache.commons.net.smtp.SMTPSClient.context:Ljavax/net/ssl/SSLContext;
         2: .line 187
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.apache.commons.net.smtp.SMTPSClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/net/smtp/SMTPSClient;
    Exceptions:
      throws java.io.IOException

  private void performSSLNegotiation();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=5, args_size=1
        start local 0 // org.apache.commons.net.smtp.SMTPSClient this
         0: .line 196
            aload 0 /* this */
            invokevirtual org.apache.commons.net.smtp.SMTPSClient.initSSLContext:()V
         1: .line 198
            aload 0 /* this */
            getfield org.apache.commons.net.smtp.SMTPSClient.context:Ljavax/net/ssl/SSLContext;
            invokevirtual javax.net.ssl.SSLContext.getSocketFactory:()Ljavax/net/ssl/SSLSocketFactory;
            astore 1 /* ssf */
        start local 1 // javax.net.ssl.SSLSocketFactory ssf
         2: .line 199
            aload 0 /* this */
            getfield org.apache.commons.net.smtp.SMTPSClient._hostname_:Ljava/lang/String;
            ifnull 3
            aload 0 /* this */
            getfield org.apache.commons.net.smtp.SMTPSClient._hostname_:Ljava/lang/String;
            goto 4
      StackMap locals: javax.net.ssl.SSLSocketFactory
      StackMap stack:
         3: aload 0 /* this */
            invokevirtual org.apache.commons.net.smtp.SMTPSClient.getRemoteAddress:()Ljava/net/InetAddress;
            invokevirtual java.net.InetAddress.getHostAddress:()Ljava/lang/String;
      StackMap locals:
      StackMap stack: java.lang.String
         4: astore 2 /* host */
        start local 2 // java.lang.String host
         5: .line 200
            aload 0 /* this */
            invokevirtual org.apache.commons.net.smtp.SMTPSClient.getRemotePort:()I
            istore 3 /* port */
        start local 3 // int port
         6: .line 202
            aload 1 /* ssf */
            aload 0 /* this */
            getfield org.apache.commons.net.smtp.SMTPSClient._socket_:Ljava/net/Socket;
            aload 2 /* host */
            iload 3 /* port */
            iconst_1
            invokevirtual javax.net.ssl.SSLSocketFactory.createSocket:(Ljava/net/Socket;Ljava/lang/String;IZ)Ljava/net/Socket;
            checkcast javax.net.ssl.SSLSocket
         7: .line 201
            astore 4 /* socket */
        start local 4 // javax.net.ssl.SSLSocket socket
         8: .line 203
            aload 4 /* socket */
            iconst_1
            invokevirtual javax.net.ssl.SSLSocket.setEnableSessionCreation:(Z)V
         9: .line 204
            aload 4 /* socket */
            iconst_1
            invokevirtual javax.net.ssl.SSLSocket.setUseClientMode:(Z)V
        10: .line 206
            aload 0 /* this */
            getfield org.apache.commons.net.smtp.SMTPSClient.tlsEndpointChecking:Z
            ifeq 12
        11: .line 207
            aload 4 /* socket */
            invokestatic org.apache.commons.net.util.SSLSocketUtils.enableEndpointNameVerification:(Ljavax/net/ssl/SSLSocket;)Z
            pop
        12: .line 209
      StackMap locals: java.lang.String int javax.net.ssl.SSLSocket
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.net.smtp.SMTPSClient.protocols:[Ljava/lang/String;
            ifnull 14
        13: .line 210
            aload 4 /* socket */
            aload 0 /* this */
            getfield org.apache.commons.net.smtp.SMTPSClient.protocols:[Ljava/lang/String;
            invokevirtual javax.net.ssl.SSLSocket.setEnabledProtocols:([Ljava/lang/String;)V
        14: .line 212
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.net.smtp.SMTPSClient.suites:[Ljava/lang/String;
            ifnull 16
        15: .line 213
            aload 4 /* socket */
            aload 0 /* this */
            getfield org.apache.commons.net.smtp.SMTPSClient.suites:[Ljava/lang/String;
            invokevirtual javax.net.ssl.SSLSocket.setEnabledCipherSuites:([Ljava/lang/String;)V
        16: .line 215
      StackMap locals:
      StackMap stack:
            aload 4 /* socket */
            invokevirtual javax.net.ssl.SSLSocket.startHandshake:()V
        17: .line 218
            aload 0 /* this */
            aload 4 /* socket */
            putfield org.apache.commons.net.smtp.SMTPSClient._socket_:Ljava/net/Socket;
        18: .line 219
            aload 0 /* this */
            aload 4 /* socket */
            invokevirtual javax.net.ssl.SSLSocket.getInputStream:()Ljava/io/InputStream;
            putfield org.apache.commons.net.smtp.SMTPSClient._input_:Ljava/io/InputStream;
        19: .line 220
            aload 0 /* this */
            aload 4 /* socket */
            invokevirtual javax.net.ssl.SSLSocket.getOutputStream:()Ljava/io/OutputStream;
            putfield org.apache.commons.net.smtp.SMTPSClient._output_:Ljava/io/OutputStream;
        20: .line 221
            aload 0 /* this */
            new org.apache.commons.net.io.CRLFLineReader
            dup
        21: .line 222
            new java.io.InputStreamReader
            dup
            aload 0 /* this */
            getfield org.apache.commons.net.smtp.SMTPSClient._input_:Ljava/io/InputStream;
            aload 0 /* this */
            getfield org.apache.commons.net.smtp.SMTPSClient.encoding:Ljava/lang/String;
            invokespecial java.io.InputStreamReader.<init>:(Ljava/io/InputStream;Ljava/lang/String;)V
            invokespecial org.apache.commons.net.io.CRLFLineReader.<init>:(Ljava/io/Reader;)V
        22: .line 221
            putfield org.apache.commons.net.smtp.SMTPSClient._reader:Ljava/io/BufferedReader;
        23: .line 223
            aload 0 /* this */
            new java.io.BufferedWriter
            dup
        24: .line 224
            new java.io.OutputStreamWriter
            dup
            aload 0 /* this */
            getfield org.apache.commons.net.smtp.SMTPSClient._output_:Ljava/io/OutputStream;
            aload 0 /* this */
            getfield org.apache.commons.net.smtp.SMTPSClient.encoding:Ljava/lang/String;
            invokespecial java.io.OutputStreamWriter.<init>:(Ljava/io/OutputStream;Ljava/lang/String;)V
            invokespecial java.io.BufferedWriter.<init>:(Ljava/io/Writer;)V
        25: .line 223
            putfield org.apache.commons.net.smtp.SMTPSClient._writer:Ljava/io/BufferedWriter;
        26: .line 226
            aload 0 /* this */
            getfield org.apache.commons.net.smtp.SMTPSClient.hostnameVerifier:Ljavax/net/ssl/HostnameVerifier;
            ifnull 28
            aload 0 /* this */
            getfield org.apache.commons.net.smtp.SMTPSClient.hostnameVerifier:Ljavax/net/ssl/HostnameVerifier;
            aload 2 /* host */
            aload 4 /* socket */
            invokevirtual javax.net.ssl.SSLSocket.getSession:()Ljavax/net/ssl/SSLSession;
            invokeinterface javax.net.ssl.HostnameVerifier.verify:(Ljava/lang/String;Ljavax/net/ssl/SSLSession;)Z
            ifne 28
        27: .line 227
            new javax.net.ssl.SSLHandshakeException
            dup
            ldc "Hostname doesn't match certificate"
            invokespecial javax.net.ssl.SSLHandshakeException.<init>:(Ljava/lang/String;)V
            athrow
        28: .line 229
      StackMap locals:
      StackMap stack:
            return
        end local 4 // javax.net.ssl.SSLSocket socket
        end local 3 // int port
        end local 2 // java.lang.String host
        end local 1 // javax.net.ssl.SSLSocketFactory ssf
        end local 0 // org.apache.commons.net.smtp.SMTPSClient this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   29     0    this  Lorg/apache/commons/net/smtp/SMTPSClient;
            2   29     1     ssf  Ljavax/net/ssl/SSLSocketFactory;
            5   29     2    host  Ljava/lang/String;
            6   29     3    port  I
            8   29     4  socket  Ljavax/net/ssl/SSLSocket;
    Exceptions:
      throws java.io.IOException

  public javax.net.ssl.KeyManager getKeyManager();
    descriptor: ()Ljavax/net/ssl/KeyManager;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.net.smtp.SMTPSClient this
         0: .line 237
            aload 0 /* this */
            getfield org.apache.commons.net.smtp.SMTPSClient.keyManager:Ljavax/net/ssl/KeyManager;
            areturn
        end local 0 // org.apache.commons.net.smtp.SMTPSClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/net/smtp/SMTPSClient;

  public void setKeyManager(javax.net.ssl.KeyManager);
    descriptor: (Ljavax/net/ssl/KeyManager;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.net.smtp.SMTPSClient this
        start local 1 // javax.net.ssl.KeyManager newKeyManager
         0: .line 247
            aload 0 /* this */
            aload 1 /* newKeyManager */
            putfield org.apache.commons.net.smtp.SMTPSClient.keyManager:Ljavax/net/ssl/KeyManager;
         1: .line 248
            return
        end local 1 // javax.net.ssl.KeyManager newKeyManager
        end local 0 // org.apache.commons.net.smtp.SMTPSClient this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lorg/apache/commons/net/smtp/SMTPSClient;
            0    2     1  newKeyManager  Ljavax/net/ssl/KeyManager;
    MethodParameters:
               Name  Flags
      newKeyManager  

  public void setEnabledCipherSuites(java.lang.String[]);
    descriptor: ([Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.apache.commons.net.smtp.SMTPSClient this
        start local 1 // java.lang.String[] cipherSuites
         0: .line 257
            aload 0 /* this */
            aload 1 /* cipherSuites */
            arraylength
            anewarray java.lang.String
            putfield org.apache.commons.net.smtp.SMTPSClient.suites:[Ljava/lang/String;
         1: .line 258
            aload 1 /* cipherSuites */
            iconst_0
            aload 0 /* this */
            getfield org.apache.commons.net.smtp.SMTPSClient.suites:[Ljava/lang/String;
            iconst_0
            aload 1 /* cipherSuites */
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         2: .line 259
            return
        end local 1 // java.lang.String[] cipherSuites
        end local 0 // org.apache.commons.net.smtp.SMTPSClient this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    3     0          this  Lorg/apache/commons/net/smtp/SMTPSClient;
            0    3     1  cipherSuites  [Ljava/lang/String;
    MethodParameters:
              Name  Flags
      cipherSuites  

  public java.lang.String[] getEnabledCipherSuites();
    descriptor: ()[Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.net.smtp.SMTPSClient this
         0: .line 269
            aload 0 /* this */
            getfield org.apache.commons.net.smtp.SMTPSClient._socket_:Ljava/net/Socket;
            instanceof javax.net.ssl.SSLSocket
            ifeq 2
         1: .line 271
            aload 0 /* this */
            getfield org.apache.commons.net.smtp.SMTPSClient._socket_:Ljava/net/Socket;
            checkcast javax.net.ssl.SSLSocket
            invokevirtual javax.net.ssl.SSLSocket.getEnabledCipherSuites:()[Ljava/lang/String;
            areturn
         2: .line 273
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 0 // org.apache.commons.net.smtp.SMTPSClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/net/smtp/SMTPSClient;

  public void setEnabledProtocols(java.lang.String[]);
    descriptor: ([Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.apache.commons.net.smtp.SMTPSClient this
        start local 1 // java.lang.String[] protocolVersions
         0: .line 283
            aload 0 /* this */
            aload 1 /* protocolVersions */
            arraylength
            anewarray java.lang.String
            putfield org.apache.commons.net.smtp.SMTPSClient.protocols:[Ljava/lang/String;
         1: .line 284
            aload 1 /* protocolVersions */
            iconst_0
            aload 0 /* this */
            getfield org.apache.commons.net.smtp.SMTPSClient.protocols:[Ljava/lang/String;
            iconst_0
            aload 1 /* protocolVersions */
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         2: .line 285
            return
        end local 1 // java.lang.String[] protocolVersions
        end local 0 // org.apache.commons.net.smtp.SMTPSClient this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    3     0              this  Lorg/apache/commons/net/smtp/SMTPSClient;
            0    3     1  protocolVersions  [Ljava/lang/String;
    MethodParameters:
                  Name  Flags
      protocolVersions  

  public java.lang.String[] getEnabledProtocols();
    descriptor: ()[Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.net.smtp.SMTPSClient this
         0: .line 295
            aload 0 /* this */
            getfield org.apache.commons.net.smtp.SMTPSClient._socket_:Ljava/net/Socket;
            instanceof javax.net.ssl.SSLSocket
            ifeq 2
         1: .line 297
            aload 0 /* this */
            getfield org.apache.commons.net.smtp.SMTPSClient._socket_:Ljava/net/Socket;
            checkcast javax.net.ssl.SSLSocket
            invokevirtual javax.net.ssl.SSLSocket.getEnabledProtocols:()[Ljava/lang/String;
            areturn
         2: .line 299
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 0 // org.apache.commons.net.smtp.SMTPSClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/net/smtp/SMTPSClient;

  public boolean execTLS();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.net.smtp.SMTPSClient this
         0: .line 310
            aload 0 /* this */
            ldc "STARTTLS"
            invokevirtual org.apache.commons.net.smtp.SMTPSClient.sendCommand:(Ljava/lang/String;)I
            invokestatic org.apache.commons.net.smtp.SMTPReply.isPositiveCompletion:(I)Z
            ifne 2
         1: .line 312
            iconst_0
            ireturn
         2: .line 315
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.commons.net.smtp.SMTPSClient.performSSLNegotiation:()V
         3: .line 316
            iconst_1
            ireturn
        end local 0 // org.apache.commons.net.smtp.SMTPSClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/commons/net/smtp/SMTPSClient;
    Exceptions:
      throws java.io.IOException

  public javax.net.ssl.TrustManager getTrustManager();
    descriptor: ()Ljavax/net/ssl/TrustManager;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.net.smtp.SMTPSClient this
         0: .line 325
            aload 0 /* this */
            getfield org.apache.commons.net.smtp.SMTPSClient.trustManager:Ljavax/net/ssl/TrustManager;
            areturn
        end local 0 // org.apache.commons.net.smtp.SMTPSClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/net/smtp/SMTPSClient;

  public void setTrustManager(javax.net.ssl.TrustManager);
    descriptor: (Ljavax/net/ssl/TrustManager;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.net.smtp.SMTPSClient this
        start local 1 // javax.net.ssl.TrustManager newTrustManager
         0: .line 335
            aload 0 /* this */
            aload 1 /* newTrustManager */
            putfield org.apache.commons.net.smtp.SMTPSClient.trustManager:Ljavax/net/ssl/TrustManager;
         1: .line 336
            return
        end local 1 // javax.net.ssl.TrustManager newTrustManager
        end local 0 // org.apache.commons.net.smtp.SMTPSClient this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    2     0             this  Lorg/apache/commons/net/smtp/SMTPSClient;
            0    2     1  newTrustManager  Ljavax/net/ssl/TrustManager;
    MethodParameters:
                 Name  Flags
      newTrustManager  

  public javax.net.ssl.HostnameVerifier getHostnameVerifier();
    descriptor: ()Ljavax/net/ssl/HostnameVerifier;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.net.smtp.SMTPSClient this
         0: .line 345
            aload 0 /* this */
            getfield org.apache.commons.net.smtp.SMTPSClient.hostnameVerifier:Ljavax/net/ssl/HostnameVerifier;
            areturn
        end local 0 // org.apache.commons.net.smtp.SMTPSClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/net/smtp/SMTPSClient;

  public void setHostnameVerifier(javax.net.ssl.HostnameVerifier);
    descriptor: (Ljavax/net/ssl/HostnameVerifier;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.net.smtp.SMTPSClient this
        start local 1 // javax.net.ssl.HostnameVerifier newHostnameVerifier
         0: .line 355
            aload 0 /* this */
            aload 1 /* newHostnameVerifier */
            putfield org.apache.commons.net.smtp.SMTPSClient.hostnameVerifier:Ljavax/net/ssl/HostnameVerifier;
         1: .line 356
            return
        end local 1 // javax.net.ssl.HostnameVerifier newHostnameVerifier
        end local 0 // org.apache.commons.net.smtp.SMTPSClient this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0    2     0                 this  Lorg/apache/commons/net/smtp/SMTPSClient;
            0    2     1  newHostnameVerifier  Ljavax/net/ssl/HostnameVerifier;
    MethodParameters:
                     Name  Flags
      newHostnameVerifier  

  public boolean isEndpointCheckingEnabled();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.net.smtp.SMTPSClient this
         0: .line 367
            aload 0 /* this */
            getfield org.apache.commons.net.smtp.SMTPSClient.tlsEndpointChecking:Z
            ireturn
        end local 0 // org.apache.commons.net.smtp.SMTPSClient this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/net/smtp/SMTPSClient;

  public void setEndpointCheckingEnabled(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.net.smtp.SMTPSClient this
        start local 1 // boolean enable
         0: .line 379
            aload 0 /* this */
            iload 1 /* enable */
            putfield org.apache.commons.net.smtp.SMTPSClient.tlsEndpointChecking:Z
         1: .line 380
            return
        end local 1 // boolean enable
        end local 0 // org.apache.commons.net.smtp.SMTPSClient this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/apache/commons/net/smtp/SMTPSClient;
            0    2     1  enable  Z
    MethodParameters:
        Name  Flags
      enable  
}
SourceFile: "SMTPSClient.java"