class sun.security.pkcs11.P11Cipher$PKCS5Padding implements sun.security.pkcs11.P11Cipher$Padding
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: sun.security.pkcs11.P11Cipher$PKCS5Padding
  super_class: java.lang.Object
{
  private final int blockSize;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // sun.security.pkcs11.P11Cipher$PKCS5Padding this
        start local 1 // int blockSize
         0: .line 85
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 87
            iload 1 /* blockSize */
            ifne 5
         2: .line 88
            new javax.crypto.NoSuchPaddingException
            dup
         3: .line 89
            ldc "PKCS#5 padding not supported with stream ciphers"
         4: .line 88
            invokespecial javax.crypto.NoSuchPaddingException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 91
      StackMap locals: sun.security.pkcs11.P11Cipher$PKCS5Padding int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* blockSize */
            putfield sun.security.pkcs11.P11Cipher$PKCS5Padding.blockSize:I
         6: .line 92
            return
        end local 1 // int blockSize
        end local 0 // sun.security.pkcs11.P11Cipher$PKCS5Padding this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    7     0       this  Lsun/security/pkcs11/P11Cipher$PKCS5Padding;
            0    7     1  blockSize  I
    Exceptions:
      throws javax.crypto.NoSuchPaddingException
    MethodParameters:
           Name  Flags
      blockSize  

  public int setPaddingBytes(byte[], int);
    descriptor: ([BI)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // sun.security.pkcs11.P11Cipher$PKCS5Padding this
        start local 1 // byte[] paddingBuffer
        start local 2 // int padLen
         0: .line 95
            aload 1 /* paddingBuffer */
            iconst_0
            iload 2 /* padLen */
            iload 2 /* padLen */
            bipush 127
            iand
            i2b
            invokestatic java.util.Arrays.fill:([BIIB)V
         1: .line 96
            iload 2 /* padLen */
            ireturn
        end local 2 // int padLen
        end local 1 // byte[] paddingBuffer
        end local 0 // sun.security.pkcs11.P11Cipher$PKCS5Padding this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lsun/security/pkcs11/P11Cipher$PKCS5Padding;
            0    2     1  paddingBuffer  [B
            0    2     2         padLen  I
    MethodParameters:
               Name  Flags
      paddingBuffer  
      padLen         

  public int unpad(byte[], int, int);
    descriptor: ([BII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=7, args_size=4
        start local 0 // sun.security.pkcs11.P11Cipher$PKCS5Padding this
        start local 1 // byte[] paddedData
        start local 2 // int ofs
        start local 3 // int len
         0: .line 101
            aload 1 /* paddedData */
            iload 2 /* ofs */
            iload 3 /* len */
            iadd
            iconst_1
            isub
            baload
            istore 4 /* padValue */
        start local 4 // byte padValue
         1: .line 102
            iload 4 /* padValue */
            iconst_1
            if_icmplt 2
            iload 4 /* padValue */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher$PKCS5Padding.blockSize:I
            if_icmple 3
         2: .line 103
      StackMap locals: int
      StackMap stack:
            new javax.crypto.BadPaddingException
            dup
            ldc "Invalid pad value!"
            invokespecial javax.crypto.BadPaddingException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 106
      StackMap locals:
      StackMap stack:
            iload 2 /* ofs */
            iload 3 /* len */
            iadd
            iload 4 /* padValue */
            isub
            istore 5 /* padStartIndex */
        start local 5 // int padStartIndex
         4: .line 107
            iload 5 /* padStartIndex */
            istore 6 /* i */
        start local 6 // int i
         5: goto 9
         6: .line 108
      StackMap locals: int int
      StackMap stack:
            aload 1 /* paddedData */
            iload 6 /* i */
            baload
            iload 4 /* padValue */
            if_icmpeq 8
         7: .line 109
            new javax.crypto.BadPaddingException
            dup
            ldc "Invalid pad bytes!"
            invokespecial javax.crypto.BadPaddingException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 107
      StackMap locals:
      StackMap stack:
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
         9: iload 6 /* i */
            iload 3 /* len */
            if_icmplt 6
        end local 6 // int i
        10: .line 112
            iload 4 /* padValue */
            ireturn
        end local 5 // int padStartIndex
        end local 4 // byte padValue
        end local 3 // int len
        end local 2 // int ofs
        end local 1 // byte[] paddedData
        end local 0 // sun.security.pkcs11.P11Cipher$PKCS5Padding this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   11     0           this  Lsun/security/pkcs11/P11Cipher$PKCS5Padding;
            0   11     1     paddedData  [B
            0   11     2            ofs  I
            0   11     3            len  I
            1   11     4       padValue  B
            4   11     5  padStartIndex  I
            5   10     6              i  I
    Exceptions:
      throws javax.crypto.BadPaddingException
    MethodParameters:
            Name  Flags
      paddedData  
      ofs         
      len         
}
SourceFile: "P11Cipher.java"
NestHost: sun.security.pkcs11.P11Cipher
InnerClasses:
  private PKCS5Padding = sun.security.pkcs11.P11Cipher$PKCS5Padding of sun.security.pkcs11.P11Cipher
  private abstract Padding = sun.security.pkcs11.P11Cipher$Padding of sun.security.pkcs11.P11Cipher