public class org.bouncycastle.crypto.paddings.PKCS7Padding implements org.bouncycastle.crypto.paddings.BlockCipherPadding
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.bouncycastle.crypto.paddings.PKCS7Padding
  super_class: java.lang.Object
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.bouncycastle.crypto.paddings.PKCS7Padding this
         0: .line 10
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.bouncycastle.crypto.paddings.PKCS7Padding this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bouncycastle/crypto/paddings/PKCS7Padding;

  public void init(java.security.SecureRandom);
    descriptor: (Ljava/security/SecureRandom;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // org.bouncycastle.crypto.paddings.PKCS7Padding this
        start local 1 // java.security.SecureRandom random
         0: .line 22
            return
        end local 1 // java.security.SecureRandom random
        end local 0 // org.bouncycastle.crypto.paddings.PKCS7Padding this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/bouncycastle/crypto/paddings/PKCS7Padding;
            0    1     1  random  Ljava/security/SecureRandom;
    Exceptions:
      throws java.lang.IllegalArgumentException
    MethodParameters:
        Name  Flags
      random  

  public java.lang.String getPaddingName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.bouncycastle.crypto.paddings.PKCS7Padding this
         0: .line 31
            ldc "PKCS7"
            areturn
        end local 0 // org.bouncycastle.crypto.paddings.PKCS7Padding this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bouncycastle/crypto/paddings/PKCS7Padding;

  public int addPadding(byte[], int);
    descriptor: ([BI)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.bouncycastle.crypto.paddings.PKCS7Padding this
        start local 1 // byte[] in
        start local 2 // int inOff
         0: .line 42
            aload 1 /* in */
            arraylength
            iload 2 /* inOff */
            isub
            i2b
            istore 3 /* code */
        start local 3 // byte code
         1: .line 44
            goto 4
         2: .line 46
      StackMap locals: int
      StackMap stack:
            aload 1 /* in */
            iload 2 /* inOff */
            iload 3 /* code */
            bastore
         3: .line 47
            iinc 2 /* inOff */ 1
         4: .line 44
      StackMap locals:
      StackMap stack:
            iload 2 /* inOff */
            aload 1 /* in */
            arraylength
            if_icmplt 2
         5: .line 50
            iload 3 /* code */
            ireturn
        end local 3 // byte code
        end local 2 // int inOff
        end local 1 // byte[] in
        end local 0 // org.bouncycastle.crypto.paddings.PKCS7Padding this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lorg/bouncycastle/crypto/paddings/PKCS7Padding;
            0    6     1     in  [B
            0    6     2  inOff  I
            1    6     3   code  B
    MethodParameters:
       Name  Flags
      in     
      inOff  

  public int padCount(byte[]);
    descriptor: ([B)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.bouncycastle.crypto.paddings.PKCS7Padding this
        start local 1 // byte[] in
         0: .line 59
            aload 1 /* in */
            aload 1 /* in */
            arraylength
            iconst_1
            isub
            baload
            sipush 255
            iand
            istore 2 /* count */
        start local 2 // int count
         1: .line 61
            iload 2 /* count */
            aload 1 /* in */
            arraylength
            if_icmpgt 2
            iload 2 /* count */
            ifne 3
         2: .line 63
      StackMap locals: int
      StackMap stack:
            new org.bouncycastle.crypto.InvalidCipherTextException
            dup
            ldc "pad block corrupted"
            invokespecial org.bouncycastle.crypto.InvalidCipherTextException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 66
      StackMap locals:
      StackMap stack:
            iconst_1
            istore 3 /* i */
        start local 3 // int i
         4: goto 8
         5: .line 68
      StackMap locals: int
      StackMap stack:
            aload 1 /* in */
            aload 1 /* in */
            arraylength
            iload 3 /* i */
            isub
            baload
            iload 2 /* count */
            if_icmpeq 7
         6: .line 70
            new org.bouncycastle.crypto.InvalidCipherTextException
            dup
            ldc "pad block corrupted"
            invokespecial org.bouncycastle.crypto.InvalidCipherTextException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 66
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         8: iload 3 /* i */
            iload 2 /* count */
            if_icmple 5
        end local 3 // int i
         9: .line 74
            iload 2 /* count */
            ireturn
        end local 2 // int count
        end local 1 // byte[] in
        end local 0 // org.bouncycastle.crypto.paddings.PKCS7Padding this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lorg/bouncycastle/crypto/paddings/PKCS7Padding;
            0   10     1     in  [B
            1   10     2  count  I
            4    9     3      i  I
    Exceptions:
      throws org.bouncycastle.crypto.InvalidCipherTextException
    MethodParameters:
      Name  Flags
      in    
}
SourceFile: "PKCS7Padding.java"