public class org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor extends org.apache.poi.poifs.crypt.Decryptor implements java.lang.Cloneable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor
  super_class: org.apache.poi.poifs.crypt.Decryptor
{
  private long length;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  private int chunkSize;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  static final boolean $assertionsDisabled;
    descriptor: Z
    flags: (0x1018) ACC_STATIC, ACC_FINAL, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 52
            ldc Lorg/apache/poi/poifs/crypt/cryptoapi/CryptoAPIDecryptor;
            invokevirtual java.lang.Class.desiredAssertionStatus:()Z
            ifne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: putstatic org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor.$assertionsDisabled:Z
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  protected void <init>();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor this
         0: .line 68
            aload 0 /* this */
            invokespecial org.apache.poi.poifs.crypt.Decryptor.<init>:()V
         1: .line 54
            aload 0 /* this */
            ldc -1
            putfield org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor.length:J
         2: .line 55
            aload 0 /* this */
            iconst_m1
            putfield org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor.chunkSize:I
         3: .line 69
            return
        end local 0 // org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/poi/poifs/crypt/cryptoapi/CryptoAPIDecryptor;

  public boolean verifyPassword(java.lang.String);
    descriptor: (Ljava/lang/String;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=12, args_size=2
        start local 0 // org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor this
        start local 1 // java.lang.String password
         0: .line 73
            aload 0 /* this */
            invokevirtual org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor.getEncryptionInfo:()Lorg/apache/poi/poifs/crypt/EncryptionInfo;
            invokevirtual org.apache.poi.poifs.crypt.EncryptionInfo.getVerifier:()Lorg/apache/poi/poifs/crypt/EncryptionVerifier;
            astore 2 /* ver */
        start local 2 // org.apache.poi.poifs.crypt.EncryptionVerifier ver
         1: .line 74
            aload 1 /* password */
            aload 2 /* ver */
            invokestatic org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor.generateSecretKey:(Ljava/lang/String;Lorg/apache/poi/poifs/crypt/EncryptionVerifier;)Ljavax/crypto/SecretKey;
            astore 3 /* skey */
        start local 3 // javax.crypto.SecretKey skey
         2: .line 76
            aconst_null
            iconst_0
            aload 0 /* this */
            invokevirtual org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor.getEncryptionInfo:()Lorg/apache/poi/poifs/crypt/EncryptionInfo;
            aload 3 /* skey */
            iconst_2
            invokestatic org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor.initCipherForBlock:(Ljavax/crypto/Cipher;ILorg/apache/poi/poifs/crypt/EncryptionInfo;Ljavax/crypto/SecretKey;I)Ljavax/crypto/Cipher;
            astore 4 /* cipher */
        start local 4 // javax.crypto.Cipher cipher
         3: .line 77
            aload 2 /* ver */
            invokevirtual org.apache.poi.poifs.crypt.EncryptionVerifier.getEncryptedVerifier:()[B
            astore 5 /* encryptedVerifier */
        start local 5 // byte[] encryptedVerifier
         4: .line 78
            aload 5 /* encryptedVerifier */
            arraylength
            newarray 8
            astore 6 /* verifier */
        start local 6 // byte[] verifier
         5: .line 79
            aload 4 /* cipher */
            aload 5 /* encryptedVerifier */
            iconst_0
            aload 5 /* encryptedVerifier */
            arraylength
            aload 6 /* verifier */
            invokevirtual javax.crypto.Cipher.update:([BII[B)I
            pop
         6: .line 80
            aload 0 /* this */
            aload 6 /* verifier */
            invokevirtual org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor.setVerifier:([B)V
         7: .line 81
            aload 2 /* ver */
            invokevirtual org.apache.poi.poifs.crypt.EncryptionVerifier.getEncryptedVerifierHash:()[B
            astore 7 /* encryptedVerifierHash */
        start local 7 // byte[] encryptedVerifierHash
         8: .line 82
            aload 4 /* cipher */
            aload 7 /* encryptedVerifierHash */
            invokevirtual javax.crypto.Cipher.doFinal:([B)[B
            astore 8 /* verifierHash */
        start local 8 // byte[] verifierHash
         9: .line 83
            aload 2 /* ver */
            invokevirtual org.apache.poi.poifs.crypt.EncryptionVerifier.getHashAlgorithm:()Lorg/apache/poi/poifs/crypt/HashAlgorithm;
            astore 9 /* hashAlgo */
        start local 9 // org.apache.poi.poifs.crypt.HashAlgorithm hashAlgo
        10: .line 84
            aload 9 /* hashAlgo */
            invokestatic org.apache.poi.poifs.crypt.CryptoFunctions.getMessageDigest:(Lorg/apache/poi/poifs/crypt/HashAlgorithm;)Ljava/security/MessageDigest;
            astore 10 /* hashAlg */
        start local 10 // java.security.MessageDigest hashAlg
        11: .line 85
            aload 10 /* hashAlg */
            aload 6 /* verifier */
            invokevirtual java.security.MessageDigest.digest:([B)[B
            astore 11 /* calcVerifierHash */
        start local 11 // byte[] calcVerifierHash
        12: .line 86
            aload 11 /* calcVerifierHash */
            aload 8 /* verifierHash */
            invokestatic java.util.Arrays.equals:([B[B)Z
            ifeq 17
        13: .line 87
            aload 0 /* this */
            aload 3 /* skey */
            invokevirtual org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor.setSecretKey:(Ljavax/crypto/SecretKey;)V
        14: .line 88
            iconst_1
            ireturn
        end local 11 // byte[] calcVerifierHash
        end local 10 // java.security.MessageDigest hashAlg
        end local 9 // org.apache.poi.poifs.crypt.HashAlgorithm hashAlgo
        end local 8 // byte[] verifierHash
        end local 7 // byte[] encryptedVerifierHash
        end local 6 // byte[] verifier
        end local 5 // byte[] encryptedVerifier
        end local 4 // javax.crypto.Cipher cipher
        15: .line 90
      StackMap locals: org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor java.lang.String org.apache.poi.poifs.crypt.EncryptionVerifier javax.crypto.SecretKey
      StackMap stack: java.security.GeneralSecurityException
            astore 4 /* e */
        start local 4 // java.security.GeneralSecurityException e
        16: .line 91
            new org.apache.poi.EncryptedDocumentException
            dup
            aload 4 /* e */
            invokespecial org.apache.poi.EncryptedDocumentException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 4 // java.security.GeneralSecurityException e
        17: .line 93
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 3 // javax.crypto.SecretKey skey
        end local 2 // org.apache.poi.poifs.crypt.EncryptionVerifier ver
        end local 1 // java.lang.String password
        end local 0 // org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0   18     0                   this  Lorg/apache/poi/poifs/crypt/cryptoapi/CryptoAPIDecryptor;
            0   18     1               password  Ljava/lang/String;
            1   18     2                    ver  Lorg/apache/poi/poifs/crypt/EncryptionVerifier;
            2   18     3                   skey  Ljavax/crypto/SecretKey;
            3   15     4                 cipher  Ljavax/crypto/Cipher;
            4   15     5      encryptedVerifier  [B
            5   15     6               verifier  [B
            8   15     7  encryptedVerifierHash  [B
            9   15     8           verifierHash  [B
           10   15     9               hashAlgo  Lorg/apache/poi/poifs/crypt/HashAlgorithm;
           11   15    10                hashAlg  Ljava/security/MessageDigest;
           12   15    11       calcVerifierHash  [B
           16   17     4                      e  Ljava/security/GeneralSecurityException;
      Exception table:
        from    to  target  type
           2    14      15  Class java.security.GeneralSecurityException
    MethodParameters:
          Name  Flags
      password  

  public javax.crypto.Cipher initCipherForBlock(javax.crypto.Cipher, int);
    descriptor: (Ljavax/crypto/Cipher;I)Ljavax/crypto/Cipher;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=3
        start local 0 // org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor this
        start local 1 // javax.crypto.Cipher cipher
        start local 2 // int block
         0: .line 99
            aload 0 /* this */
            invokevirtual org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor.getEncryptionInfo:()Lorg/apache/poi/poifs/crypt/EncryptionInfo;
            astore 3 /* ei */
        start local 3 // org.apache.poi.poifs.crypt.EncryptionInfo ei
         1: .line 100
            aload 0 /* this */
            invokevirtual org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor.getSecretKey:()Ljavax/crypto/SecretKey;
            astore 4 /* sk */
        start local 4 // javax.crypto.SecretKey sk
         2: .line 101
            aload 1 /* cipher */
            iload 2 /* block */
            aload 3 /* ei */
            aload 4 /* sk */
            iconst_2
            invokestatic org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor.initCipherForBlock:(Ljavax/crypto/Cipher;ILorg/apache/poi/poifs/crypt/EncryptionInfo;Ljavax/crypto/SecretKey;I)Ljavax/crypto/Cipher;
            areturn
        end local 4 // javax.crypto.SecretKey sk
        end local 3 // org.apache.poi.poifs.crypt.EncryptionInfo ei
        end local 2 // int block
        end local 1 // javax.crypto.Cipher cipher
        end local 0 // org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/apache/poi/poifs/crypt/cryptoapi/CryptoAPIDecryptor;
            0    3     1  cipher  Ljavax/crypto/Cipher;
            0    3     2   block  I
            1    3     3      ei  Lorg/apache/poi/poifs/crypt/EncryptionInfo;
            2    3     4      sk  Ljavax/crypto/SecretKey;
    Exceptions:
      throws java.security.GeneralSecurityException
    MethodParameters:
        Name  Flags
      cipher  
      block   

  protected static javax.crypto.Cipher initCipherForBlock(javax.crypto.Cipher, int, org.apache.poi.poifs.crypt.EncryptionInfo, javax.crypto.SecretKey, int);
    descriptor: (Ljavax/crypto/Cipher;ILorg/apache/poi/poifs/crypt/EncryptionInfo;Ljavax/crypto/SecretKey;I)Ljavax/crypto/Cipher;
    flags: (0x000c) ACC_PROTECTED, ACC_STATIC
    Code:
      stack=5, locals=13, args_size=5
        start local 0 // javax.crypto.Cipher cipher
        start local 1 // int block
        start local 2 // org.apache.poi.poifs.crypt.EncryptionInfo encryptionInfo
        start local 3 // javax.crypto.SecretKey skey
        start local 4 // int encryptMode
         0: .line 107
            aload 2 /* encryptionInfo */
            invokevirtual org.apache.poi.poifs.crypt.EncryptionInfo.getVerifier:()Lorg/apache/poi/poifs/crypt/EncryptionVerifier;
            astore 5 /* ver */
        start local 5 // org.apache.poi.poifs.crypt.EncryptionVerifier ver
         1: .line 108
            aload 5 /* ver */
            invokevirtual org.apache.poi.poifs.crypt.EncryptionVerifier.getHashAlgorithm:()Lorg/apache/poi/poifs/crypt/HashAlgorithm;
            astore 6 /* hashAlgo */
        start local 6 // org.apache.poi.poifs.crypt.HashAlgorithm hashAlgo
         2: .line 109
            iconst_4
            newarray 8
            astore 7 /* blockKey */
        start local 7 // byte[] blockKey
         3: .line 110
            aload 7 /* blockKey */
            iconst_0
            iload 1 /* block */
            i2l
            invokestatic org.apache.poi.util.LittleEndian.putUInt:([BIJ)V
         4: .line 111
            aload 6 /* hashAlgo */
            invokestatic org.apache.poi.poifs.crypt.CryptoFunctions.getMessageDigest:(Lorg/apache/poi/poifs/crypt/HashAlgorithm;)Ljava/security/MessageDigest;
            astore 8 /* hashAlg */
        start local 8 // java.security.MessageDigest hashAlg
         5: .line 112
            aload 8 /* hashAlg */
            aload 3 /* skey */
            invokeinterface javax.crypto.SecretKey.getEncoded:()[B
            invokevirtual java.security.MessageDigest.update:([B)V
         6: .line 113
            aload 8 /* hashAlg */
            aload 7 /* blockKey */
            invokevirtual java.security.MessageDigest.digest:([B)[B
            astore 9 /* encKey */
        start local 9 // byte[] encKey
         7: .line 114
            aload 2 /* encryptionInfo */
            invokevirtual org.apache.poi.poifs.crypt.EncryptionInfo.getHeader:()Lorg/apache/poi/poifs/crypt/EncryptionHeader;
            astore 10 /* header */
        start local 10 // org.apache.poi.poifs.crypt.EncryptionHeader header
         8: .line 115
            aload 10 /* header */
            invokevirtual org.apache.poi.poifs.crypt.EncryptionHeader.getKeySize:()I
            istore 11 /* keyBits */
        start local 11 // int keyBits
         9: .line 116
            aload 9 /* encKey */
            iload 11 /* keyBits */
            bipush 8
            idiv
            invokestatic org.apache.poi.poifs.crypt.CryptoFunctions.getBlock0:([BI)[B
            astore 9 /* encKey */
        10: .line 117
            iload 11 /* keyBits */
            bipush 40
            if_icmpne 12
        11: .line 118
            aload 9 /* encKey */
            bipush 16
            invokestatic org.apache.poi.poifs.crypt.CryptoFunctions.getBlock0:([BI)[B
            astore 9 /* encKey */
        12: .line 120
      StackMap locals: javax.crypto.Cipher int org.apache.poi.poifs.crypt.EncryptionInfo javax.crypto.SecretKey int org.apache.poi.poifs.crypt.EncryptionVerifier org.apache.poi.poifs.crypt.HashAlgorithm byte[] java.security.MessageDigest byte[] org.apache.poi.poifs.crypt.EncryptionHeader int
      StackMap stack:
            new javax.crypto.spec.SecretKeySpec
            dup
            aload 9 /* encKey */
            aload 3 /* skey */
            invokeinterface javax.crypto.SecretKey.getAlgorithm:()Ljava/lang/String;
            invokespecial javax.crypto.spec.SecretKeySpec.<init>:([BLjava/lang/String;)V
            astore 12 /* key */
        start local 12 // javax.crypto.SecretKey key
        13: .line 121
            aload 0 /* cipher */
            ifnonnull 16
        14: .line 122
            aload 12 /* key */
            aload 10 /* header */
            invokevirtual org.apache.poi.poifs.crypt.EncryptionHeader.getCipherAlgorithm:()Lorg/apache/poi/poifs/crypt/CipherAlgorithm;
            aconst_null
            aconst_null
            iload 4 /* encryptMode */
            invokestatic org.apache.poi.poifs.crypt.CryptoFunctions.getCipher:(Ljavax/crypto/SecretKey;Lorg/apache/poi/poifs/crypt/CipherAlgorithm;Lorg/apache/poi/poifs/crypt/ChainingMode;[BI)Ljavax/crypto/Cipher;
            astore 0 /* cipher */
        15: .line 123
            goto 17
        16: .line 124
      StackMap locals: javax.crypto.SecretKey
      StackMap stack:
            aload 0 /* cipher */
            iload 4 /* encryptMode */
            aload 12 /* key */
            invokevirtual javax.crypto.Cipher.init:(ILjava/security/Key;)V
        17: .line 126
      StackMap locals:
      StackMap stack:
            aload 0 /* cipher */
            areturn
        end local 12 // javax.crypto.SecretKey key
        end local 11 // int keyBits
        end local 10 // org.apache.poi.poifs.crypt.EncryptionHeader header
        end local 9 // byte[] encKey
        end local 8 // java.security.MessageDigest hashAlg
        end local 7 // byte[] blockKey
        end local 6 // org.apache.poi.poifs.crypt.HashAlgorithm hashAlgo
        end local 5 // org.apache.poi.poifs.crypt.EncryptionVerifier ver
        end local 4 // int encryptMode
        end local 3 // javax.crypto.SecretKey skey
        end local 2 // org.apache.poi.poifs.crypt.EncryptionInfo encryptionInfo
        end local 1 // int block
        end local 0 // javax.crypto.Cipher cipher
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   18     0          cipher  Ljavax/crypto/Cipher;
            0   18     1           block  I
            0   18     2  encryptionInfo  Lorg/apache/poi/poifs/crypt/EncryptionInfo;
            0   18     3            skey  Ljavax/crypto/SecretKey;
            0   18     4     encryptMode  I
            1   18     5             ver  Lorg/apache/poi/poifs/crypt/EncryptionVerifier;
            2   18     6        hashAlgo  Lorg/apache/poi/poifs/crypt/HashAlgorithm;
            3   18     7        blockKey  [B
            5   18     8         hashAlg  Ljava/security/MessageDigest;
            7   18     9          encKey  [B
            8   18    10          header  Lorg/apache/poi/poifs/crypt/EncryptionHeader;
            9   18    11         keyBits  I
           13   18    12             key  Ljavax/crypto/SecretKey;
    Exceptions:
      throws java.security.GeneralSecurityException
    MethodParameters:
                Name  Flags
      cipher          
      block           
      encryptionInfo  
      skey            
      encryptMode     

  protected static javax.crypto.SecretKey generateSecretKey(java.lang.String, org.apache.poi.poifs.crypt.EncryptionVerifier);
    descriptor: (Ljava/lang/String;Lorg/apache/poi/poifs/crypt/EncryptionVerifier;)Ljavax/crypto/SecretKey;
    flags: (0x000c) ACC_PROTECTED, ACC_STATIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // java.lang.String password
        start local 1 // org.apache.poi.poifs.crypt.EncryptionVerifier ver
         0: .line 130
            aload 0 /* password */
            invokevirtual java.lang.String.length:()I
            sipush 255
            if_icmple 2
         1: .line 131
            aload 0 /* password */
            iconst_0
            sipush 255
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
            astore 0 /* password */
         2: .line 133
      StackMap locals:
      StackMap stack:
            aload 1 /* ver */
            invokevirtual org.apache.poi.poifs.crypt.EncryptionVerifier.getHashAlgorithm:()Lorg/apache/poi/poifs/crypt/HashAlgorithm;
            astore 2 /* hashAlgo */
        start local 2 // org.apache.poi.poifs.crypt.HashAlgorithm hashAlgo
         3: .line 134
            aload 2 /* hashAlgo */
            invokestatic org.apache.poi.poifs.crypt.CryptoFunctions.getMessageDigest:(Lorg/apache/poi/poifs/crypt/HashAlgorithm;)Ljava/security/MessageDigest;
            astore 3 /* hashAlg */
        start local 3 // java.security.MessageDigest hashAlg
         4: .line 135
            aload 3 /* hashAlg */
            aload 1 /* ver */
            invokevirtual org.apache.poi.poifs.crypt.EncryptionVerifier.getSalt:()[B
            invokevirtual java.security.MessageDigest.update:([B)V
         5: .line 136
            aload 3 /* hashAlg */
            aload 0 /* password */
            invokestatic org.apache.poi.util.StringUtil.getToUnicodeLE:(Ljava/lang/String;)[B
            invokevirtual java.security.MessageDigest.digest:([B)[B
            astore 4 /* hash */
        start local 4 // byte[] hash
         6: .line 137
            new javax.crypto.spec.SecretKeySpec
            dup
            aload 4 /* hash */
            aload 1 /* ver */
            invokevirtual org.apache.poi.poifs.crypt.EncryptionVerifier.getCipherAlgorithm:()Lorg/apache/poi/poifs/crypt/CipherAlgorithm;
            getfield org.apache.poi.poifs.crypt.CipherAlgorithm.jceId:Ljava/lang/String;
            invokespecial javax.crypto.spec.SecretKeySpec.<init>:([BLjava/lang/String;)V
            areturn
        end local 4 // byte[] hash
        end local 3 // java.security.MessageDigest hashAlg
        end local 2 // org.apache.poi.poifs.crypt.HashAlgorithm hashAlgo
        end local 1 // org.apache.poi.poifs.crypt.EncryptionVerifier ver
        end local 0 // java.lang.String password
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0  password  Ljava/lang/String;
            0    7     1       ver  Lorg/apache/poi/poifs/crypt/EncryptionVerifier;
            3    7     2  hashAlgo  Lorg/apache/poi/poifs/crypt/HashAlgorithm;
            4    7     3   hashAlg  Ljava/security/MessageDigest;
            6    7     4      hash  [B
    MethodParameters:
          Name  Flags
      password  
      ver       

  public org.apache.poi.poifs.crypt.ChunkedCipherInputStream getDataStream(org.apache.poi.poifs.filesystem.DirectoryNode);
    descriptor: (Lorg/apache/poi/poifs/filesystem/DirectoryNode;)Lorg/apache/poi/poifs/crypt/ChunkedCipherInputStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor this
        start local 1 // org.apache.poi.poifs.filesystem.DirectoryNode dir
         0: .line 143
            new java.io.IOException
            dup
            ldc "not supported"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // org.apache.poi.poifs.filesystem.DirectoryNode dir
        end local 0 // org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/poi/poifs/crypt/cryptoapi/CryptoAPIDecryptor;
            0    1     1   dir  Lorg/apache/poi/poifs/filesystem/DirectoryNode;
    Exceptions:
      throws java.io.IOException, java.security.GeneralSecurityException
    MethodParameters:
      Name  Flags
      dir   

  public org.apache.poi.poifs.crypt.ChunkedCipherInputStream getDataStream(java.io.InputStream, int, int);
    descriptor: (Ljava/io/InputStream;II)Lorg/apache/poi/poifs/crypt/ChunkedCipherInputStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=4, args_size=4
        start local 0 // org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor this
        start local 1 // java.io.InputStream stream
        start local 2 // int size
        start local 3 // int initialPos
         0: .line 149
            new org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor$CryptoAPICipherInputStream
            dup
            aload 0 /* this */
            aload 1 /* stream */
            iload 2 /* size */
            i2l
            iload 3 /* initialPos */
            invokespecial org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor$CryptoAPICipherInputStream.<init>:(Lorg/apache/poi/poifs/crypt/cryptoapi/CryptoAPIDecryptor;Ljava/io/InputStream;JI)V
            areturn
        end local 3 // int initialPos
        end local 2 // int size
        end local 1 // java.io.InputStream stream
        end local 0 // org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/apache/poi/poifs/crypt/cryptoapi/CryptoAPIDecryptor;
            0    1     1      stream  Ljava/io/InputStream;
            0    1     2        size  I
            0    1     3  initialPos  I
    Exceptions:
      throws java.io.IOException, java.security.GeneralSecurityException
    MethodParameters:
            Name  Flags
      stream      
      size        
      initialPos  

  public org.apache.poi.poifs.filesystem.POIFSFileSystem getSummaryEntries(org.apache.poi.poifs.filesystem.DirectoryNode, java.lang.String);
    descriptor: (Lorg/apache/poi/poifs/filesystem/DirectoryNode;Ljava/lang/String;)Lorg/apache/poi/poifs/filesystem/POIFSFileSystem;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=20, args_size=3
        start local 0 // org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor this
        start local 1 // org.apache.poi.poifs.filesystem.DirectoryNode root
        start local 2 // java.lang.String encryptedStream
         0: .line 168
            aload 1 /* root */
            aload 2 /* encryptedStream */
            invokevirtual org.apache.poi.poifs.filesystem.DirectoryNode.getEntry:(Ljava/lang/String;)Lorg/apache/poi/poifs/filesystem/Entry;
            checkcast org.apache.poi.poifs.filesystem.DocumentNode
            astore 3 /* es */
        start local 3 // org.apache.poi.poifs.filesystem.DocumentNode es
         1: .line 169
            aload 1 /* root */
            aload 3 /* es */
            invokevirtual org.apache.poi.poifs.filesystem.DirectoryNode.createDocumentInputStream:(Lorg/apache/poi/poifs/filesystem/Entry;)Lorg/apache/poi/poifs/filesystem/DocumentInputStream;
            astore 4 /* dis */
        start local 4 // org.apache.poi.poifs.filesystem.DocumentInputStream dis
         2: .line 170
            new java.io.ByteArrayOutputStream
            dup
            invokespecial java.io.ByteArrayOutputStream.<init>:()V
            astore 5 /* bos */
        start local 5 // java.io.ByteArrayOutputStream bos
         3: .line 171
            aload 4 /* dis */
            aload 5 /* bos */
            invokestatic org.apache.poi.util.IOUtils.copy:(Ljava/io/InputStream;Ljava/io/OutputStream;)J
            pop2
         4: .line 172
            aload 4 /* dis */
            invokevirtual org.apache.poi.poifs.filesystem.DocumentInputStream.close:()V
         5: .line 173
            new org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDocumentInputStream
            dup
            aload 0 /* this */
            aload 5 /* bos */
            invokevirtual java.io.ByteArrayOutputStream.toByteArray:()[B
            invokespecial org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDocumentInputStream.<init>:(Lorg/apache/poi/poifs/crypt/cryptoapi/CryptoAPIDecryptor;[B)V
            astore 6 /* sbis */
        start local 6 // org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDocumentInputStream sbis
         6: .line 174
            new org.apache.poi.util.LittleEndianInputStream
            dup
            aload 6 /* sbis */
            invokespecial org.apache.poi.util.LittleEndianInputStream.<init>:(Ljava/io/InputStream;)V
            astore 7 /* leis */
        start local 7 // org.apache.poi.util.LittleEndianInputStream leis
         7: .line 175
            aconst_null
            astore 8 /* fsOut */
        start local 8 // org.apache.poi.poifs.filesystem.POIFSFileSystem fsOut
         8: .line 177
            aload 7 /* leis */
            invokevirtual org.apache.poi.util.LittleEndianInputStream.readUInt:()J
            l2i
            istore 9 /* streamDescriptorArrayOffset */
        start local 9 // int streamDescriptorArrayOffset
         9: .line 178
            aload 7 /* leis */
            invokevirtual org.apache.poi.util.LittleEndianInputStream.readUInt:()J
            pop2
        10: .line 179
            iload 9 /* streamDescriptorArrayOffset */
            i2l
            ldc 8
            lsub
            lstore 10 /* skipN */
        start local 10 // long skipN
        11: .line 180
            aload 6 /* sbis */
            lload 10 /* skipN */
            invokevirtual org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDocumentInputStream.skip:(J)J
            lload 10 /* skipN */
            lcmp
            ifge 13
        12: .line 181
            new java.io.EOFException
            dup
            ldc "buffer underrun"
            invokespecial java.io.EOFException.<init>:(Ljava/lang/String;)V
            athrow
        13: .line 183
      StackMap locals: org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor org.apache.poi.poifs.filesystem.DirectoryNode java.lang.String org.apache.poi.poifs.filesystem.DocumentNode org.apache.poi.poifs.filesystem.DocumentInputStream java.io.ByteArrayOutputStream org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDocumentInputStream org.apache.poi.util.LittleEndianInputStream org.apache.poi.poifs.filesystem.POIFSFileSystem int long
      StackMap stack:
            aload 6 /* sbis */
            iconst_0
            invokevirtual org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDocumentInputStream.setBlock:(I)V
        14: .line 184
            aload 7 /* leis */
            invokevirtual org.apache.poi.util.LittleEndianInputStream.readUInt:()J
            l2i
            istore 12 /* encryptedStreamDescriptorCount */
        start local 12 // int encryptedStreamDescriptorCount
        15: .line 185
            iload 12 /* encryptedStreamDescriptorCount */
            anewarray org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor$StreamDescriptorEntry
            astore 13 /* entries */
        start local 13 // org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor$StreamDescriptorEntry[] entries
        16: .line 186
            iconst_0
            istore 14 /* i */
        start local 14 // int i
        17: goto 30
        18: .line 187
      StackMap locals: int org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor$StreamDescriptorEntry[] int
      StackMap stack:
            new org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor$StreamDescriptorEntry
            dup
            invokespecial org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor$StreamDescriptorEntry.<init>:()V
            astore 15 /* entry */
        start local 15 // org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor$StreamDescriptorEntry entry
        19: .line 188
            aload 13 /* entries */
            iload 14 /* i */
            aload 15 /* entry */
            aastore
        20: .line 189
            aload 15 /* entry */
            aload 7 /* leis */
            invokevirtual org.apache.poi.util.LittleEndianInputStream.readUInt:()J
            l2i
            putfield org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor$StreamDescriptorEntry.streamOffset:I
        21: .line 190
            aload 15 /* entry */
            aload 7 /* leis */
            invokevirtual org.apache.poi.util.LittleEndianInputStream.readUInt:()J
            l2i
            putfield org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor$StreamDescriptorEntry.streamSize:I
        22: .line 191
            aload 15 /* entry */
            aload 7 /* leis */
            invokevirtual org.apache.poi.util.LittleEndianInputStream.readUShort:()I
            putfield org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor$StreamDescriptorEntry.block:I
        23: .line 192
            aload 7 /* leis */
            invokevirtual org.apache.poi.util.LittleEndianInputStream.readUByte:()I
            istore 16 /* nameSize */
        start local 16 // int nameSize
        24: .line 193
            aload 15 /* entry */
            aload 7 /* leis */
            invokevirtual org.apache.poi.util.LittleEndianInputStream.readUByte:()I
            putfield org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor$StreamDescriptorEntry.flags:I
        25: .line 195
            aload 15 /* entry */
            aload 7 /* leis */
            invokevirtual org.apache.poi.util.LittleEndianInputStream.readInt:()I
            putfield org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor$StreamDescriptorEntry.reserved2:I
        26: .line 196
            aload 15 /* entry */
            aload 7 /* leis */
            iload 16 /* nameSize */
            invokestatic org.apache.poi.util.StringUtil.readUnicodeLE:(Lorg/apache/poi/util/LittleEndianInput;I)Ljava/lang/String;
            putfield org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor$StreamDescriptorEntry.streamName:Ljava/lang/String;
        27: .line 197
            aload 7 /* leis */
            invokevirtual org.apache.poi.util.LittleEndianInputStream.readShort:()S
            pop
        28: .line 198
            getstatic org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor.$assertionsDisabled:Z
            ifne 29
            aload 15 /* entry */
            getfield org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor$StreamDescriptorEntry.streamName:Ljava/lang/String;
            invokevirtual java.lang.String.length:()I
            iload 16 /* nameSize */
            if_icmpeq 29
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        end local 16 // int nameSize
        end local 15 // org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor$StreamDescriptorEntry entry
        29: .line 186
      StackMap locals:
      StackMap stack:
            iinc 14 /* i */ 1
      StackMap locals:
      StackMap stack:
        30: iload 14 /* i */
            iload 12 /* encryptedStreamDescriptorCount */
            if_icmplt 18
        end local 14 // int i
        31: .line 201
            new org.apache.poi.poifs.filesystem.POIFSFileSystem
            dup
            invokespecial org.apache.poi.poifs.filesystem.POIFSFileSystem.<init>:()V
            astore 8 /* fsOut */
        32: .line 202
            aload 13 /* entries */
            dup
            astore 17
            arraylength
            istore 16
            iconst_0
            istore 15
            goto 40
      StackMap locals: org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor org.apache.poi.poifs.filesystem.DirectoryNode java.lang.String org.apache.poi.poifs.filesystem.DocumentNode org.apache.poi.poifs.filesystem.DocumentInputStream java.io.ByteArrayOutputStream org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDocumentInputStream org.apache.poi.util.LittleEndianInputStream org.apache.poi.poifs.filesystem.POIFSFileSystem int long int org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor$StreamDescriptorEntry[] top int int org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor$StreamDescriptorEntry[]
      StackMap stack:
        33: aload 17
            iload 15
            aaload
            astore 14 /* entry */
        start local 14 // org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor$StreamDescriptorEntry entry
        34: .line 203
            aload 6 /* sbis */
            aload 14 /* entry */
            getfield org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor$StreamDescriptorEntry.streamOffset:I
            invokevirtual org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDocumentInputStream.seek:(I)V
        35: .line 204
            aload 6 /* sbis */
            aload 14 /* entry */
            getfield org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor$StreamDescriptorEntry.block:I
            invokevirtual org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDocumentInputStream.setBlock:(I)V
        36: .line 205
            new org.apache.poi.util.BoundedInputStream
            dup
            aload 6 /* sbis */
            aload 14 /* entry */
            getfield org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor$StreamDescriptorEntry.streamSize:I
            i2l
            invokespecial org.apache.poi.util.BoundedInputStream.<init>:(Ljava/io/InputStream;J)V
            astore 18 /* is */
        start local 18 // java.io.InputStream is
        37: .line 206
            aload 8 /* fsOut */
            aload 18 /* is */
            aload 14 /* entry */
            getfield org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor$StreamDescriptorEntry.streamName:Ljava/lang/String;
            invokevirtual org.apache.poi.poifs.filesystem.POIFSFileSystem.createDocument:(Ljava/io/InputStream;Ljava/lang/String;)Lorg/apache/poi/poifs/filesystem/DocumentEntry;
            pop
        38: .line 207
            aload 18 /* is */
            invokevirtual java.io.InputStream.close:()V
        end local 18 // java.io.InputStream is
        end local 14 // org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor$StreamDescriptorEntry entry
        39: .line 202
            iinc 15 1
      StackMap locals:
      StackMap stack:
        40: iload 15
            iload 16
            if_icmplt 33
        end local 13 // org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor$StreamDescriptorEntry[] entries
        end local 12 // int encryptedStreamDescriptorCount
        end local 10 // long skipN
        end local 9 // int streamDescriptorArrayOffset
        41: .line 209
            goto 53
      StackMap locals: org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor org.apache.poi.poifs.filesystem.DirectoryNode java.lang.String org.apache.poi.poifs.filesystem.DocumentNode org.apache.poi.poifs.filesystem.DocumentInputStream java.io.ByteArrayOutputStream org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDocumentInputStream org.apache.poi.util.LittleEndianInputStream org.apache.poi.poifs.filesystem.POIFSFileSystem
      StackMap stack: java.lang.Exception
        42: astore 9 /* e */
        start local 9 // java.lang.Exception e
        43: .line 210
            aload 8 /* fsOut */
            invokestatic org.apache.poi.util.IOUtils.closeQuietly:(Ljava/io/Closeable;)V
        44: .line 211
            aload 9 /* e */
            instanceof java.security.GeneralSecurityException
            ifeq 46
        45: .line 212
            aload 9 /* e */
            checkcast java.security.GeneralSecurityException
            athrow
        46: .line 213
      StackMap locals: java.lang.Exception
      StackMap stack:
            aload 9 /* e */
            instanceof java.io.IOException
            ifeq 48
        47: .line 214
            aload 9 /* e */
            checkcast java.io.IOException
            athrow
        48: .line 216
      StackMap locals:
      StackMap stack:
            new java.io.IOException
            dup
            ldc "summary entries can't be read"
            aload 9 /* e */
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 9 // java.lang.Exception e
        49: .line 218
      StackMap locals: org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor org.apache.poi.poifs.filesystem.DirectoryNode java.lang.String org.apache.poi.poifs.filesystem.DocumentNode org.apache.poi.poifs.filesystem.DocumentInputStream java.io.ByteArrayOutputStream org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDocumentInputStream org.apache.poi.util.LittleEndianInputStream org.apache.poi.poifs.filesystem.POIFSFileSystem
      StackMap stack: java.lang.Throwable
            astore 19
        50: .line 219
            aload 7 /* leis */
            invokestatic org.apache.poi.util.IOUtils.closeQuietly:(Ljava/io/Closeable;)V
        51: .line 220
            aload 6 /* sbis */
            invokestatic org.apache.poi.util.IOUtils.closeQuietly:(Ljava/io/Closeable;)V
        52: .line 221
            aload 19
            athrow
        53: .line 219
      StackMap locals:
      StackMap stack:
            aload 7 /* leis */
            invokestatic org.apache.poi.util.IOUtils.closeQuietly:(Ljava/io/Closeable;)V
        54: .line 220
            aload 6 /* sbis */
            invokestatic org.apache.poi.util.IOUtils.closeQuietly:(Ljava/io/Closeable;)V
        55: .line 222
            aload 8 /* fsOut */
            areturn
        end local 8 // org.apache.poi.poifs.filesystem.POIFSFileSystem fsOut
        end local 7 // org.apache.poi.util.LittleEndianInputStream leis
        end local 6 // org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDocumentInputStream sbis
        end local 5 // java.io.ByteArrayOutputStream bos
        end local 4 // org.apache.poi.poifs.filesystem.DocumentInputStream dis
        end local 3 // org.apache.poi.poifs.filesystem.DocumentNode es
        end local 2 // java.lang.String encryptedStream
        end local 1 // org.apache.poi.poifs.filesystem.DirectoryNode root
        end local 0 // org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor this
      LocalVariableTable:
        Start  End  Slot                            Name  Signature
            0   56     0                            this  Lorg/apache/poi/poifs/crypt/cryptoapi/CryptoAPIDecryptor;
            0   56     1                            root  Lorg/apache/poi/poifs/filesystem/DirectoryNode;
            0   56     2                 encryptedStream  Ljava/lang/String;
            1   56     3                              es  Lorg/apache/poi/poifs/filesystem/DocumentNode;
            2   56     4                             dis  Lorg/apache/poi/poifs/filesystem/DocumentInputStream;
            3   56     5                             bos  Ljava/io/ByteArrayOutputStream;
            6   56     6                            sbis  Lorg/apache/poi/poifs/crypt/cryptoapi/CryptoAPIDocumentInputStream;
            7   56     7                            leis  Lorg/apache/poi/util/LittleEndianInputStream;
            8   56     8                           fsOut  Lorg/apache/poi/poifs/filesystem/POIFSFileSystem;
            9   41     9     streamDescriptorArrayOffset  I
           11   41    10                           skipN  J
           15   41    12  encryptedStreamDescriptorCount  I
           16   41    13                         entries  [Lorg/apache/poi/poifs/crypt/cryptoapi/CryptoAPIDecryptor$StreamDescriptorEntry;
           17   31    14                               i  I
           19   29    15                           entry  Lorg/apache/poi/poifs/crypt/cryptoapi/CryptoAPIDecryptor$StreamDescriptorEntry;
           24   29    16                        nameSize  I
           34   39    14                           entry  Lorg/apache/poi/poifs/crypt/cryptoapi/CryptoAPIDecryptor$StreamDescriptorEntry;
           37   39    18                              is  Ljava/io/InputStream;
           43   49     9                               e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           8    41      42  Class java.lang.Exception
           8    49      49  any
    Exceptions:
      throws java.io.IOException, java.security.GeneralSecurityException
    MethodParameters:
                 Name  Flags
      root             
      encryptedStream  

  public long getLength();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor this
         0: .line 230
            aload 0 /* this */
            getfield org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor.length:J
            ldc -1
            lcmp
            ifne 2
         1: .line 231
            new java.lang.IllegalStateException
            dup
            ldc "Decryptor.getDataStream() was not called"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 233
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor.length:J
            lreturn
        end local 0 // org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/poi/poifs/crypt/cryptoapi/CryptoAPIDecryptor;

  public void setChunkSize(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor this
        start local 1 // int chunkSize
         0: .line 238
            aload 0 /* this */
            iload 1 /* chunkSize */
            putfield org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor.chunkSize:I
         1: .line 239
            return
        end local 1 // int chunkSize
        end local 0 // org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/apache/poi/poifs/crypt/cryptoapi/CryptoAPIDecryptor;
            0    2     1  chunkSize  I
    MethodParameters:
           Name  Flags
      chunkSize  

  public org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor clone();
    descriptor: ()Lorg/apache/poi/poifs/crypt/cryptoapi/CryptoAPIDecryptor;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor this
         0: .line 243
            aload 0 /* this */
            invokespecial org.apache.poi.poifs.crypt.Decryptor.clone:()Lorg/apache/poi/poifs/crypt/Decryptor;
            checkcast org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor
            areturn
        end local 0 // org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/poi/poifs/crypt/cryptoapi/CryptoAPIDecryptor;
    Exceptions:
      throws java.lang.CloneNotSupportedException

  public java.io.InputStream getDataStream(java.io.InputStream, int, int);
    descriptor: (Ljava/io/InputStream;II)Ljava/io/InputStream;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=4
         0: .line 1
            aload 0
            aload 1
            iload 2
            iload 3
            invokevirtual org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor.getDataStream:(Ljava/io/InputStream;II)Lorg/apache/poi/poifs/crypt/ChunkedCipherInputStream;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.io.IOException, java.security.GeneralSecurityException

  public java.io.InputStream getDataStream(org.apache.poi.poifs.filesystem.DirectoryNode);
    descriptor: (Lorg/apache/poi/poifs/filesystem/DirectoryNode;)Ljava/io/InputStream;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor.getDataStream:(Lorg/apache/poi/poifs/filesystem/DirectoryNode;)Lorg/apache/poi/poifs/crypt/ChunkedCipherInputStream;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.io.IOException, java.security.GeneralSecurityException

  public org.apache.poi.poifs.crypt.Decryptor clone();
    descriptor: ()Lorg/apache/poi/poifs/crypt/Decryptor;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor.clone:()Lorg/apache/poi/poifs/crypt/cryptoapi/CryptoAPIDecryptor;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.CloneNotSupportedException

  public java.lang.Object clone();
    descriptor: ()Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor.clone:()Lorg/apache/poi/poifs/crypt/cryptoapi/CryptoAPIDecryptor;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.CloneNotSupportedException
}
SourceFile: "CryptoAPIDecryptor.java"
NestMembers:
  org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor$CryptoAPICipherInputStream  org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor$StreamDescriptorEntry
InnerClasses:
  private CryptoAPICipherInputStream = org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor$CryptoAPICipherInputStream of org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor
  StreamDescriptorEntry = org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor$StreamDescriptorEntry of org.apache.poi.poifs.crypt.cryptoapi.CryptoAPIDecryptor