public class org.bouncycastle.crypto.engines.RFC3211WrapEngine implements org.bouncycastle.crypto.Wrapper
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.bouncycastle.crypto.engines.RFC3211WrapEngine
  super_class: java.lang.Object
{
  private org.bouncycastle.crypto.modes.CBCBlockCipher engine;
    descriptor: Lorg/bouncycastle/crypto/modes/CBCBlockCipher;
    flags: (0x0002) ACC_PRIVATE

  private org.bouncycastle.crypto.params.ParametersWithIV param;
    descriptor: Lorg/bouncycastle/crypto/params/ParametersWithIV;
    flags: (0x0002) ACC_PRIVATE

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

  private java.security.SecureRandom rand;
    descriptor: Ljava/security/SecureRandom;
    flags: (0x0002) ACC_PRIVATE

  public void <init>(org.bouncycastle.crypto.BlockCipher);
    descriptor: (Lorg/bouncycastle/crypto/BlockCipher;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.bouncycastle.crypto.engines.RFC3211WrapEngine this
        start local 1 // org.bouncycastle.crypto.BlockCipher engine
         0: .line 25
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 27
            aload 0 /* this */
            new org.bouncycastle.crypto.modes.CBCBlockCipher
            dup
            aload 1 /* engine */
            invokespecial org.bouncycastle.crypto.modes.CBCBlockCipher.<init>:(Lorg/bouncycastle/crypto/BlockCipher;)V
            putfield org.bouncycastle.crypto.engines.RFC3211WrapEngine.engine:Lorg/bouncycastle/crypto/modes/CBCBlockCipher;
         2: .line 28
            return
        end local 1 // org.bouncycastle.crypto.BlockCipher engine
        end local 0 // org.bouncycastle.crypto.engines.RFC3211WrapEngine this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/bouncycastle/crypto/engines/RFC3211WrapEngine;
            0    3     1  engine  Lorg/bouncycastle/crypto/BlockCipher;
    MethodParameters:
        Name  Flags
      engine  

  public void init(boolean, org.bouncycastle.crypto.CipherParameters);
    descriptor: (ZLorg/bouncycastle/crypto/CipherParameters;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.bouncycastle.crypto.engines.RFC3211WrapEngine this
        start local 1 // boolean forWrapping
        start local 2 // org.bouncycastle.crypto.CipherParameters param
         0: .line 34
            aload 0 /* this */
            iload 1 /* forWrapping */
            putfield org.bouncycastle.crypto.engines.RFC3211WrapEngine.forWrapping:Z
         1: .line 36
            aload 2 /* param */
            instanceof org.bouncycastle.crypto.params.ParametersWithRandom
            ifeq 6
         2: .line 38
            aload 2 /* param */
            checkcast org.bouncycastle.crypto.params.ParametersWithRandom
            astore 3 /* p */
        start local 3 // org.bouncycastle.crypto.params.ParametersWithRandom p
         3: .line 40
            aload 0 /* this */
            aload 3 /* p */
            invokevirtual org.bouncycastle.crypto.params.ParametersWithRandom.getRandom:()Ljava/security/SecureRandom;
            putfield org.bouncycastle.crypto.engines.RFC3211WrapEngine.rand:Ljava/security/SecureRandom;
         4: .line 41
            aload 0 /* this */
            aload 3 /* p */
            invokevirtual org.bouncycastle.crypto.params.ParametersWithRandom.getParameters:()Lorg/bouncycastle/crypto/CipherParameters;
            checkcast org.bouncycastle.crypto.params.ParametersWithIV
            putfield org.bouncycastle.crypto.engines.RFC3211WrapEngine.param:Lorg/bouncycastle/crypto/params/ParametersWithIV;
        end local 3 // org.bouncycastle.crypto.params.ParametersWithRandom p
         5: .line 42
            goto 9
         6: .line 45
      StackMap locals:
      StackMap stack:
            iload 1 /* forWrapping */
            ifeq 8
         7: .line 47
            aload 0 /* this */
            new java.security.SecureRandom
            dup
            invokespecial java.security.SecureRandom.<init>:()V
            putfield org.bouncycastle.crypto.engines.RFC3211WrapEngine.rand:Ljava/security/SecureRandom;
         8: .line 50
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* param */
            checkcast org.bouncycastle.crypto.params.ParametersWithIV
            putfield org.bouncycastle.crypto.engines.RFC3211WrapEngine.param:Lorg/bouncycastle/crypto/params/ParametersWithIV;
         9: .line 52
      StackMap locals:
      StackMap stack:
            return
        end local 2 // org.bouncycastle.crypto.CipherParameters param
        end local 1 // boolean forWrapping
        end local 0 // org.bouncycastle.crypto.engines.RFC3211WrapEngine this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   10     0         this  Lorg/bouncycastle/crypto/engines/RFC3211WrapEngine;
            0   10     1  forWrapping  Z
            0   10     2        param  Lorg/bouncycastle/crypto/CipherParameters;
            3    5     3            p  Lorg/bouncycastle/crypto/params/ParametersWithRandom;
    MethodParameters:
             Name  Flags
      forWrapping  
      param        

  public java.lang.String getAlgorithmName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.bouncycastle.crypto.engines.RFC3211WrapEngine this
         0: .line 56
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RFC3211WrapEngine.engine:Lorg/bouncycastle/crypto/modes/CBCBlockCipher;
            invokevirtual org.bouncycastle.crypto.modes.CBCBlockCipher.getUnderlyingCipher:()Lorg/bouncycastle/crypto/BlockCipher;
            invokeinterface org.bouncycastle.crypto.BlockCipher.getAlgorithmName:()Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc "/RFC3211Wrap"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.bouncycastle.crypto.engines.RFC3211WrapEngine this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bouncycastle/crypto/engines/RFC3211WrapEngine;

  public byte[] wrap(byte[], int, int);
    descriptor: ([BII)[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=4
        start local 0 // org.bouncycastle.crypto.engines.RFC3211WrapEngine this
        start local 1 // byte[] in
        start local 2 // int inOff
        start local 3 // int inLen
         0: .line 64
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RFC3211WrapEngine.forWrapping:Z
            ifne 2
         1: .line 66
            new java.lang.IllegalStateException
            dup
            ldc "not set for wrapping"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 69
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RFC3211WrapEngine.engine:Lorg/bouncycastle/crypto/modes/CBCBlockCipher;
            iconst_1
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RFC3211WrapEngine.param:Lorg/bouncycastle/crypto/params/ParametersWithIV;
            invokevirtual org.bouncycastle.crypto.modes.CBCBlockCipher.init:(ZLorg/bouncycastle/crypto/CipherParameters;)V
         3: .line 71
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RFC3211WrapEngine.engine:Lorg/bouncycastle/crypto/modes/CBCBlockCipher;
            invokevirtual org.bouncycastle.crypto.modes.CBCBlockCipher.getBlockSize:()I
            istore 4 /* blockSize */
        start local 4 // int blockSize
         4: .line 74
            iload 3 /* inLen */
            iconst_4
            iadd
            iload 4 /* blockSize */
            iconst_2
            imul
            if_icmpge 7
         5: .line 76
            iload 4 /* blockSize */
            iconst_2
            imul
            newarray 8
            astore 5 /* cekBlock */
        start local 5 // byte[] cekBlock
         6: .line 77
            goto 10
        end local 5 // byte[] cekBlock
         7: .line 80
      StackMap locals: int
      StackMap stack:
            iload 3 /* inLen */
            iconst_4
            iadd
            iload 4 /* blockSize */
            irem
            ifne 8
            iload 3 /* inLen */
            iconst_4
            iadd
            goto 9
      StackMap locals:
      StackMap stack:
         8: iload 3 /* inLen */
            iconst_4
            iadd
            iload 4 /* blockSize */
            idiv
            iconst_1
            iadd
            iload 4 /* blockSize */
            imul
      StackMap locals:
      StackMap stack: int
         9: newarray 8
            astore 5 /* cekBlock */
        start local 5 // byte[] cekBlock
        10: .line 83
      StackMap locals: byte[]
      StackMap stack:
            aload 5 /* cekBlock */
            iconst_0
            iload 3 /* inLen */
            i2b
            bastore
        11: .line 84
            aload 5 /* cekBlock */
            iconst_1
            aload 1 /* in */
            iload 2 /* inOff */
            baload
            iconst_m1
            ixor
            i2b
            bastore
        12: .line 85
            aload 5 /* cekBlock */
            iconst_2
            aload 1 /* in */
            iload 2 /* inOff */
            iconst_1
            iadd
            baload
            iconst_m1
            ixor
            i2b
            bastore
        13: .line 86
            aload 5 /* cekBlock */
            iconst_3
            aload 1 /* in */
            iload 2 /* inOff */
            iconst_2
            iadd
            baload
            iconst_m1
            ixor
            i2b
            bastore
        14: .line 88
            aload 1 /* in */
            iload 2 /* inOff */
            aload 5 /* cekBlock */
            iconst_4
            iload 3 /* inLen */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        15: .line 90
            iload 3 /* inLen */
            iconst_4
            iadd
            istore 6 /* i */
        start local 6 // int i
        16: goto 19
        17: .line 92
      StackMap locals: int
      StackMap stack:
            aload 5 /* cekBlock */
            iload 6 /* i */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RFC3211WrapEngine.rand:Ljava/security/SecureRandom;
            invokevirtual java.security.SecureRandom.nextInt:()I
            i2b
            bastore
        18: .line 90
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        19: iload 6 /* i */
            aload 5 /* cekBlock */
            arraylength
            if_icmplt 17
        end local 6 // int i
        20: .line 95
            iconst_0
            istore 6 /* i */
        start local 6 // int i
        21: goto 24
        22: .line 97
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RFC3211WrapEngine.engine:Lorg/bouncycastle/crypto/modes/CBCBlockCipher;
            aload 5 /* cekBlock */
            iload 6 /* i */
            aload 5 /* cekBlock */
            iload 6 /* i */
            invokevirtual org.bouncycastle.crypto.modes.CBCBlockCipher.processBlock:([BI[BI)I
            pop
        23: .line 95
            iload 6 /* i */
            iload 4 /* blockSize */
            iadd
            istore 6 /* i */
      StackMap locals:
      StackMap stack:
        24: iload 6 /* i */
            aload 5 /* cekBlock */
            arraylength
            if_icmplt 22
        end local 6 // int i
        25: .line 100
            iconst_0
            istore 6 /* i */
        start local 6 // int i
        26: goto 29
        27: .line 102
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RFC3211WrapEngine.engine:Lorg/bouncycastle/crypto/modes/CBCBlockCipher;
            aload 5 /* cekBlock */
            iload 6 /* i */
            aload 5 /* cekBlock */
            iload 6 /* i */
            invokevirtual org.bouncycastle.crypto.modes.CBCBlockCipher.processBlock:([BI[BI)I
            pop
        28: .line 100
            iload 6 /* i */
            iload 4 /* blockSize */
            iadd
            istore 6 /* i */
      StackMap locals:
      StackMap stack:
        29: iload 6 /* i */
            aload 5 /* cekBlock */
            arraylength
            if_icmplt 27
        end local 6 // int i
        30: .line 105
            aload 5 /* cekBlock */
            areturn
        end local 5 // byte[] cekBlock
        end local 4 // int blockSize
        end local 3 // int inLen
        end local 2 // int inOff
        end local 1 // byte[] in
        end local 0 // org.bouncycastle.crypto.engines.RFC3211WrapEngine this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   31     0       this  Lorg/bouncycastle/crypto/engines/RFC3211WrapEngine;
            0   31     1         in  [B
            0   31     2      inOff  I
            0   31     3      inLen  I
            4   31     4  blockSize  I
            6    7     5   cekBlock  [B
           10   31     5   cekBlock  [B
           16   20     6          i  I
           21   25     6          i  I
           26   30     6          i  I
    MethodParameters:
       Name  Flags
      in     
      inOff  
      inLen  

  public byte[] unwrap(byte[], int, int);
    descriptor: ([BII)[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=11, args_size=4
        start local 0 // org.bouncycastle.crypto.engines.RFC3211WrapEngine this
        start local 1 // byte[] in
        start local 2 // int inOff
        start local 3 // int inLen
         0: .line 114
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RFC3211WrapEngine.forWrapping:Z
            ifeq 2
         1: .line 116
            new java.lang.IllegalStateException
            dup
            ldc "not set for unwrapping"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 119
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RFC3211WrapEngine.engine:Lorg/bouncycastle/crypto/modes/CBCBlockCipher;
            invokevirtual org.bouncycastle.crypto.modes.CBCBlockCipher.getBlockSize:()I
            istore 4 /* blockSize */
        start local 4 // int blockSize
         3: .line 121
            iload 3 /* inLen */
            iconst_2
            iload 4 /* blockSize */
            imul
            if_icmpge 5
         4: .line 123
            new org.bouncycastle.crypto.InvalidCipherTextException
            dup
            ldc "input too short"
            invokespecial org.bouncycastle.crypto.InvalidCipherTextException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 126
      StackMap locals: int
      StackMap stack:
            iload 3 /* inLen */
            newarray 8
            astore 5 /* cekBlock */
        start local 5 // byte[] cekBlock
         6: .line 127
            iload 4 /* blockSize */
            newarray 8
            astore 6 /* iv */
        start local 6 // byte[] iv
         7: .line 129
            aload 1 /* in */
            iload 2 /* inOff */
            aload 5 /* cekBlock */
            iconst_0
            iload 3 /* inLen */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         8: .line 130
            aload 1 /* in */
            iload 2 /* inOff */
            aload 6 /* iv */
            iconst_0
            aload 6 /* iv */
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         9: .line 132
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RFC3211WrapEngine.engine:Lorg/bouncycastle/crypto/modes/CBCBlockCipher;
            iconst_0
            new org.bouncycastle.crypto.params.ParametersWithIV
            dup
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RFC3211WrapEngine.param:Lorg/bouncycastle/crypto/params/ParametersWithIV;
            invokevirtual org.bouncycastle.crypto.params.ParametersWithIV.getParameters:()Lorg/bouncycastle/crypto/CipherParameters;
            aload 6 /* iv */
            invokespecial org.bouncycastle.crypto.params.ParametersWithIV.<init>:(Lorg/bouncycastle/crypto/CipherParameters;[B)V
            invokevirtual org.bouncycastle.crypto.modes.CBCBlockCipher.init:(ZLorg/bouncycastle/crypto/CipherParameters;)V
        10: .line 134
            iload 4 /* blockSize */
            istore 7 /* i */
        start local 7 // int i
        11: goto 14
        12: .line 136
      StackMap locals: byte[] byte[] int
      StackMap stack:
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RFC3211WrapEngine.engine:Lorg/bouncycastle/crypto/modes/CBCBlockCipher;
            aload 5 /* cekBlock */
            iload 7 /* i */
            aload 5 /* cekBlock */
            iload 7 /* i */
            invokevirtual org.bouncycastle.crypto.modes.CBCBlockCipher.processBlock:([BI[BI)I
            pop
        13: .line 134
            iload 7 /* i */
            iload 4 /* blockSize */
            iadd
            istore 7 /* i */
      StackMap locals:
      StackMap stack:
        14: iload 7 /* i */
            aload 5 /* cekBlock */
            arraylength
            if_icmplt 12
        end local 7 // int i
        15: .line 139
            aload 5 /* cekBlock */
            aload 5 /* cekBlock */
            arraylength
            aload 6 /* iv */
            arraylength
            isub
            aload 6 /* iv */
            iconst_0
            aload 6 /* iv */
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        16: .line 141
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RFC3211WrapEngine.engine:Lorg/bouncycastle/crypto/modes/CBCBlockCipher;
            iconst_0
            new org.bouncycastle.crypto.params.ParametersWithIV
            dup
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RFC3211WrapEngine.param:Lorg/bouncycastle/crypto/params/ParametersWithIV;
            invokevirtual org.bouncycastle.crypto.params.ParametersWithIV.getParameters:()Lorg/bouncycastle/crypto/CipherParameters;
            aload 6 /* iv */
            invokespecial org.bouncycastle.crypto.params.ParametersWithIV.<init>:(Lorg/bouncycastle/crypto/CipherParameters;[B)V
            invokevirtual org.bouncycastle.crypto.modes.CBCBlockCipher.init:(ZLorg/bouncycastle/crypto/CipherParameters;)V
        17: .line 143
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RFC3211WrapEngine.engine:Lorg/bouncycastle/crypto/modes/CBCBlockCipher;
            aload 5 /* cekBlock */
            iconst_0
            aload 5 /* cekBlock */
            iconst_0
            invokevirtual org.bouncycastle.crypto.modes.CBCBlockCipher.processBlock:([BI[BI)I
            pop
        18: .line 145
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RFC3211WrapEngine.engine:Lorg/bouncycastle/crypto/modes/CBCBlockCipher;
            iconst_0
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RFC3211WrapEngine.param:Lorg/bouncycastle/crypto/params/ParametersWithIV;
            invokevirtual org.bouncycastle.crypto.modes.CBCBlockCipher.init:(ZLorg/bouncycastle/crypto/CipherParameters;)V
        19: .line 147
            iconst_0
            istore 7 /* i */
        start local 7 // int i
        20: goto 23
        21: .line 149
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RFC3211WrapEngine.engine:Lorg/bouncycastle/crypto/modes/CBCBlockCipher;
            aload 5 /* cekBlock */
            iload 7 /* i */
            aload 5 /* cekBlock */
            iload 7 /* i */
            invokevirtual org.bouncycastle.crypto.modes.CBCBlockCipher.processBlock:([BI[BI)I
            pop
        22: .line 147
            iload 7 /* i */
            iload 4 /* blockSize */
            iadd
            istore 7 /* i */
      StackMap locals:
      StackMap stack:
        23: iload 7 /* i */
            aload 5 /* cekBlock */
            arraylength
            if_icmplt 21
        end local 7 // int i
        24: .line 152
            aload 5 /* cekBlock */
            iconst_0
            baload
            sipush 255
            iand
            aload 5 /* cekBlock */
            arraylength
            iconst_4
            isub
            if_icmple 26
        25: .line 154
            new org.bouncycastle.crypto.InvalidCipherTextException
            dup
            ldc "wrapped key corrupted"
            invokespecial org.bouncycastle.crypto.InvalidCipherTextException.<init>:(Ljava/lang/String;)V
            athrow
        26: .line 157
      StackMap locals:
      StackMap stack:
            aload 5 /* cekBlock */
            iconst_0
            baload
            sipush 255
            iand
            newarray 8
            astore 7 /* key */
        start local 7 // byte[] key
        27: .line 159
            aload 5 /* cekBlock */
            iconst_4
            aload 7 /* key */
            iconst_0
            aload 5 /* cekBlock */
            iconst_0
            baload
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        28: .line 162
            iconst_0
            istore 8 /* nonEqual */
        start local 8 // int nonEqual
        29: .line 163
            iconst_0
            istore 9 /* i */
        start local 9 // int i
        30: goto 34
        31: .line 165
      StackMap locals: byte[] int int
      StackMap stack:
            aload 5 /* cekBlock */
            iconst_1
            iload 9 /* i */
            iadd
            baload
            iconst_m1
            ixor
            i2b
            istore 10 /* check */
        start local 10 // byte check
        32: .line 166
            iload 8 /* nonEqual */
            iload 10 /* check */
            aload 7 /* key */
            iload 9 /* i */
            baload
            ixor
            ior
            istore 8 /* nonEqual */
        end local 10 // byte check
        33: .line 163
            iinc 9 /* i */ 1
      StackMap locals:
      StackMap stack:
        34: iload 9 /* i */
            iconst_3
            if_icmpne 31
        end local 9 // int i
        35: .line 168
            iload 8 /* nonEqual */
            ifeq 37
        36: .line 170
            new org.bouncycastle.crypto.InvalidCipherTextException
            dup
            ldc "wrapped key fails checksum"
            invokespecial org.bouncycastle.crypto.InvalidCipherTextException.<init>:(Ljava/lang/String;)V
            athrow
        37: .line 173
      StackMap locals:
      StackMap stack:
            aload 7 /* key */
            areturn
        end local 8 // int nonEqual
        end local 7 // byte[] key
        end local 6 // byte[] iv
        end local 5 // byte[] cekBlock
        end local 4 // int blockSize
        end local 3 // int inLen
        end local 2 // int inOff
        end local 1 // byte[] in
        end local 0 // org.bouncycastle.crypto.engines.RFC3211WrapEngine this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   38     0       this  Lorg/bouncycastle/crypto/engines/RFC3211WrapEngine;
            0   38     1         in  [B
            0   38     2      inOff  I
            0   38     3      inLen  I
            3   38     4  blockSize  I
            6   38     5   cekBlock  [B
            7   38     6         iv  [B
           11   15     7          i  I
           20   24     7          i  I
           27   38     7        key  [B
           29   38     8   nonEqual  I
           30   35     9          i  I
           32   33    10      check  B
    Exceptions:
      throws org.bouncycastle.crypto.InvalidCipherTextException
    MethodParameters:
       Name  Flags
      in     
      inOff  
      inLen  
}
SourceFile: "RFC3211WrapEngine.java"