public class org.bouncycastle.est.ESTService
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.bouncycastle.est.ESTService
  super_class: java.lang.Object
{
  protected static final java.lang.String CACERTS;
    descriptor: Ljava/lang/String;
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    ConstantValue: "/cacerts"

  protected static final java.lang.String SIMPLE_ENROLL;
    descriptor: Ljava/lang/String;
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    ConstantValue: "/simpleenroll"

  protected static final java.lang.String SIMPLE_REENROLL;
    descriptor: Ljava/lang/String;
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    ConstantValue: "/simplereenroll"

  protected static final java.lang.String FULLCMC;
    descriptor: Ljava/lang/String;
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    ConstantValue: "/fullcmc"

  protected static final java.lang.String SERVERGEN;
    descriptor: Ljava/lang/String;
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    ConstantValue: "/serverkeygen"

  protected static final java.lang.String CSRATTRS;
    descriptor: Ljava/lang/String;
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    ConstantValue: "/csrattrs"

  protected static final java.util.Set<java.lang.String> illegalParts;
    descriptor: Ljava/util/Set;
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    Signature: Ljava/util/Set<Ljava/lang/String;>;

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

  private final org.bouncycastle.est.ESTClientProvider clientProvider;
    descriptor: Lorg/bouncycastle/est/ESTClientProvider;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private static final java.util.regex.Pattern pathInvalid;
    descriptor: Ljava/util/regex/Pattern;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=0, args_size=0
         0: .line 46
            new java.util.HashSet
            dup
            invokespecial java.util.HashSet.<init>:()V
            putstatic org.bouncycastle.est.ESTService.illegalParts:Ljava/util/Set;
         1: .line 50
            getstatic org.bouncycastle.est.ESTService.illegalParts:Ljava/util/Set;
            ldc "/cacerts"
            iconst_1
            invokevirtual java.lang.String.substring:(I)Ljava/lang/String;
            invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
            pop
         2: .line 51
            getstatic org.bouncycastle.est.ESTService.illegalParts:Ljava/util/Set;
            ldc "/simpleenroll"
            iconst_1
            invokevirtual java.lang.String.substring:(I)Ljava/lang/String;
            invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
            pop
         3: .line 52
            getstatic org.bouncycastle.est.ESTService.illegalParts:Ljava/util/Set;
            ldc "/simplereenroll"
            iconst_1
            invokevirtual java.lang.String.substring:(I)Ljava/lang/String;
            invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
            pop
         4: .line 53
            getstatic org.bouncycastle.est.ESTService.illegalParts:Ljava/util/Set;
            ldc "/fullcmc"
            iconst_1
            invokevirtual java.lang.String.substring:(I)Ljava/lang/String;
            invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
            pop
         5: .line 54
            getstatic org.bouncycastle.est.ESTService.illegalParts:Ljava/util/Set;
            ldc "/serverkeygen"
            iconst_1
            invokevirtual java.lang.String.substring:(I)Ljava/lang/String;
            invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
            pop
         6: .line 55
            getstatic org.bouncycastle.est.ESTService.illegalParts:Ljava/util/Set;
            ldc "/csrattrs"
            iconst_1
            invokevirtual java.lang.String.substring:(I)Ljava/lang/String;
            invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
            pop
         7: .line 62
            ldc "^[0-9a-zA-Z_\\-.~!$&'()*+,;=]+"
            invokestatic java.util.regex.Pattern.compile:(Ljava/lang/String;)Ljava/util/regex/Pattern;
            putstatic org.bouncycastle.est.ESTService.pathInvalid:Ljava/util/regex/Pattern;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>(java.lang.String, java.lang.String, org.bouncycastle.est.ESTClientProvider);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Lorg/bouncycastle/est/ESTClientProvider;)V
    flags: (0x0000) 
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.bouncycastle.est.ESTService this
        start local 1 // java.lang.String serverAuthority
        start local 2 // java.lang.String label
        start local 3 // org.bouncycastle.est.ESTClientProvider clientProvider
         0: .line 64
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 69
            aload 0 /* this */
            aload 1 /* serverAuthority */
            invokevirtual org.bouncycastle.est.ESTService.verifyServer:(Ljava/lang/String;)Ljava/lang/String;
            astore 1 /* serverAuthority */
         2: .line 71
            aload 2 /* label */
            ifnull 6
         3: .line 73
            aload 0 /* this */
            aload 2 /* label */
            invokevirtual org.bouncycastle.est.ESTService.verifyLabel:(Ljava/lang/String;)Ljava/lang/String;
            astore 2 /* label */
         4: .line 74
            aload 0 /* this */
            new java.lang.StringBuilder
            dup
            ldc "https://"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* serverAuthority */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "/.well-known/est/"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 2 /* label */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            putfield org.bouncycastle.est.ESTService.server:Ljava/lang/String;
         5: .line 75
            goto 7
         6: .line 78
      StackMap locals: org.bouncycastle.est.ESTService java.lang.String java.lang.String org.bouncycastle.est.ESTClientProvider
      StackMap stack:
            aload 0 /* this */
            new java.lang.StringBuilder
            dup
            ldc "https://"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* serverAuthority */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "/.well-known/est"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            putfield org.bouncycastle.est.ESTService.server:Ljava/lang/String;
         7: .line 81
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 3 /* clientProvider */
            putfield org.bouncycastle.est.ESTService.clientProvider:Lorg/bouncycastle/est/ESTClientProvider;
         8: .line 82
            return
        end local 3 // org.bouncycastle.est.ESTClientProvider clientProvider
        end local 2 // java.lang.String label
        end local 1 // java.lang.String serverAuthority
        end local 0 // org.bouncycastle.est.ESTService this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    9     0             this  Lorg/bouncycastle/est/ESTService;
            0    9     1  serverAuthority  Ljava/lang/String;
            0    9     2            label  Ljava/lang/String;
            0    9     3   clientProvider  Lorg/bouncycastle/est/ESTClientProvider;
    MethodParameters:
                 Name  Flags
      serverAuthority  
      label            
      clientProvider   

  public static org.bouncycastle.cert.X509CertificateHolder[] storeToArray(org.bouncycastle.util.Store<org.bouncycastle.cert.X509CertificateHolder>);
    descriptor: (Lorg/bouncycastle/util/Store;)[Lorg/bouncycastle/cert/X509CertificateHolder;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.bouncycastle.util.Store store
         0: .line 92
            aload 0 /* store */
            aconst_null
            invokestatic org.bouncycastle.est.ESTService.storeToArray:(Lorg/bouncycastle/util/Store;Lorg/bouncycastle/util/Selector;)[Lorg/bouncycastle/cert/X509CertificateHolder;
            areturn
        end local 0 // org.bouncycastle.util.Store store
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0  store  Lorg/bouncycastle/util/Store<Lorg/bouncycastle/cert/X509CertificateHolder;>;
    Signature: (Lorg/bouncycastle/util/Store<Lorg/bouncycastle/cert/X509CertificateHolder;>;)[Lorg/bouncycastle/cert/X509CertificateHolder;
    MethodParameters:
       Name  Flags
      store  

  public static org.bouncycastle.cert.X509CertificateHolder[] storeToArray(org.bouncycastle.util.Store<org.bouncycastle.cert.X509CertificateHolder>, org.bouncycastle.util.Selector<org.bouncycastle.cert.X509CertificateHolder>);
    descriptor: (Lorg/bouncycastle/util/Store;Lorg/bouncycastle/util/Selector;)[Lorg/bouncycastle/cert/X509CertificateHolder;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.bouncycastle.util.Store store
        start local 1 // org.bouncycastle.util.Selector selector
         0: .line 105
            aload 0 /* store */
            aload 1 /* selector */
            invokeinterface org.bouncycastle.util.Store.getMatches:(Lorg/bouncycastle/util/Selector;)Ljava/util/Collection;
            astore 2 /* c */
        start local 2 // java.util.Collection c
         1: .line 106
            aload 2 /* c */
            aload 2 /* c */
            invokeinterface java.util.Collection.size:()I
            anewarray org.bouncycastle.cert.X509CertificateHolder
            invokeinterface java.util.Collection.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            checkcast org.bouncycastle.cert.X509CertificateHolder[]
            areturn
        end local 2 // java.util.Collection c
        end local 1 // org.bouncycastle.util.Selector selector
        end local 0 // org.bouncycastle.util.Store store
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0     store  Lorg/bouncycastle/util/Store<Lorg/bouncycastle/cert/X509CertificateHolder;>;
            0    2     1  selector  Lorg/bouncycastle/util/Selector<Lorg/bouncycastle/cert/X509CertificateHolder;>;
            1    2     2         c  Ljava/util/Collection<Lorg/bouncycastle/cert/X509CertificateHolder;>;
    Signature: (Lorg/bouncycastle/util/Store<Lorg/bouncycastle/cert/X509CertificateHolder;>;Lorg/bouncycastle/util/Selector<Lorg/bouncycastle/cert/X509CertificateHolder;>;)[Lorg/bouncycastle/cert/X509CertificateHolder;
    MethodParameters:
          Name  Flags
      store     
      selector  

  public org.bouncycastle.est.CACertsResponse getCACerts();
    descriptor: ()Lorg/bouncycastle/est/CACertsResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=13, args_size=1
        start local 0 // org.bouncycastle.est.ESTService this
         0: .line 124
            aconst_null
            astore 1 /* resp */
        start local 1 // org.bouncycastle.est.ESTResponse resp
         1: .line 125
            aconst_null
            astore 2 /* finalThrowable */
        start local 2 // java.lang.Exception finalThrowable
         2: .line 126
            aconst_null
            astore 3 /* caCertsResponse */
        start local 3 // org.bouncycastle.est.CACertsResponse caCertsResponse
         3: .line 127
            aconst_null
            astore 4 /* url */
        start local 4 // java.net.URL url
         4: .line 131
            new java.net.URL
            dup
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            getfield org.bouncycastle.est.ESTService.server:Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc "/cacerts"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.net.URL.<init>:(Ljava/lang/String;)V
            astore 4 /* url */
         5: .line 133
            aload 0 /* this */
            getfield org.bouncycastle.est.ESTService.clientProvider:Lorg/bouncycastle/est/ESTClientProvider;
            invokeinterface org.bouncycastle.est.ESTClientProvider.makeClient:()Lorg/bouncycastle/est/ESTClient;
            astore 5 /* client */
        start local 5 // org.bouncycastle.est.ESTClient client
         6: .line 134
            new org.bouncycastle.est.ESTRequestBuilder
            dup
            ldc "GET"
            aload 4 /* url */
            invokespecial org.bouncycastle.est.ESTRequestBuilder.<init>:(Ljava/lang/String;Ljava/net/URL;)V
            aload 5 /* client */
            invokevirtual org.bouncycastle.est.ESTRequestBuilder.withClient:(Lorg/bouncycastle/est/ESTClient;)Lorg/bouncycastle/est/ESTRequestBuilder;
            invokevirtual org.bouncycastle.est.ESTRequestBuilder.build:()Lorg/bouncycastle/est/ESTRequest;
            astore 6 /* req */
        start local 6 // org.bouncycastle.est.ESTRequest req
         7: .line 135
            aload 5 /* client */
            aload 6 /* req */
            invokeinterface org.bouncycastle.est.ESTClient.doRequest:(Lorg/bouncycastle/est/ESTRequest;)Lorg/bouncycastle/est/ESTResponse;
            astore 1 /* resp */
         8: .line 137
            aconst_null
            astore 7 /* caCerts */
        start local 7 // org.bouncycastle.util.Store caCerts
         9: .line 138
            aconst_null
            astore 8 /* crlHolderStore */
        start local 8 // org.bouncycastle.util.Store crlHolderStore
        10: .line 141
            aload 1 /* resp */
            invokevirtual org.bouncycastle.est.ESTResponse.getStatusCode:()I
            sipush 200
            if_icmpne 24
        11: .line 143
            ldc "application/pkcs7-mime"
            aload 1 /* resp */
            invokevirtual org.bouncycastle.est.ESTResponse.getHeaders:()Lorg/bouncycastle/est/HttpUtil$Headers;
            ldc "Content-Type"
            invokevirtual org.bouncycastle.est.HttpUtil$Headers.getFirstValue:(Ljava/lang/String;)Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 16
        12: .line 145
            aload 1 /* resp */
            invokevirtual org.bouncycastle.est.ESTResponse.getHeaders:()Lorg/bouncycastle/est/HttpUtil$Headers;
            ldc "Content-Type"
            invokevirtual org.bouncycastle.est.HttpUtil$Headers.getFirstValue:(Ljava/lang/String;)Ljava/lang/String;
            ifnull 13
            new java.lang.StringBuilder
            dup
            ldc " got "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* resp */
            invokevirtual org.bouncycastle.est.ESTResponse.getHeaders:()Lorg/bouncycastle/est/HttpUtil$Headers;
            ldc "Content-Type"
            invokevirtual org.bouncycastle.est.HttpUtil$Headers.getFirstValue:(Ljava/lang/String;)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            goto 14
      StackMap locals: org.bouncycastle.est.ESTService org.bouncycastle.est.ESTResponse java.lang.Exception org.bouncycastle.est.CACertsResponse java.net.URL org.bouncycastle.est.ESTClient org.bouncycastle.est.ESTRequest org.bouncycastle.util.Store org.bouncycastle.util.Store
      StackMap stack:
        13: ldc " but was not present."
      StackMap locals:
      StackMap stack: java.lang.String
        14: astore 9 /* j */
        start local 9 // java.lang.String j
        15: .line 146
            new org.bouncycastle.est.ESTException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Response : "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 4 /* url */
            invokevirtual java.net.URL.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "Expecting application/pkcs7-mime "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 9 /* j */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aconst_null
            aload 1 /* resp */
            invokevirtual org.bouncycastle.est.ESTResponse.getStatusCode:()I
            aload 1 /* resp */
            invokevirtual org.bouncycastle.est.ESTResponse.getInputStream:()Ljava/io/InputStream;
            invokespecial org.bouncycastle.est.ESTException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;ILjava/io/InputStream;)V
            athrow
        end local 9 // java.lang.String j
        16: .line 151
      StackMap locals:
      StackMap stack:
            aload 1 /* resp */
            invokevirtual org.bouncycastle.est.ESTResponse.getContentLength:()Ljava/lang/Long;
            ifnull 26
            aload 1 /* resp */
            invokevirtual org.bouncycastle.est.ESTResponse.getContentLength:()Ljava/lang/Long;
            invokevirtual java.lang.Long.longValue:()J
            lconst_0
            lcmp
            ifle 26
        17: .line 153
            new org.bouncycastle.asn1.ASN1InputStream
            dup
            aload 1 /* resp */
            invokevirtual org.bouncycastle.est.ESTResponse.getInputStream:()Ljava/io/InputStream;
            invokespecial org.bouncycastle.asn1.ASN1InputStream.<init>:(Ljava/io/InputStream;)V
            astore 9 /* ain */
        start local 9 // org.bouncycastle.asn1.ASN1InputStream ain
        18: .line 154
            new org.bouncycastle.cmc.SimplePKIResponse
            dup
            aload 9 /* ain */
            invokevirtual org.bouncycastle.asn1.ASN1InputStream.readObject:()Lorg/bouncycastle/asn1/ASN1Primitive;
            checkcast org.bouncycastle.asn1.ASN1Sequence
            invokestatic org.bouncycastle.asn1.cms.ContentInfo.getInstance:(Ljava/lang/Object;)Lorg/bouncycastle/asn1/cms/ContentInfo;
            invokespecial org.bouncycastle.cmc.SimplePKIResponse.<init>:(Lorg/bouncycastle/asn1/cms/ContentInfo;)V
            astore 10 /* spkr */
        start local 10 // org.bouncycastle.cmc.SimplePKIResponse spkr
        19: .line 155
            aload 10 /* spkr */
            invokevirtual org.bouncycastle.cmc.SimplePKIResponse.getCertificates:()Lorg/bouncycastle/util/Store;
            astore 7 /* caCerts */
        20: .line 156
            aload 10 /* spkr */
            invokevirtual org.bouncycastle.cmc.SimplePKIResponse.getCRLs:()Lorg/bouncycastle/util/Store;
            astore 8 /* crlHolderStore */
        end local 10 // org.bouncycastle.cmc.SimplePKIResponse spkr
        end local 9 // org.bouncycastle.asn1.ASN1InputStream ain
        21: .line 158
            goto 26
        22: .line 159
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 9 /* ex */
        start local 9 // java.lang.Throwable ex
        23: .line 161
            new org.bouncycastle.est.ESTException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Decoding CACerts: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 4 /* url */
            invokevirtual java.net.URL.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc " "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 9 /* ex */
            invokevirtual java.lang.Throwable.getMessage:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 9 /* ex */
            aload 1 /* resp */
            invokevirtual org.bouncycastle.est.ESTResponse.getStatusCode:()I
            aload 1 /* resp */
            invokevirtual org.bouncycastle.est.ESTResponse.getInputStream:()Ljava/io/InputStream;
            invokespecial org.bouncycastle.est.ESTException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;ILjava/io/InputStream;)V
            athrow
        end local 9 // java.lang.Throwable ex
        24: .line 165
      StackMap locals:
      StackMap stack:
            aload 1 /* resp */
            invokevirtual org.bouncycastle.est.ESTResponse.getStatusCode:()I
            sipush 204
            if_icmpeq 26
        25: .line 167
            new org.bouncycastle.est.ESTException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Get CACerts: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 4 /* url */
            invokevirtual java.net.URL.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aconst_null
            aload 1 /* resp */
            invokevirtual org.bouncycastle.est.ESTResponse.getStatusCode:()I
            aload 1 /* resp */
            invokevirtual org.bouncycastle.est.ESTResponse.getInputStream:()Ljava/io/InputStream;
            invokespecial org.bouncycastle.est.ESTException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;ILjava/io/InputStream;)V
            athrow
        26: .line 170
      StackMap locals:
      StackMap stack:
            new org.bouncycastle.est.CACertsResponse
            dup
            aload 7 /* caCerts */
            aload 8 /* crlHolderStore */
            aload 6 /* req */
            aload 1 /* resp */
            invokevirtual org.bouncycastle.est.ESTResponse.getSource:()Lorg/bouncycastle/est/Source;
            aload 0 /* this */
            getfield org.bouncycastle.est.ESTService.clientProvider:Lorg/bouncycastle/est/ESTClientProvider;
            invokeinterface org.bouncycastle.est.ESTClientProvider.isTrusted:()Z
            invokespecial org.bouncycastle.est.CACertsResponse.<init>:(Lorg/bouncycastle/util/Store;Lorg/bouncycastle/util/Store;Lorg/bouncycastle/est/ESTRequest;Lorg/bouncycastle/est/Source;Z)V
            astore 3 /* caCertsResponse */
        end local 8 // org.bouncycastle.util.Store crlHolderStore
        end local 7 // org.bouncycastle.util.Store caCerts
        end local 6 // org.bouncycastle.est.ESTRequest req
        end local 5 // org.bouncycastle.est.ESTClient client
        27: .line 172
            goto 39
        28: .line 173
      StackMap locals: org.bouncycastle.est.ESTService org.bouncycastle.est.ESTResponse java.lang.Exception org.bouncycastle.est.CACertsResponse java.net.URL
      StackMap stack: java.lang.Throwable
            astore 5 /* t */
        start local 5 // java.lang.Throwable t
        29: .line 176
            aload 5 /* t */
            instanceof org.bouncycastle.est.ESTException
            ifeq 31
        30: .line 178
            aload 5 /* t */
            checkcast org.bouncycastle.est.ESTException
            athrow
        31: .line 182
      StackMap locals: java.lang.Throwable
      StackMap stack:
            new org.bouncycastle.est.ESTException
            dup
            aload 5 /* t */
            invokevirtual java.lang.Throwable.getMessage:()Ljava/lang/String;
            aload 5 /* t */
            invokespecial org.bouncycastle.est.ESTException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 5 // java.lang.Throwable t
        32: .line 186
      StackMap locals: org.bouncycastle.est.ESTService org.bouncycastle.est.ESTResponse java.lang.Exception org.bouncycastle.est.CACertsResponse java.net.URL
      StackMap stack: java.lang.Throwable
            astore 11
        33: .line 187
            aload 1 /* resp */
            ifnull 38
        34: .line 191
            aload 1 /* resp */
            invokevirtual org.bouncycastle.est.ESTResponse.close:()V
        35: .line 192
            goto 38
        36: .line 193
      StackMap locals: org.bouncycastle.est.ESTService org.bouncycastle.est.ESTResponse java.lang.Exception org.bouncycastle.est.CACertsResponse java.net.URL top top top top top top java.lang.Throwable
      StackMap stack: java.lang.Exception
            astore 12 /* t */
        start local 12 // java.lang.Exception t
        37: .line 195
            aload 12 /* t */
            astore 2 /* finalThrowable */
        end local 12 // java.lang.Exception t
        38: .line 198
      StackMap locals:
      StackMap stack:
            aload 11
            athrow
        39: .line 187
      StackMap locals: org.bouncycastle.est.ESTService org.bouncycastle.est.ESTResponse java.lang.Exception org.bouncycastle.est.CACertsResponse java.net.URL
      StackMap stack:
            aload 1 /* resp */
            ifnull 44
        40: .line 191
            aload 1 /* resp */
            invokevirtual org.bouncycastle.est.ESTResponse.close:()V
        41: .line 192
            goto 44
        42: .line 193
      StackMap locals:
      StackMap stack: java.lang.Exception
            astore 12 /* t */
        start local 12 // java.lang.Exception t
        43: .line 195
            aload 12 /* t */
            astore 2 /* finalThrowable */
        end local 12 // java.lang.Exception t
        44: .line 200
      StackMap locals:
      StackMap stack:
            aload 2 /* finalThrowable */
            ifnull 48
        45: .line 202
            aload 2 /* finalThrowable */
            instanceof org.bouncycastle.est.ESTException
            ifeq 47
        46: .line 204
            aload 2 /* finalThrowable */
            athrow
        47: .line 206
      StackMap locals:
      StackMap stack:
            new org.bouncycastle.est.ESTException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Get CACerts: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 4 /* url */
            invokevirtual java.net.URL.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 2 /* finalThrowable */
            aload 1 /* resp */
            invokevirtual org.bouncycastle.est.ESTResponse.getStatusCode:()I
            aconst_null
            invokespecial org.bouncycastle.est.ESTException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;ILjava/io/InputStream;)V
            athrow
        48: .line 209
      StackMap locals:
      StackMap stack:
            aload 3 /* caCertsResponse */
            areturn
        end local 4 // java.net.URL url
        end local 3 // org.bouncycastle.est.CACertsResponse caCertsResponse
        end local 2 // java.lang.Exception finalThrowable
        end local 1 // org.bouncycastle.est.ESTResponse resp
        end local 0 // org.bouncycastle.est.ESTService this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   49     0             this  Lorg/bouncycastle/est/ESTService;
            1   49     1             resp  Lorg/bouncycastle/est/ESTResponse;
            2   49     2   finalThrowable  Ljava/lang/Exception;
            3   49     3  caCertsResponse  Lorg/bouncycastle/est/CACertsResponse;
            4   49     4              url  Ljava/net/URL;
            6   27     5           client  Lorg/bouncycastle/est/ESTClient;
            7   27     6              req  Lorg/bouncycastle/est/ESTRequest;
            9   27     7          caCerts  Lorg/bouncycastle/util/Store<Lorg/bouncycastle/cert/X509CertificateHolder;>;
           10   27     8   crlHolderStore  Lorg/bouncycastle/util/Store<Lorg/bouncycastle/cert/X509CRLHolder;>;
           15   16     9                j  Ljava/lang/String;
           18   21     9              ain  Lorg/bouncycastle/asn1/ASN1InputStream;
           19   21    10             spkr  Lorg/bouncycastle/cmc/SimplePKIResponse;
           23   24     9               ex  Ljava/lang/Throwable;
           29   32     5                t  Ljava/lang/Throwable;
           37   38    12                t  Ljava/lang/Exception;
           43   44    12                t  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
          16    21      22  Class java.lang.Throwable
           4    27      28  Class java.lang.Throwable
           4    32      32  any
          34    35      36  Class java.lang.Exception
          40    41      42  Class java.lang.Exception
    Exceptions:
      throws java.lang.Exception

  public org.bouncycastle.est.EnrollmentResponse simpleEnroll(org.bouncycastle.est.EnrollmentResponse);
    descriptor: (Lorg/bouncycastle/est/EnrollmentResponse;)Lorg/bouncycastle/est/EnrollmentResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=2
        start local 0 // org.bouncycastle.est.ESTService this
        start local 1 // org.bouncycastle.est.EnrollmentResponse priorResponse
         0: .line 224
            aload 0 /* this */
            getfield org.bouncycastle.est.ESTService.clientProvider:Lorg/bouncycastle/est/ESTClientProvider;
            invokeinterface org.bouncycastle.est.ESTClientProvider.isTrusted:()Z
            ifne 2
         1: .line 226
            new java.lang.IllegalStateException
            dup
            ldc "No trust anchors."
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 229
      StackMap locals:
      StackMap stack:
            aconst_null
            astore 2 /* resp */
        start local 2 // org.bouncycastle.est.ESTResponse resp
         3: .line 233
            aload 0 /* this */
            getfield org.bouncycastle.est.ESTService.clientProvider:Lorg/bouncycastle/est/ESTClientProvider;
            invokeinterface org.bouncycastle.est.ESTClientProvider.makeClient:()Lorg/bouncycastle/est/ESTClient;
            astore 3 /* client */
        start local 3 // org.bouncycastle.est.ESTClient client
         4: .line 234
            aload 3 /* client */
            new org.bouncycastle.est.ESTRequestBuilder
            dup
            aload 1 /* priorResponse */
            invokevirtual org.bouncycastle.est.EnrollmentResponse.getRequestToRetry:()Lorg/bouncycastle/est/ESTRequest;
            invokespecial org.bouncycastle.est.ESTRequestBuilder.<init>:(Lorg/bouncycastle/est/ESTRequest;)V
            aload 3 /* client */
            invokevirtual org.bouncycastle.est.ESTRequestBuilder.withClient:(Lorg/bouncycastle/est/ESTClient;)Lorg/bouncycastle/est/ESTRequestBuilder;
            invokevirtual org.bouncycastle.est.ESTRequestBuilder.build:()Lorg/bouncycastle/est/ESTRequest;
            invokeinterface org.bouncycastle.est.ESTClient.doRequest:(Lorg/bouncycastle/est/ESTRequest;)Lorg/bouncycastle/est/ESTResponse;
            astore 2 /* resp */
         5: .line 235
            aload 0 /* this */
            aload 2 /* resp */
            invokevirtual org.bouncycastle.est.ESTService.handleEnrollResponse:(Lorg/bouncycastle/est/ESTResponse;)Lorg/bouncycastle/est/EnrollmentResponse;
            astore 5
         6: .line 250
            aload 2 /* resp */
            ifnull 8
         7: .line 252
            aload 2 /* resp */
            invokevirtual org.bouncycastle.est.ESTResponse.close:()V
         8: .line 235
      StackMap locals: org.bouncycastle.est.ESTService org.bouncycastle.est.EnrollmentResponse org.bouncycastle.est.ESTResponse org.bouncycastle.est.ESTClient top org.bouncycastle.est.EnrollmentResponse
      StackMap stack:
            aload 5
            areturn
        end local 3 // org.bouncycastle.est.ESTClient client
         9: .line 237
      StackMap locals: org.bouncycastle.est.ESTService org.bouncycastle.est.EnrollmentResponse org.bouncycastle.est.ESTResponse
      StackMap stack: java.lang.Throwable
            astore 3 /* t */
        start local 3 // java.lang.Throwable t
        10: .line 239
            aload 3 /* t */
            instanceof org.bouncycastle.est.ESTException
            ifeq 12
        11: .line 241
            aload 3 /* t */
            checkcast org.bouncycastle.est.ESTException
            athrow
        12: .line 245
      StackMap locals: java.lang.Throwable
      StackMap stack:
            new org.bouncycastle.est.ESTException
            dup
            aload 3 /* t */
            invokevirtual java.lang.Throwable.getMessage:()Ljava/lang/String;
            aload 3 /* t */
            invokespecial org.bouncycastle.est.ESTException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 3 // java.lang.Throwable t
        13: .line 249
      StackMap locals: org.bouncycastle.est.ESTService org.bouncycastle.est.EnrollmentResponse org.bouncycastle.est.ESTResponse
      StackMap stack: java.lang.Throwable
            astore 4
        14: .line 250
            aload 2 /* resp */
            ifnull 16
        15: .line 252
            aload 2 /* resp */
            invokevirtual org.bouncycastle.est.ESTResponse.close:()V
        16: .line 254
      StackMap locals: org.bouncycastle.est.ESTService org.bouncycastle.est.EnrollmentResponse org.bouncycastle.est.ESTResponse top java.lang.Throwable
      StackMap stack:
            aload 4
            athrow
        end local 2 // org.bouncycastle.est.ESTResponse resp
        end local 1 // org.bouncycastle.est.EnrollmentResponse priorResponse
        end local 0 // org.bouncycastle.est.ESTService this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   17     0           this  Lorg/bouncycastle/est/ESTService;
            0   17     1  priorResponse  Lorg/bouncycastle/est/EnrollmentResponse;
            3   17     2           resp  Lorg/bouncycastle/est/ESTResponse;
            4    9     3         client  Lorg/bouncycastle/est/ESTClient;
           10   13     3              t  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           3     6       9  Class java.lang.Throwable
           3     6      13  any
           9    13      13  any
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
               Name  Flags
      priorResponse  

  public org.bouncycastle.est.EnrollmentResponse simpleEnroll(boolean, org.bouncycastle.pkcs.PKCS10CertificationRequest, org.bouncycastle.est.ESTAuth);
    descriptor: (ZLorg/bouncycastle/pkcs/PKCS10CertificationRequest;Lorg/bouncycastle/est/ESTAuth;)Lorg/bouncycastle/est/EnrollmentResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=11, args_size=4
        start local 0 // org.bouncycastle.est.ESTService this
        start local 1 // boolean reenroll
        start local 2 // org.bouncycastle.pkcs.PKCS10CertificationRequest certificationRequest
        start local 3 // org.bouncycastle.est.ESTAuth auth
         0: .line 272
            aload 0 /* this */
            getfield org.bouncycastle.est.ESTService.clientProvider:Lorg/bouncycastle/est/ESTClientProvider;
            invokeinterface org.bouncycastle.est.ESTClientProvider.isTrusted:()Z
            ifne 2
         1: .line 274
            new java.lang.IllegalStateException
            dup
            ldc "No trust anchors."
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 277
      StackMap locals:
      StackMap stack:
            aconst_null
            astore 4 /* resp */
        start local 4 // org.bouncycastle.est.ESTResponse resp
         3: .line 280
            aload 0 /* this */
            aload 2 /* certificationRequest */
            invokevirtual org.bouncycastle.pkcs.PKCS10CertificationRequest.getEncoded:()[B
            invokevirtual org.bouncycastle.est.ESTService.annotateRequest:([B)Ljava/lang/String;
            invokevirtual java.lang.String.getBytes:()[B
            astore 5 /* data */
        start local 5 // byte[] data
         4: .line 282
            new java.net.URL
            dup
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            getfield org.bouncycastle.est.ESTService.server:Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* reenroll */
            ifeq 5
            ldc "/simplereenroll"
            goto 6
      StackMap locals: org.bouncycastle.est.ESTService int org.bouncycastle.pkcs.PKCS10CertificationRequest org.bouncycastle.est.ESTAuth org.bouncycastle.est.ESTResponse byte[]
      StackMap stack: new 4 new 4 java.lang.StringBuilder
         5: ldc "/simpleenroll"
      StackMap locals: org.bouncycastle.est.ESTService int org.bouncycastle.pkcs.PKCS10CertificationRequest org.bouncycastle.est.ESTAuth org.bouncycastle.est.ESTResponse byte[]
      StackMap stack: new 4 new 4 java.lang.StringBuilder java.lang.String
         6: invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.net.URL.<init>:(Ljava/lang/String;)V
            astore 6 /* url */
        start local 6 // java.net.URL url
         7: .line 285
            aload 0 /* this */
            getfield org.bouncycastle.est.ESTService.clientProvider:Lorg/bouncycastle/est/ESTClientProvider;
            invokeinterface org.bouncycastle.est.ESTClientProvider.makeClient:()Lorg/bouncycastle/est/ESTClient;
            astore 7 /* client */
        start local 7 // org.bouncycastle.est.ESTClient client
         8: .line 286
            new org.bouncycastle.est.ESTRequestBuilder
            dup
            ldc "POST"
            aload 6 /* url */
            invokespecial org.bouncycastle.est.ESTRequestBuilder.<init>:(Ljava/lang/String;Ljava/net/URL;)V
            aload 5 /* data */
            invokevirtual org.bouncycastle.est.ESTRequestBuilder.withData:([B)Lorg/bouncycastle/est/ESTRequestBuilder;
            aload 7 /* client */
            invokevirtual org.bouncycastle.est.ESTRequestBuilder.withClient:(Lorg/bouncycastle/est/ESTClient;)Lorg/bouncycastle/est/ESTRequestBuilder;
            astore 8 /* req */
        start local 8 // org.bouncycastle.est.ESTRequestBuilder req
         9: .line 288
            aload 8 /* req */
            ldc "Content-Type"
            ldc "application/pkcs10"
            invokevirtual org.bouncycastle.est.ESTRequestBuilder.addHeader:(Ljava/lang/String;Ljava/lang/String;)Lorg/bouncycastle/est/ESTRequestBuilder;
            pop
        10: .line 289
            aload 8 /* req */
            ldc "Content-Length"
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            aload 5 /* data */
            arraylength
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual org.bouncycastle.est.ESTRequestBuilder.addHeader:(Ljava/lang/String;Ljava/lang/String;)Lorg/bouncycastle/est/ESTRequestBuilder;
            pop
        11: .line 290
            aload 8 /* req */
            ldc "Content-Transfer-Encoding"
            ldc "base64"
            invokevirtual org.bouncycastle.est.ESTRequestBuilder.addHeader:(Ljava/lang/String;Ljava/lang/String;)Lorg/bouncycastle/est/ESTRequestBuilder;
            pop
        12: .line 292
            aload 3 /* auth */
            ifnull 14
        13: .line 294
            aload 3 /* auth */
            aload 8 /* req */
            invokeinterface org.bouncycastle.est.ESTAuth.applyAuth:(Lorg/bouncycastle/est/ESTRequestBuilder;)V
        14: .line 297
      StackMap locals: java.net.URL org.bouncycastle.est.ESTClient org.bouncycastle.est.ESTRequestBuilder
      StackMap stack:
            aload 7 /* client */
            aload 8 /* req */
            invokevirtual org.bouncycastle.est.ESTRequestBuilder.build:()Lorg/bouncycastle/est/ESTRequest;
            invokeinterface org.bouncycastle.est.ESTClient.doRequest:(Lorg/bouncycastle/est/ESTRequest;)Lorg/bouncycastle/est/ESTResponse;
            astore 4 /* resp */
        15: .line 299
            aload 0 /* this */
            aload 4 /* resp */
            invokevirtual org.bouncycastle.est.ESTService.handleEnrollResponse:(Lorg/bouncycastle/est/ESTResponse;)Lorg/bouncycastle/est/EnrollmentResponse;
            astore 10
        16: .line 315
            aload 4 /* resp */
            ifnull 18
        17: .line 317
            aload 4 /* resp */
            invokevirtual org.bouncycastle.est.ESTResponse.close:()V
        18: .line 299
      StackMap locals: org.bouncycastle.est.ESTService int org.bouncycastle.pkcs.PKCS10CertificationRequest org.bouncycastle.est.ESTAuth org.bouncycastle.est.ESTResponse byte[] java.net.URL org.bouncycastle.est.ESTClient org.bouncycastle.est.ESTRequestBuilder top org.bouncycastle.est.EnrollmentResponse
      StackMap stack:
            aload 10
            areturn
        end local 8 // org.bouncycastle.est.ESTRequestBuilder req
        end local 7 // org.bouncycastle.est.ESTClient client
        end local 6 // java.net.URL url
        end local 5 // byte[] data
        19: .line 302
      StackMap locals: org.bouncycastle.est.ESTService int org.bouncycastle.pkcs.PKCS10CertificationRequest org.bouncycastle.est.ESTAuth org.bouncycastle.est.ESTResponse
      StackMap stack: java.lang.Throwable
            astore 5 /* t */
        start local 5 // java.lang.Throwable t
        20: .line 304
            aload 5 /* t */
            instanceof org.bouncycastle.est.ESTException
            ifeq 22
        21: .line 306
            aload 5 /* t */
            checkcast org.bouncycastle.est.ESTException
            athrow
        22: .line 310
      StackMap locals: java.lang.Throwable
      StackMap stack:
            new org.bouncycastle.est.ESTException
            dup
            aload 5 /* t */
            invokevirtual java.lang.Throwable.getMessage:()Ljava/lang/String;
            aload 5 /* t */
            invokespecial org.bouncycastle.est.ESTException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 5 // java.lang.Throwable t
        23: .line 314
      StackMap locals: org.bouncycastle.est.ESTService int org.bouncycastle.pkcs.PKCS10CertificationRequest org.bouncycastle.est.ESTAuth org.bouncycastle.est.ESTResponse
      StackMap stack: java.lang.Throwable
            astore 9
        24: .line 315
            aload 4 /* resp */
            ifnull 26
        25: .line 317
            aload 4 /* resp */
            invokevirtual org.bouncycastle.est.ESTResponse.close:()V
        26: .line 319
      StackMap locals: org.bouncycastle.est.ESTService int org.bouncycastle.pkcs.PKCS10CertificationRequest org.bouncycastle.est.ESTAuth org.bouncycastle.est.ESTResponse top top top top java.lang.Throwable
      StackMap stack:
            aload 9
            athrow
        end local 4 // org.bouncycastle.est.ESTResponse resp
        end local 3 // org.bouncycastle.est.ESTAuth auth
        end local 2 // org.bouncycastle.pkcs.PKCS10CertificationRequest certificationRequest
        end local 1 // boolean reenroll
        end local 0 // org.bouncycastle.est.ESTService this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   27     0                  this  Lorg/bouncycastle/est/ESTService;
            0   27     1              reenroll  Z
            0   27     2  certificationRequest  Lorg/bouncycastle/pkcs/PKCS10CertificationRequest;
            0   27     3                  auth  Lorg/bouncycastle/est/ESTAuth;
            3   27     4                  resp  Lorg/bouncycastle/est/ESTResponse;
            4   19     5                  data  [B
            7   19     6                   url  Ljava/net/URL;
            8   19     7                client  Lorg/bouncycastle/est/ESTClient;
            9   19     8                   req  Lorg/bouncycastle/est/ESTRequestBuilder;
           20   23     5                     t  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           3    16      19  Class java.lang.Throwable
           3    16      23  any
          19    23      23  any
    Exceptions:
      throws java.io.IOException
    MethodParameters:
                      Name  Flags
      reenroll              
      certificationRequest  
      auth                  

  public org.bouncycastle.est.EnrollmentResponse simpleEnrollPoP(boolean, org.bouncycastle.pkcs.PKCS10CertificationRequestBuilder, org.bouncycastle.operator.ContentSigner, org.bouncycastle.est.ESTAuth);
    descriptor: (ZLorg/bouncycastle/pkcs/PKCS10CertificationRequestBuilder;Lorg/bouncycastle/operator/ContentSigner;Lorg/bouncycastle/est/ESTAuth;)Lorg/bouncycastle/est/EnrollmentResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=11, args_size=5
        start local 0 // org.bouncycastle.est.ESTService this
        start local 1 // boolean reEnroll
        start local 2 // org.bouncycastle.pkcs.PKCS10CertificationRequestBuilder builder
        start local 3 // org.bouncycastle.operator.ContentSigner contentSigner
        start local 4 // org.bouncycastle.est.ESTAuth auth
         0: .line 338
            aload 0 /* this */
            getfield org.bouncycastle.est.ESTService.clientProvider:Lorg/bouncycastle/est/ESTClientProvider;
            invokeinterface org.bouncycastle.est.ESTClientProvider.isTrusted:()Z
            ifne 2
         1: .line 340
            new java.lang.IllegalStateException
            dup
            ldc "No trust anchors."
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 343
      StackMap locals:
      StackMap stack:
            aconst_null
            astore 5 /* resp */
        start local 5 // org.bouncycastle.est.ESTResponse resp
         3: .line 346
            new java.net.URL
            dup
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            getfield org.bouncycastle.est.ESTService.server:Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* reEnroll */
            ifeq 4
            ldc "/simplereenroll"
            goto 5
      StackMap locals: org.bouncycastle.est.ESTService int org.bouncycastle.pkcs.PKCS10CertificationRequestBuilder org.bouncycastle.operator.ContentSigner org.bouncycastle.est.ESTAuth org.bouncycastle.est.ESTResponse
      StackMap stack: new 3 new 3 java.lang.StringBuilder
         4: ldc "/simpleenroll"
      StackMap locals: org.bouncycastle.est.ESTService int org.bouncycastle.pkcs.PKCS10CertificationRequestBuilder org.bouncycastle.operator.ContentSigner org.bouncycastle.est.ESTAuth org.bouncycastle.est.ESTResponse
      StackMap stack: new 3 new 3 java.lang.StringBuilder java.lang.String
         5: invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.net.URL.<init>:(Ljava/lang/String;)V
            astore 6 /* url */
        start local 6 // java.net.URL url
         6: .line 347
            aload 0 /* this */
            getfield org.bouncycastle.est.ESTService.clientProvider:Lorg/bouncycastle/est/ESTClientProvider;
            invokeinterface org.bouncycastle.est.ESTClientProvider.makeClient:()Lorg/bouncycastle/est/ESTClient;
            astore 7 /* client */
        start local 7 // org.bouncycastle.est.ESTClient client
         7: .line 353
            new org.bouncycastle.est.ESTRequestBuilder
            dup
            ldc "POST"
            aload 6 /* url */
            invokespecial org.bouncycastle.est.ESTRequestBuilder.<init>:(Ljava/lang/String;Ljava/net/URL;)V
            aload 7 /* client */
            invokevirtual org.bouncycastle.est.ESTRequestBuilder.withClient:(Lorg/bouncycastle/est/ESTClient;)Lorg/bouncycastle/est/ESTRequestBuilder;
            new org.bouncycastle.est.ESTService$1
            dup
            aload 0 /* this */
            aload 2 /* builder */
            aload 3 /* contentSigner */
            invokespecial org.bouncycastle.est.ESTService$1.<init>:(Lorg/bouncycastle/est/ESTService;Lorg/bouncycastle/pkcs/PKCS10CertificationRequestBuilder;Lorg/bouncycastle/operator/ContentSigner;)V
            invokevirtual org.bouncycastle.est.ESTRequestBuilder.withConnectionListener:(Lorg/bouncycastle/est/ESTSourceConnectionListener;)Lorg/bouncycastle/est/ESTRequestBuilder;
            astore 8 /* reqBldr */
        start local 8 // org.bouncycastle.est.ESTRequestBuilder reqBldr
         8: .line 388
            aload 4 /* auth */
            ifnull 10
         9: .line 390
            aload 4 /* auth */
            aload 8 /* reqBldr */
            invokeinterface org.bouncycastle.est.ESTAuth.applyAuth:(Lorg/bouncycastle/est/ESTRequestBuilder;)V
        10: .line 393
      StackMap locals: java.net.URL org.bouncycastle.est.ESTClient org.bouncycastle.est.ESTRequestBuilder
      StackMap stack:
            aload 7 /* client */
            aload 8 /* reqBldr */
            invokevirtual org.bouncycastle.est.ESTRequestBuilder.build:()Lorg/bouncycastle/est/ESTRequest;
            invokeinterface org.bouncycastle.est.ESTClient.doRequest:(Lorg/bouncycastle/est/ESTRequest;)Lorg/bouncycastle/est/ESTResponse;
            astore 5 /* resp */
        11: .line 395
            aload 0 /* this */
            aload 5 /* resp */
            invokevirtual org.bouncycastle.est.ESTService.handleEnrollResponse:(Lorg/bouncycastle/est/ESTResponse;)Lorg/bouncycastle/est/EnrollmentResponse;
            astore 10
        12: .line 411
            aload 5 /* resp */
            ifnull 14
        13: .line 413
            aload 5 /* resp */
            invokevirtual org.bouncycastle.est.ESTResponse.close:()V
        14: .line 395
      StackMap locals: org.bouncycastle.est.ESTService int org.bouncycastle.pkcs.PKCS10CertificationRequestBuilder org.bouncycastle.operator.ContentSigner org.bouncycastle.est.ESTAuth org.bouncycastle.est.ESTResponse java.net.URL org.bouncycastle.est.ESTClient org.bouncycastle.est.ESTRequestBuilder top org.bouncycastle.est.EnrollmentResponse
      StackMap stack:
            aload 10
            areturn
        end local 8 // org.bouncycastle.est.ESTRequestBuilder reqBldr
        end local 7 // org.bouncycastle.est.ESTClient client
        end local 6 // java.net.URL url
        15: .line 398
      StackMap locals: org.bouncycastle.est.ESTService int org.bouncycastle.pkcs.PKCS10CertificationRequestBuilder org.bouncycastle.operator.ContentSigner org.bouncycastle.est.ESTAuth org.bouncycastle.est.ESTResponse
      StackMap stack: java.lang.Throwable
            astore 6 /* t */
        start local 6 // java.lang.Throwable t
        16: .line 400
            aload 6 /* t */
            instanceof org.bouncycastle.est.ESTException
            ifeq 18
        17: .line 402
            aload 6 /* t */
            checkcast org.bouncycastle.est.ESTException
            athrow
        18: .line 406
      StackMap locals: java.lang.Throwable
      StackMap stack:
            new org.bouncycastle.est.ESTException
            dup
            aload 6 /* t */
            invokevirtual java.lang.Throwable.getMessage:()Ljava/lang/String;
            aload 6 /* t */
            invokespecial org.bouncycastle.est.ESTException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 6 // java.lang.Throwable t
        19: .line 410
      StackMap locals: org.bouncycastle.est.ESTService int org.bouncycastle.pkcs.PKCS10CertificationRequestBuilder org.bouncycastle.operator.ContentSigner org.bouncycastle.est.ESTAuth org.bouncycastle.est.ESTResponse
      StackMap stack: java.lang.Throwable
            astore 9
        20: .line 411
            aload 5 /* resp */
            ifnull 22
        21: .line 413
            aload 5 /* resp */
            invokevirtual org.bouncycastle.est.ESTResponse.close:()V
        22: .line 415
      StackMap locals: org.bouncycastle.est.ESTService int org.bouncycastle.pkcs.PKCS10CertificationRequestBuilder org.bouncycastle.operator.ContentSigner org.bouncycastle.est.ESTAuth org.bouncycastle.est.ESTResponse top top top java.lang.Throwable
      StackMap stack:
            aload 9
            athrow
        end local 5 // org.bouncycastle.est.ESTResponse resp
        end local 4 // org.bouncycastle.est.ESTAuth auth
        end local 3 // org.bouncycastle.operator.ContentSigner contentSigner
        end local 2 // org.bouncycastle.pkcs.PKCS10CertificationRequestBuilder builder
        end local 1 // boolean reEnroll
        end local 0 // org.bouncycastle.est.ESTService this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   23     0           this  Lorg/bouncycastle/est/ESTService;
            0   23     1       reEnroll  Z
            0   23     2        builder  Lorg/bouncycastle/pkcs/PKCS10CertificationRequestBuilder;
            0   23     3  contentSigner  Lorg/bouncycastle/operator/ContentSigner;
            0   23     4           auth  Lorg/bouncycastle/est/ESTAuth;
            3   23     5           resp  Lorg/bouncycastle/est/ESTResponse;
            6   15     6            url  Ljava/net/URL;
            7   15     7         client  Lorg/bouncycastle/est/ESTClient;
            8   15     8        reqBldr  Lorg/bouncycastle/est/ESTRequestBuilder;
           16   19     6              t  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           3    12      15  Class java.lang.Throwable
           3    12      19  any
          15    19      19  any
    Exceptions:
      throws java.io.IOException
    MethodParameters:
               Name  Flags
      reEnroll       
      builder        final
      contentSigner  final
      auth           

  protected org.bouncycastle.est.EnrollmentResponse handleEnrollResponse(org.bouncycastle.est.ESTResponse);
    descriptor: (Lorg/bouncycastle/est/ESTResponse;)Lorg/bouncycastle/est/EnrollmentResponse;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=7, locals=8, args_size=2
        start local 0 // org.bouncycastle.est.ESTService this
        start local 1 // org.bouncycastle.est.ESTResponse resp
         0: .line 431
            aload 1 /* resp */
            invokevirtual org.bouncycastle.est.ESTResponse.getOriginalRequest:()Lorg/bouncycastle/est/ESTRequest;
            astore 2 /* req */
        start local 2 // org.bouncycastle.est.ESTRequest req
         1: .line 432
            aconst_null
            astore 3 /* enrolled */
        start local 3 // org.bouncycastle.util.Store enrolled
         2: .line 433
            aload 1 /* resp */
            invokevirtual org.bouncycastle.est.ESTResponse.getStatusCode:()I
            sipush 202
            if_icmpne 22
         3: .line 436
            aload 1 /* resp */
            ldc "Retry-After"
            invokevirtual org.bouncycastle.est.ESTResponse.getHeader:(Ljava/lang/String;)Ljava/lang/String;
            astore 4 /* rt */
        start local 4 // java.lang.String rt
         4: .line 438
            aload 4 /* rt */
            ifnonnull 6
         5: .line 440
            new org.bouncycastle.est.ESTException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Got Status 202 but not Retry-After header from: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 2 /* req */
            invokevirtual org.bouncycastle.est.ESTRequest.getURL:()Ljava/net/URL;
            invokevirtual java.net.URL.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial org.bouncycastle.est.ESTException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 443
      StackMap locals: org.bouncycastle.est.ESTRequest org.bouncycastle.util.Store java.lang.String
      StackMap stack:
            ldc -1
            lstore 5 /* notBefore */
        start local 5 // long notBefore
         7: .line 448
            invokestatic java.lang.System.currentTimeMillis:()J
            aload 4 /* rt */
            invokestatic java.lang.Long.parseLong:(Ljava/lang/String;)J
            ldc 1000
            lmul
            ladd
            lstore 5 /* notBefore */
         8: .line 449
            goto 21
         9: .line 450
      StackMap locals: org.bouncycastle.est.ESTService org.bouncycastle.est.ESTResponse org.bouncycastle.est.ESTRequest org.bouncycastle.util.Store java.lang.String long
      StackMap stack: java.lang.NumberFormatException
            pop
        10: .line 454
            new java.text.SimpleDateFormat
            dup
        11: .line 455
            ldc "EEE, dd MMM yyyy HH:mm:ss z"
            getstatic java.util.Locale.US:Ljava/util/Locale;
        12: .line 454
            invokespecial java.text.SimpleDateFormat.<init>:(Ljava/lang/String;Ljava/util/Locale;)V
            astore 7 /* dateFormat */
        start local 7 // java.text.SimpleDateFormat dateFormat
        13: .line 456
            aload 7 /* dateFormat */
            ldc "GMT"
            invokestatic java.util.TimeZone.getTimeZone:(Ljava/lang/String;)Ljava/util/TimeZone;
            invokevirtual java.text.SimpleDateFormat.setTimeZone:(Ljava/util/TimeZone;)V
        14: .line 457
            aload 7 /* dateFormat */
            aload 4 /* rt */
            invokevirtual java.text.SimpleDateFormat.parse:(Ljava/lang/String;)Ljava/util/Date;
            invokevirtual java.util.Date.getTime:()J
            lstore 5 /* notBefore */
        end local 7 // java.text.SimpleDateFormat dateFormat
        15: .line 458
            goto 21
        16: .line 459
      StackMap locals:
      StackMap stack: java.lang.Exception
            astore 7 /* ex */
        start local 7 // java.lang.Exception ex
        17: .line 461
            new org.bouncycastle.est.ESTException
            dup
        18: .line 462
            new java.lang.StringBuilder
            dup
            ldc "Unable to parse Retry-After header:"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 2 /* req */
            invokevirtual org.bouncycastle.est.ESTRequest.getURL:()Ljava/net/URL;
            invokevirtual java.net.URL.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc " "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 7 /* ex */
            invokevirtual java.lang.Exception.getMessage:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aconst_null
        19: .line 463
            aload 1 /* resp */
            invokevirtual org.bouncycastle.est.ESTResponse.getStatusCode:()I
            aload 1 /* resp */
            invokevirtual org.bouncycastle.est.ESTResponse.getInputStream:()Ljava/io/InputStream;
        20: .line 461
            invokespecial org.bouncycastle.est.ESTException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;ILjava/io/InputStream;)V
            athrow
        end local 7 // java.lang.Exception ex
        21: .line 467
      StackMap locals:
      StackMap stack:
            new org.bouncycastle.est.EnrollmentResponse
            dup
            aconst_null
            lload 5 /* notBefore */
            aload 2 /* req */
            aload 1 /* resp */
            invokevirtual org.bouncycastle.est.ESTResponse.getSource:()Lorg/bouncycastle/est/Source;
            invokespecial org.bouncycastle.est.EnrollmentResponse.<init>:(Lorg/bouncycastle/util/Store;JLorg/bouncycastle/est/ESTRequest;Lorg/bouncycastle/est/Source;)V
            areturn
        end local 5 // long notBefore
        end local 4 // java.lang.String rt
        22: .line 470
      StackMap locals:
      StackMap stack:
            aload 1 /* resp */
            invokevirtual org.bouncycastle.est.ESTResponse.getStatusCode:()I
            sipush 200
            if_icmpne 31
        23: .line 472
            new org.bouncycastle.asn1.ASN1InputStream
            dup
            aload 1 /* resp */
            invokevirtual org.bouncycastle.est.ESTResponse.getInputStream:()Ljava/io/InputStream;
            invokespecial org.bouncycastle.asn1.ASN1InputStream.<init>:(Ljava/io/InputStream;)V
            astore 4 /* ain */
        start local 4 // org.bouncycastle.asn1.ASN1InputStream ain
        24: .line 473
            aconst_null
            astore 5 /* spkr */
        start local 5 // org.bouncycastle.cmc.SimplePKIResponse spkr
        25: .line 476
            new org.bouncycastle.cmc.SimplePKIResponse
            dup
            aload 4 /* ain */
            invokevirtual org.bouncycastle.asn1.ASN1InputStream.readObject:()Lorg/bouncycastle/asn1/ASN1Primitive;
            invokestatic org.bouncycastle.asn1.cms.ContentInfo.getInstance:(Ljava/lang/Object;)Lorg/bouncycastle/asn1/cms/ContentInfo;
            invokespecial org.bouncycastle.cmc.SimplePKIResponse.<init>:(Lorg/bouncycastle/asn1/cms/ContentInfo;)V
            astore 5 /* spkr */
        26: .line 477
            goto 29
        27: .line 478
      StackMap locals: org.bouncycastle.est.ESTService org.bouncycastle.est.ESTResponse org.bouncycastle.est.ESTRequest org.bouncycastle.util.Store org.bouncycastle.asn1.ASN1InputStream org.bouncycastle.cmc.SimplePKIResponse
      StackMap stack: org.bouncycastle.cmc.CMCException
            astore 6 /* e */
        start local 6 // org.bouncycastle.cmc.CMCException e
        28: .line 480
            new org.bouncycastle.est.ESTException
            dup
            aload 6 /* e */
            invokevirtual org.bouncycastle.cmc.CMCException.getMessage:()Ljava/lang/String;
            aload 6 /* e */
            invokevirtual org.bouncycastle.cmc.CMCException.getCause:()Ljava/lang/Throwable;
            invokespecial org.bouncycastle.est.ESTException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 6 // org.bouncycastle.cmc.CMCException e
        29: .line 482
      StackMap locals:
      StackMap stack:
            aload 5 /* spkr */
            invokevirtual org.bouncycastle.cmc.SimplePKIResponse.getCertificates:()Lorg/bouncycastle/util/Store;
            astore 3 /* enrolled */
        30: .line 483
            new org.bouncycastle.est.EnrollmentResponse
            dup
            aload 3 /* enrolled */
            ldc -1
            aconst_null
            aload 1 /* resp */
            invokevirtual org.bouncycastle.est.ESTResponse.getSource:()Lorg/bouncycastle/est/Source;
            invokespecial org.bouncycastle.est.EnrollmentResponse.<init>:(Lorg/bouncycastle/util/Store;JLorg/bouncycastle/est/ESTRequest;Lorg/bouncycastle/est/Source;)V
            areturn
        end local 5 // org.bouncycastle.cmc.SimplePKIResponse spkr
        end local 4 // org.bouncycastle.asn1.ASN1InputStream ain
        31: .line 486
      StackMap locals:
      StackMap stack:
            new org.bouncycastle.est.ESTException
            dup
        32: .line 487
            new java.lang.StringBuilder
            dup
            ldc "Simple Enroll: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 2 /* req */
            invokevirtual org.bouncycastle.est.ESTRequest.getURL:()Ljava/net/URL;
            invokevirtual java.net.URL.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aconst_null
        33: .line 488
            aload 1 /* resp */
            invokevirtual org.bouncycastle.est.ESTResponse.getStatusCode:()I
            aload 1 /* resp */
            invokevirtual org.bouncycastle.est.ESTResponse.getInputStream:()Ljava/io/InputStream;
        34: .line 486
            invokespecial org.bouncycastle.est.ESTException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;ILjava/io/InputStream;)V
            athrow
        end local 3 // org.bouncycastle.util.Store enrolled
        end local 2 // org.bouncycastle.est.ESTRequest req
        end local 1 // org.bouncycastle.est.ESTResponse resp
        end local 0 // org.bouncycastle.est.ESTService this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   35     0        this  Lorg/bouncycastle/est/ESTService;
            0   35     1        resp  Lorg/bouncycastle/est/ESTResponse;
            1   35     2         req  Lorg/bouncycastle/est/ESTRequest;
            2   35     3    enrolled  Lorg/bouncycastle/util/Store<Lorg/bouncycastle/cert/X509CertificateHolder;>;
            4   22     4          rt  Ljava/lang/String;
            7   22     5   notBefore  J
           13   15     7  dateFormat  Ljava/text/SimpleDateFormat;
           17   21     7          ex  Ljava/lang/Exception;
           24   31     4         ain  Lorg/bouncycastle/asn1/ASN1InputStream;
           25   31     5        spkr  Lorg/bouncycastle/cmc/SimplePKIResponse;
           28   29     6           e  Lorg/bouncycastle/cmc/CMCException;
      Exception table:
        from    to  target  type
           7     8       9  Class java.lang.NumberFormatException
          10    15      16  Class java.lang.Exception
          25    26      27  Class org.bouncycastle.cmc.CMCException
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      resp  

  public org.bouncycastle.est.CSRRequestResponse getCSRAttributes();
    descriptor: ()Lorg/bouncycastle/est/CSRRequestResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=11, args_size=1
        start local 0 // org.bouncycastle.est.ESTService this
         0: .line 502
            aload 0 /* this */
            getfield org.bouncycastle.est.ESTService.clientProvider:Lorg/bouncycastle/est/ESTClientProvider;
            invokeinterface org.bouncycastle.est.ESTClientProvider.isTrusted:()Z
            ifne 2
         1: .line 504
            new java.lang.IllegalStateException
            dup
            ldc "No trust anchors."
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 507
      StackMap locals:
      StackMap stack:
            aconst_null
            astore 1 /* resp */
        start local 1 // org.bouncycastle.est.ESTResponse resp
         3: .line 508
            aconst_null
            astore 2 /* response */
        start local 2 // org.bouncycastle.est.CSRAttributesResponse response
         4: .line 509
            aconst_null
            astore 3 /* finalThrowable */
        start local 3 // java.lang.Exception finalThrowable
         5: .line 510
            aconst_null
            astore 4 /* url */
        start local 4 // java.net.URL url
         6: .line 513
            new java.net.URL
            dup
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            getfield org.bouncycastle.est.ESTService.server:Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc "/csrattrs"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.net.URL.<init>:(Ljava/lang/String;)V
            astore 4 /* url */
         7: .line 515
            aload 0 /* this */
            getfield org.bouncycastle.est.ESTService.clientProvider:Lorg/bouncycastle/est/ESTClientProvider;
            invokeinterface org.bouncycastle.est.ESTClientProvider.makeClient:()Lorg/bouncycastle/est/ESTClient;
            astore 5 /* client */
        start local 5 // org.bouncycastle.est.ESTClient client
         8: .line 516
            new org.bouncycastle.est.ESTRequestBuilder
            dup
            ldc "GET"
            aload 4 /* url */
            invokespecial org.bouncycastle.est.ESTRequestBuilder.<init>:(Ljava/lang/String;Ljava/net/URL;)V
            aload 5 /* client */
            invokevirtual org.bouncycastle.est.ESTRequestBuilder.withClient:(Lorg/bouncycastle/est/ESTClient;)Lorg/bouncycastle/est/ESTRequestBuilder;
            invokevirtual org.bouncycastle.est.ESTRequestBuilder.build:()Lorg/bouncycastle/est/ESTRequest;
            astore 6 /* req */
        start local 6 // org.bouncycastle.est.ESTRequest req
         9: .line 517
            aload 5 /* client */
            aload 6 /* req */
            invokeinterface org.bouncycastle.est.ESTClient.doRequest:(Lorg/bouncycastle/est/ESTRequest;)Lorg/bouncycastle/est/ESTResponse;
            astore 1 /* resp */
        10: .line 520
            aload 1 /* resp */
            invokevirtual org.bouncycastle.est.ESTResponse.getStatusCode:()I
            lookupswitch { // 3
                  200: 11
                  204: 18
                  404: 20
              default: 22
          }
        11: .line 525
      StackMap locals: org.bouncycastle.est.ESTService org.bouncycastle.est.ESTResponse org.bouncycastle.est.CSRAttributesResponse java.lang.Exception java.net.URL org.bouncycastle.est.ESTClient org.bouncycastle.est.ESTRequest
      StackMap stack:
            aload 1 /* resp */
            invokevirtual org.bouncycastle.est.ESTResponse.getContentLength:()Ljava/lang/Long;
            ifnull 37
            aload 1 /* resp */
            invokevirtual org.bouncycastle.est.ESTResponse.getContentLength:()Ljava/lang/Long;
            invokevirtual java.lang.Long.longValue:()J
            lconst_0
            lcmp
            ifle 37
        12: .line 527
            new org.bouncycastle.asn1.ASN1InputStream
            dup
            aload 1 /* resp */
            invokevirtual org.bouncycastle.est.ESTResponse.getInputStream:()Ljava/io/InputStream;
            invokespecial org.bouncycastle.asn1.ASN1InputStream.<init>:(Ljava/io/InputStream;)V
            astore 7 /* ain */
        start local 7 // org.bouncycastle.asn1.ASN1InputStream ain
        13: .line 528
            aload 7 /* ain */
            invokevirtual org.bouncycastle.asn1.ASN1InputStream.readObject:()Lorg/bouncycastle/asn1/ASN1Primitive;
            checkcast org.bouncycastle.asn1.ASN1Sequence
            astore 8 /* seq */
        start local 8 // org.bouncycastle.asn1.ASN1Sequence seq
        14: .line 529
            new org.bouncycastle.est.CSRAttributesResponse
            dup
            aload 8 /* seq */
            invokestatic org.bouncycastle.asn1.est.CsrAttrs.getInstance:(Ljava/lang/Object;)Lorg/bouncycastle/asn1/est/CsrAttrs;
            invokespecial org.bouncycastle.est.CSRAttributesResponse.<init>:(Lorg/bouncycastle/asn1/est/CsrAttrs;)V
            astore 2 /* response */
        end local 8 // org.bouncycastle.asn1.ASN1Sequence seq
        end local 7 // org.bouncycastle.asn1.ASN1InputStream ain
        15: .line 531
            goto 37
        16: .line 532
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 7 /* ex */
        start local 7 // java.lang.Throwable ex
        17: .line 534
            new org.bouncycastle.est.ESTException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Decoding CACerts: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 4 /* url */
            invokevirtual java.net.URL.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc " "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 7 /* ex */
            invokevirtual java.lang.Throwable.getMessage:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 7 /* ex */
            aload 1 /* resp */
            invokevirtual org.bouncycastle.est.ESTResponse.getStatusCode:()I
            aload 1 /* resp */
            invokevirtual org.bouncycastle.est.ESTResponse.getInputStream:()Ljava/io/InputStream;
            invokespecial org.bouncycastle.est.ESTException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;ILjava/io/InputStream;)V
            athrow
        end local 7 // java.lang.Throwable ex
        18: .line 539
      StackMap locals:
      StackMap stack:
            aconst_null
            astore 2 /* response */
        19: .line 540
            goto 37
        20: .line 542
      StackMap locals:
      StackMap stack:
            aconst_null
            astore 2 /* response */
        21: .line 543
            goto 37
        22: .line 545
      StackMap locals:
      StackMap stack:
            new org.bouncycastle.est.ESTException
            dup
        23: .line 546
            new java.lang.StringBuilder
            dup
            ldc "CSR Attribute request: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 6 /* req */
            invokevirtual org.bouncycastle.est.ESTRequest.getURL:()Ljava/net/URL;
            invokevirtual java.net.URL.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aconst_null
        24: .line 547
            aload 1 /* resp */
            invokevirtual org.bouncycastle.est.ESTResponse.getStatusCode:()I
            aload 1 /* resp */
            invokevirtual org.bouncycastle.est.ESTResponse.getInputStream:()Ljava/io/InputStream;
        25: .line 545
            invokespecial org.bouncycastle.est.ESTException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;ILjava/io/InputStream;)V
            athrow
        end local 6 // org.bouncycastle.est.ESTRequest req
        end local 5 // org.bouncycastle.est.ESTClient client
        26: .line 550
      StackMap locals: org.bouncycastle.est.ESTService org.bouncycastle.est.ESTResponse org.bouncycastle.est.CSRAttributesResponse java.lang.Exception java.net.URL
      StackMap stack: java.lang.Throwable
            astore 5 /* t */
        start local 5 // java.lang.Throwable t
        27: .line 553
            aload 5 /* t */
            instanceof org.bouncycastle.est.ESTException
            ifeq 29
        28: .line 555
            aload 5 /* t */
            checkcast org.bouncycastle.est.ESTException
            athrow
        29: .line 559
      StackMap locals: java.lang.Throwable
      StackMap stack:
            new org.bouncycastle.est.ESTException
            dup
            aload 5 /* t */
            invokevirtual java.lang.Throwable.getMessage:()Ljava/lang/String;
            aload 5 /* t */
            invokespecial org.bouncycastle.est.ESTException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 5 // java.lang.Throwable t
        30: .line 563
      StackMap locals: org.bouncycastle.est.ESTService org.bouncycastle.est.ESTResponse org.bouncycastle.est.CSRAttributesResponse java.lang.Exception java.net.URL
      StackMap stack: java.lang.Throwable
            astore 9
        31: .line 564
            aload 1 /* resp */
            ifnull 36
        32: .line 568
            aload 1 /* resp */
            invokevirtual org.bouncycastle.est.ESTResponse.close:()V
        33: .line 569
            goto 36
        34: .line 570
      StackMap locals: org.bouncycastle.est.ESTService org.bouncycastle.est.ESTResponse org.bouncycastle.est.CSRAttributesResponse java.lang.Exception java.net.URL top top top top java.lang.Throwable
      StackMap stack: java.lang.Exception
            astore 10 /* ex */
        start local 10 // java.lang.Exception ex
        35: .line 572
            aload 10 /* ex */
            astore 3 /* finalThrowable */
        end local 10 // java.lang.Exception ex
        36: .line 575
      StackMap locals:
      StackMap stack:
            aload 9
            athrow
        37: .line 564
      StackMap locals: org.bouncycastle.est.ESTService org.bouncycastle.est.ESTResponse org.bouncycastle.est.CSRAttributesResponse java.lang.Exception java.net.URL
      StackMap stack:
            aload 1 /* resp */
            ifnull 42
        38: .line 568
            aload 1 /* resp */
            invokevirtual org.bouncycastle.est.ESTResponse.close:()V
        39: .line 569
            goto 42
        40: .line 570
      StackMap locals:
      StackMap stack: java.lang.Exception
            astore 10 /* ex */
        start local 10 // java.lang.Exception ex
        41: .line 572
            aload 10 /* ex */
            astore 3 /* finalThrowable */
        end local 10 // java.lang.Exception ex
        42: .line 577
      StackMap locals:
      StackMap stack:
            aload 3 /* finalThrowable */
            ifnull 46
        43: .line 579
            aload 3 /* finalThrowable */
            instanceof org.bouncycastle.est.ESTException
            ifeq 45
        44: .line 581
            aload 3 /* finalThrowable */
            checkcast org.bouncycastle.est.ESTException
            athrow
        45: .line 583
      StackMap locals:
      StackMap stack:
            new org.bouncycastle.est.ESTException
            dup
            aload 3 /* finalThrowable */
            invokevirtual java.lang.Exception.getMessage:()Ljava/lang/String;
            aload 3 /* finalThrowable */
            aload 1 /* resp */
            invokevirtual org.bouncycastle.est.ESTResponse.getStatusCode:()I
            aconst_null
            invokespecial org.bouncycastle.est.ESTException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;ILjava/io/InputStream;)V
            athrow
        46: .line 586
      StackMap locals:
      StackMap stack:
            new org.bouncycastle.est.CSRRequestResponse
            dup
            aload 2 /* response */
            aload 1 /* resp */
            invokevirtual org.bouncycastle.est.ESTResponse.getSource:()Lorg/bouncycastle/est/Source;
            invokespecial org.bouncycastle.est.CSRRequestResponse.<init>:(Lorg/bouncycastle/est/CSRAttributesResponse;Lorg/bouncycastle/est/Source;)V
            areturn
        end local 4 // java.net.URL url
        end local 3 // java.lang.Exception finalThrowable
        end local 2 // org.bouncycastle.est.CSRAttributesResponse response
        end local 1 // org.bouncycastle.est.ESTResponse resp
        end local 0 // org.bouncycastle.est.ESTService this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   47     0            this  Lorg/bouncycastle/est/ESTService;
            3   47     1            resp  Lorg/bouncycastle/est/ESTResponse;
            4   47     2        response  Lorg/bouncycastle/est/CSRAttributesResponse;
            5   47     3  finalThrowable  Ljava/lang/Exception;
            6   47     4             url  Ljava/net/URL;
            8   26     5          client  Lorg/bouncycastle/est/ESTClient;
            9   26     6             req  Lorg/bouncycastle/est/ESTRequest;
           13   15     7             ain  Lorg/bouncycastle/asn1/ASN1InputStream;
           14   15     8             seq  Lorg/bouncycastle/asn1/ASN1Sequence;
           17   18     7              ex  Ljava/lang/Throwable;
           27   30     5               t  Ljava/lang/Throwable;
           35   36    10              ex  Ljava/lang/Exception;
           41   42    10              ex  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
          11    15      16  Class java.lang.Throwable
           6    26      26  Class java.lang.Throwable
           6    30      30  any
          32    33      34  Class java.lang.Exception
          38    39      40  Class java.lang.Exception
    Exceptions:
      throws org.bouncycastle.est.ESTException

  private java.lang.String annotateRequest(byte[]);
    descriptor: ([B)Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=5, args_size=2
        start local 0 // org.bouncycastle.est.ESTService this
        start local 1 // byte[] data
         0: .line 591
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         1: .line 592
            new java.io.StringWriter
            dup
            invokespecial java.io.StringWriter.<init>:()V
            astore 3 /* sw */
        start local 3 // java.io.StringWriter sw
         2: .line 593
            new java.io.PrintWriter
            dup
            aload 3 /* sw */
            invokespecial java.io.PrintWriter.<init>:(Ljava/io/Writer;)V
            astore 4 /* pw */
        start local 4 // java.io.PrintWriter pw
         3: .line 597
      StackMap locals: int java.io.StringWriter java.io.PrintWriter
      StackMap stack:
            iload 2 /* i */
            bipush 48
            iadd
            aload 1 /* data */
            arraylength
            if_icmpge 7
         4: .line 599
            aload 4 /* pw */
            aload 1 /* data */
            iload 2 /* i */
            bipush 48
            invokestatic org.bouncycastle.util.encoders.Base64.toBase64String:([BII)Ljava/lang/String;
            invokevirtual java.io.PrintWriter.print:(Ljava/lang/String;)V
         5: .line 600
            iinc 2 /* i */ 48
         6: .line 601
            goto 9
         7: .line 604
      StackMap locals:
      StackMap stack:
            aload 4 /* pw */
            aload 1 /* data */
            iload 2 /* i */
            aload 1 /* data */
            arraylength
            iload 2 /* i */
            isub
            invokestatic org.bouncycastle.util.encoders.Base64.toBase64String:([BII)Ljava/lang/String;
            invokevirtual java.io.PrintWriter.print:(Ljava/lang/String;)V
         8: .line 605
            aload 1 /* data */
            arraylength
            istore 2 /* i */
         9: .line 607
      StackMap locals:
      StackMap stack:
            aload 4 /* pw */
            bipush 10
            invokevirtual java.io.PrintWriter.print:(C)V
        10: .line 609
            iload 2 /* i */
            aload 1 /* data */
            arraylength
        11: .line 595
            if_icmplt 3
        12: .line 611
            aload 4 /* pw */
            invokevirtual java.io.PrintWriter.flush:()V
        13: .line 612
            aload 3 /* sw */
            invokevirtual java.io.StringWriter.toString:()Ljava/lang/String;
            areturn
        end local 4 // java.io.PrintWriter pw
        end local 3 // java.io.StringWriter sw
        end local 2 // int i
        end local 1 // byte[] data
        end local 0 // org.bouncycastle.est.ESTService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Lorg/bouncycastle/est/ESTService;
            0   14     1  data  [B
            1   14     2     i  I
            2   14     3    sw  Ljava/io/StringWriter;
            3   14     4    pw  Ljava/io/PrintWriter;
    MethodParameters:
      Name  Flags
      data  

  private java.lang.String verifyLabel(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.bouncycastle.est.ESTService this
        start local 1 // java.lang.String label
         0: .line 618
            goto 2
         1: .line 620
      StackMap locals:
      StackMap stack:
            aload 1 /* label */
            iconst_0
            aload 1 /* label */
            invokevirtual java.lang.String.length:()I
            iconst_1
            isub
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
            astore 1 /* label */
         2: .line 618
      StackMap locals:
      StackMap stack:
            aload 1 /* label */
            ldc "/"
            invokevirtual java.lang.String.endsWith:(Ljava/lang/String;)Z
            ifeq 5
            aload 1 /* label */
            invokevirtual java.lang.String.length:()I
            ifgt 1
         3: .line 623
            goto 5
         4: .line 625
      StackMap locals:
      StackMap stack:
            aload 1 /* label */
            iconst_1
            invokevirtual java.lang.String.substring:(I)Ljava/lang/String;
            astore 1 /* label */
         5: .line 623
      StackMap locals:
      StackMap stack:
            aload 1 /* label */
            ldc "/"
            invokevirtual java.lang.String.startsWith:(Ljava/lang/String;)Z
            ifeq 6
            aload 1 /* label */
            invokevirtual java.lang.String.length:()I
            ifgt 4
         6: .line 628
      StackMap locals:
      StackMap stack:
            aload 1 /* label */
            invokevirtual java.lang.String.length:()I
            ifne 8
         7: .line 630
            new java.lang.IllegalArgumentException
            dup
            ldc "Label set but after trimming '/' is not zero length string."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 633
      StackMap locals:
      StackMap stack:
            getstatic org.bouncycastle.est.ESTService.pathInvalid:Ljava/util/regex/Pattern;
            aload 1 /* label */
            invokevirtual java.util.regex.Pattern.matcher:(Ljava/lang/CharSequence;)Ljava/util/regex/Matcher;
            invokevirtual java.util.regex.Matcher.matches:()Z
            ifne 10
         9: .line 635
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Server path "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* label */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc " contains invalid characters"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        10: .line 638
      StackMap locals:
      StackMap stack:
            getstatic org.bouncycastle.est.ESTService.illegalParts:Ljava/util/Set;
            aload 1 /* label */
            invokeinterface java.util.Set.contains:(Ljava/lang/Object;)Z
            ifeq 12
        11: .line 640
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Label "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* label */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc " is a reserved path segment."
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        12: .line 643
      StackMap locals:
      StackMap stack:
            aload 1 /* label */
            areturn
        end local 1 // java.lang.String label
        end local 0 // org.bouncycastle.est.ESTService this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   13     0   this  Lorg/bouncycastle/est/ESTService;
            0   13     1  label  Ljava/lang/String;
    MethodParameters:
       Name  Flags
      label  

  private java.lang.String verifyServer(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.bouncycastle.est.ESTService this
        start local 1 // java.lang.String server
         0: .line 653
            goto 2
         1: .line 655
      StackMap locals:
      StackMap stack:
            aload 1 /* server */
            iconst_0
            aload 1 /* server */
            invokevirtual java.lang.String.length:()I
            iconst_1
            isub
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
            astore 1 /* server */
         2: .line 653
      StackMap locals:
      StackMap stack:
            aload 1 /* server */
            ldc "/"
            invokevirtual java.lang.String.endsWith:(Ljava/lang/String;)Z
            ifeq 3
            aload 1 /* server */
            invokevirtual java.lang.String.length:()I
            ifgt 1
         3: .line 658
      StackMap locals:
      StackMap stack:
            aload 1 /* server */
            ldc "://"
            invokevirtual java.lang.String.contains:(Ljava/lang/CharSequence;)Z
            ifeq 5
         4: .line 660
            new java.lang.IllegalArgumentException
            dup
            ldc "Server contains scheme, must only be <dnsname/ipaddress>:port, https:// will be added arbitrarily."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 663
      StackMap locals:
      StackMap stack:
            new java.net.URL
            dup
            new java.lang.StringBuilder
            dup
            ldc "https://"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* server */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.net.URL.<init>:(Ljava/lang/String;)V
            astore 2 /* u */
        start local 2 // java.net.URL u
         6: .line 664
            aload 2 /* u */
            invokevirtual java.net.URL.getPath:()Ljava/lang/String;
            invokevirtual java.lang.String.length:()I
            ifeq 7
            aload 2 /* u */
            invokevirtual java.net.URL.getPath:()Ljava/lang/String;
            ldc "/"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 9
         7: .line 666
      StackMap locals: java.net.URL
      StackMap stack:
            aload 1 /* server */
         8: areturn
         9: .line 669
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Server contains path, must only be <dnsname/ipaddress>:port, a path of '/.well-known/est/<label>' will be added arbitrarily."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        end local 2 // java.net.URL u
        10: .line 672
      StackMap locals: org.bouncycastle.est.ESTService java.lang.String
      StackMap stack: java.lang.Exception
            astore 2 /* ex */
        start local 2 // java.lang.Exception ex
        11: .line 674
            aload 2 /* ex */
            instanceof java.lang.IllegalArgumentException
            ifeq 13
        12: .line 676
            aload 2 /* ex */
            checkcast java.lang.IllegalArgumentException
            athrow
        13: .line 678
      StackMap locals: java.lang.Exception
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Scheme and host is invalid: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 2 /* ex */
            invokevirtual java.lang.Exception.getMessage:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 2 /* ex */
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 2 // java.lang.Exception ex
        end local 1 // java.lang.String server
        end local 0 // org.bouncycastle.est.ESTService this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   14     0    this  Lorg/bouncycastle/est/ESTService;
            0   14     1  server  Ljava/lang/String;
            6   10     2       u  Ljava/net/URL;
           11   14     2      ex  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0     8      10  Class java.lang.Exception
           9    10      10  Class java.lang.Exception
    MethodParameters:
        Name  Flags
      server  
}
SourceFile: "ESTService.java"
NestMembers:
  org.bouncycastle.est.ESTService$1
InnerClasses:
  org.bouncycastle.est.ESTService$1
  Headers = org.bouncycastle.est.HttpUtil$Headers of org.bouncycastle.est.HttpUtil