public class org.bouncycastle.crypto.encodings.PKCS1Encoding implements org.bouncycastle.crypto.AsymmetricBlockCipher
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.bouncycastle.crypto.encodings.PKCS1Encoding
  super_class: java.lang.Object
{
  public static final java.lang.String STRICT_LENGTH_ENABLED_PROPERTY;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "org.bouncycastle.pkcs1.strict"

  private static final int HEADER_LENGTH;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 10

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

  private org.bouncycastle.crypto.AsymmetricBlockCipher engine;
    descriptor: Lorg/bouncycastle/crypto/AsymmetricBlockCipher;
    flags: (0x0002) ACC_PRIVATE

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

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

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

  public void <init>(org.bouncycastle.crypto.AsymmetricBlockCipher);
    descriptor: (Lorg/bouncycastle/crypto/AsymmetricBlockCipher;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.bouncycastle.crypto.encodings.PKCS1Encoding this
        start local 1 // org.bouncycastle.crypto.AsymmetricBlockCipher cipher
         0: .line 42
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 45
            aload 0 /* this */
            aload 1 /* cipher */
            putfield org.bouncycastle.crypto.encodings.PKCS1Encoding.engine:Lorg/bouncycastle/crypto/AsymmetricBlockCipher;
         2: .line 46
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.bouncycastle.crypto.encodings.PKCS1Encoding.useStrict:()Z
            putfield org.bouncycastle.crypto.encodings.PKCS1Encoding.useStrictLength:Z
         3: .line 47
            return
        end local 1 // org.bouncycastle.crypto.AsymmetricBlockCipher cipher
        end local 0 // org.bouncycastle.crypto.encodings.PKCS1Encoding this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lorg/bouncycastle/crypto/encodings/PKCS1Encoding;
            0    4     1  cipher  Lorg/bouncycastle/crypto/AsymmetricBlockCipher;
    MethodParameters:
        Name  Flags
      cipher  

  private boolean useStrict();
    descriptor: ()Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.bouncycastle.crypto.encodings.PKCS1Encoding this
         0: .line 55
            new org.bouncycastle.crypto.encodings.PKCS1Encoding$1
            dup
            aload 0 /* this */
            invokespecial org.bouncycastle.crypto.encodings.PKCS1Encoding$1.<init>:(Lorg/bouncycastle/crypto/encodings/PKCS1Encoding;)V
            invokestatic java.security.AccessController.doPrivileged:(Ljava/security/PrivilegedAction;)Ljava/lang/Object;
            checkcast java.lang.String
            astore 1 /* strict */
        start local 1 // java.lang.String strict
         1: .line 63
            aload 1 /* strict */
            ifnull 2
            aload 1 /* strict */
            ldc "true"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 2
            iconst_0
            ireturn
      StackMap locals: java.lang.String
      StackMap stack:
         2: iconst_1
            ireturn
        end local 1 // java.lang.String strict
        end local 0 // org.bouncycastle.crypto.encodings.PKCS1Encoding this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/bouncycastle/crypto/encodings/PKCS1Encoding;
            1    3     1  strict  Ljava/lang/String;

  public org.bouncycastle.crypto.AsymmetricBlockCipher getUnderlyingCipher();
    descriptor: ()Lorg/bouncycastle/crypto/AsymmetricBlockCipher;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.bouncycastle.crypto.encodings.PKCS1Encoding this
         0: .line 68
            aload 0 /* this */
            getfield org.bouncycastle.crypto.encodings.PKCS1Encoding.engine:Lorg/bouncycastle/crypto/AsymmetricBlockCipher;
            areturn
        end local 0 // org.bouncycastle.crypto.encodings.PKCS1Encoding this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bouncycastle/crypto/encodings/PKCS1Encoding;

  public void init(boolean, org.bouncycastle.crypto.CipherParameters);
    descriptor: (ZLorg/bouncycastle/crypto/CipherParameters;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // org.bouncycastle.crypto.encodings.PKCS1Encoding this
        start local 1 // boolean forEncryption
        start local 2 // org.bouncycastle.crypto.CipherParameters param
         0: .line 77
            aload 2 /* param */
            instanceof org.bouncycastle.crypto.params.ParametersWithRandom
            ifeq 5
         1: .line 79
            aload 2 /* param */
            checkcast org.bouncycastle.crypto.params.ParametersWithRandom
            astore 4 /* rParam */
        start local 4 // org.bouncycastle.crypto.params.ParametersWithRandom rParam
         2: .line 81
            aload 0 /* this */
            aload 4 /* rParam */
            invokevirtual org.bouncycastle.crypto.params.ParametersWithRandom.getRandom:()Ljava/security/SecureRandom;
            putfield org.bouncycastle.crypto.encodings.PKCS1Encoding.random:Ljava/security/SecureRandom;
         3: .line 82
            aload 4 /* rParam */
            invokevirtual org.bouncycastle.crypto.params.ParametersWithRandom.getParameters:()Lorg/bouncycastle/crypto/CipherParameters;
            checkcast org.bouncycastle.crypto.params.AsymmetricKeyParameter
            astore 3 /* kParam */
        end local 4 // org.bouncycastle.crypto.params.ParametersWithRandom rParam
        start local 3 // org.bouncycastle.crypto.params.AsymmetricKeyParameter kParam
         4: .line 83
            goto 7
        end local 3 // org.bouncycastle.crypto.params.AsymmetricKeyParameter kParam
         5: .line 86
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            new java.security.SecureRandom
            dup
            invokespecial java.security.SecureRandom.<init>:()V
            putfield org.bouncycastle.crypto.encodings.PKCS1Encoding.random:Ljava/security/SecureRandom;
         6: .line 87
            aload 2 /* param */
            checkcast org.bouncycastle.crypto.params.AsymmetricKeyParameter
            astore 3 /* kParam */
        start local 3 // org.bouncycastle.crypto.params.AsymmetricKeyParameter kParam
         7: .line 90
      StackMap locals: org.bouncycastle.crypto.params.AsymmetricKeyParameter
      StackMap stack:
            aload 0 /* this */
            getfield org.bouncycastle.crypto.encodings.PKCS1Encoding.engine:Lorg/bouncycastle/crypto/AsymmetricBlockCipher;
            iload 1 /* forEncryption */
            aload 2 /* param */
            invokeinterface org.bouncycastle.crypto.AsymmetricBlockCipher.init:(ZLorg/bouncycastle/crypto/CipherParameters;)V
         8: .line 92
            aload 0 /* this */
            aload 3 /* kParam */
            invokevirtual org.bouncycastle.crypto.params.AsymmetricKeyParameter.isPrivate:()Z
            putfield org.bouncycastle.crypto.encodings.PKCS1Encoding.forPrivateKey:Z
         9: .line 93
            aload 0 /* this */
            iload 1 /* forEncryption */
            putfield org.bouncycastle.crypto.encodings.PKCS1Encoding.forEncryption:Z
        10: .line 94
            return
        end local 3 // org.bouncycastle.crypto.params.AsymmetricKeyParameter kParam
        end local 2 // org.bouncycastle.crypto.CipherParameters param
        end local 1 // boolean forEncryption
        end local 0 // org.bouncycastle.crypto.encodings.PKCS1Encoding this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   11     0           this  Lorg/bouncycastle/crypto/encodings/PKCS1Encoding;
            0   11     1  forEncryption  Z
            0   11     2          param  Lorg/bouncycastle/crypto/CipherParameters;
            4    5     3         kParam  Lorg/bouncycastle/crypto/params/AsymmetricKeyParameter;
            7   11     3         kParam  Lorg/bouncycastle/crypto/params/AsymmetricKeyParameter;
            2    4     4         rParam  Lorg/bouncycastle/crypto/params/ParametersWithRandom;
    MethodParameters:
               Name  Flags
      forEncryption  
      param          

  public int getInputBlockSize();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.bouncycastle.crypto.encodings.PKCS1Encoding this
         0: .line 98
            aload 0 /* this */
            getfield org.bouncycastle.crypto.encodings.PKCS1Encoding.engine:Lorg/bouncycastle/crypto/AsymmetricBlockCipher;
            invokeinterface org.bouncycastle.crypto.AsymmetricBlockCipher.getInputBlockSize:()I
            istore 1 /* baseBlockSize */
        start local 1 // int baseBlockSize
         1: .line 100
            aload 0 /* this */
            getfield org.bouncycastle.crypto.encodings.PKCS1Encoding.forEncryption:Z
            ifeq 3
         2: .line 102
            iload 1 /* baseBlockSize */
            bipush 10
            isub
            ireturn
         3: .line 106
      StackMap locals: int
      StackMap stack:
            iload 1 /* baseBlockSize */
            ireturn
        end local 1 // int baseBlockSize
        end local 0 // org.bouncycastle.crypto.encodings.PKCS1Encoding this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    4     0           this  Lorg/bouncycastle/crypto/encodings/PKCS1Encoding;
            1    4     1  baseBlockSize  I

  public int getOutputBlockSize();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.bouncycastle.crypto.encodings.PKCS1Encoding this
         0: .line 112
            aload 0 /* this */
            getfield org.bouncycastle.crypto.encodings.PKCS1Encoding.engine:Lorg/bouncycastle/crypto/AsymmetricBlockCipher;
            invokeinterface org.bouncycastle.crypto.AsymmetricBlockCipher.getOutputBlockSize:()I
            istore 1 /* baseBlockSize */
        start local 1 // int baseBlockSize
         1: .line 114
            aload 0 /* this */
            getfield org.bouncycastle.crypto.encodings.PKCS1Encoding.forEncryption:Z
            ifeq 3
         2: .line 116
            iload 1 /* baseBlockSize */
            ireturn
         3: .line 120
      StackMap locals: int
      StackMap stack:
            iload 1 /* baseBlockSize */
            bipush 10
            isub
            ireturn
        end local 1 // int baseBlockSize
        end local 0 // org.bouncycastle.crypto.encodings.PKCS1Encoding this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    4     0           this  Lorg/bouncycastle/crypto/encodings/PKCS1Encoding;
            1    4     1  baseBlockSize  I

  public byte[] processBlock(byte[], int, int);
    descriptor: ([BII)[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.bouncycastle.crypto.encodings.PKCS1Encoding this
        start local 1 // byte[] in
        start local 2 // int inOff
        start local 3 // int inLen
         0: .line 130
            aload 0 /* this */
            getfield org.bouncycastle.crypto.encodings.PKCS1Encoding.forEncryption:Z
            ifeq 2
         1: .line 132
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* inOff */
            iload 3 /* inLen */
            invokevirtual org.bouncycastle.crypto.encodings.PKCS1Encoding.encodeBlock:([BII)[B
            areturn
         2: .line 136
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* inOff */
            iload 3 /* inLen */
            invokevirtual org.bouncycastle.crypto.encodings.PKCS1Encoding.decodeBlock:([BII)[B
            areturn
        end local 3 // int inLen
        end local 2 // int inOff
        end local 1 // byte[] in
        end local 0 // org.bouncycastle.crypto.encodings.PKCS1Encoding this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/bouncycastle/crypto/encodings/PKCS1Encoding;
            0    3     1     in  [B
            0    3     2  inOff  I
            0    3     3  inLen  I
    Exceptions:
      throws org.bouncycastle.crypto.InvalidCipherTextException
    MethodParameters:
       Name  Flags
      in     
      inOff  
      inLen  

  private byte[] encodeBlock(byte[], int, int);
    descriptor: ([BII)[B
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=6, args_size=4
        start local 0 // org.bouncycastle.crypto.encodings.PKCS1Encoding this
        start local 1 // byte[] in
        start local 2 // int inOff
        start local 3 // int inLen
         0: .line 146
            iload 3 /* inLen */
            aload 0 /* this */
            invokevirtual org.bouncycastle.crypto.encodings.PKCS1Encoding.getInputBlockSize:()I
            if_icmple 2
         1: .line 148
            new java.lang.IllegalArgumentException
            dup
            ldc "input data too large"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 151
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.bouncycastle.crypto.encodings.PKCS1Encoding.engine:Lorg/bouncycastle/crypto/AsymmetricBlockCipher;
            invokeinterface org.bouncycastle.crypto.AsymmetricBlockCipher.getInputBlockSize:()I
            newarray 8
            astore 4 /* block */
        start local 4 // byte[] block
         3: .line 153
            aload 0 /* this */
            getfield org.bouncycastle.crypto.encodings.PKCS1Encoding.forPrivateKey:Z
            ifeq 11
         4: .line 155
            aload 4 /* block */
            iconst_0
            iconst_1
            bastore
         5: .line 157
            iconst_1
            istore 5 /* i */
        start local 5 // int i
         6: goto 9
         7: .line 159
      StackMap locals: byte[] int
      StackMap stack:
            aload 4 /* block */
            iload 5 /* i */
            iconst_m1
            bastore
         8: .line 157
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
         9: iload 5 /* i */
            aload 4 /* block */
            arraylength
            iload 3 /* inLen */
            isub
            iconst_1
            isub
            if_icmpne 7
        end local 5 // int i
        10: .line 161
            goto 19
        11: .line 164
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.bouncycastle.crypto.encodings.PKCS1Encoding.random:Ljava/security/SecureRandom;
            aload 4 /* block */
            invokevirtual java.security.SecureRandom.nextBytes:([B)V
        12: .line 166
            aload 4 /* block */
            iconst_0
            iconst_2
            bastore
        13: .line 172
            iconst_1
            istore 5 /* i */
        start local 5 // int i
        14: goto 18
        15: .line 176
      StackMap locals: int
      StackMap stack:
            aload 4 /* block */
            iload 5 /* i */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.encodings.PKCS1Encoding.random:Ljava/security/SecureRandom;
            invokevirtual java.security.SecureRandom.nextInt:()I
            i2b
            bastore
        16: .line 174
      StackMap locals:
      StackMap stack:
            aload 4 /* block */
            iload 5 /* i */
            baload
            ifeq 15
        17: .line 172
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        18: iload 5 /* i */
            aload 4 /* block */
            arraylength
            iload 3 /* inLen */
            isub
            iconst_1
            isub
            if_icmpne 16
        end local 5 // int i
        19: .line 181
      StackMap locals:
      StackMap stack:
            aload 4 /* block */
            aload 4 /* block */
            arraylength
            iload 3 /* inLen */
            isub
            iconst_1
            isub
            iconst_0
            bastore
        20: .line 182
            aload 1 /* in */
            iload 2 /* inOff */
            aload 4 /* block */
            aload 4 /* block */
            arraylength
            iload 3 /* inLen */
            isub
            iload 3 /* inLen */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        21: .line 184
            aload 0 /* this */
            getfield org.bouncycastle.crypto.encodings.PKCS1Encoding.engine:Lorg/bouncycastle/crypto/AsymmetricBlockCipher;
            aload 4 /* block */
            iconst_0
            aload 4 /* block */
            arraylength
            invokeinterface org.bouncycastle.crypto.AsymmetricBlockCipher.processBlock:([BII)[B
            areturn
        end local 4 // byte[] block
        end local 3 // int inLen
        end local 2 // int inOff
        end local 1 // byte[] in
        end local 0 // org.bouncycastle.crypto.encodings.PKCS1Encoding this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   22     0   this  Lorg/bouncycastle/crypto/encodings/PKCS1Encoding;
            0   22     1     in  [B
            0   22     2  inOff  I
            0   22     3  inLen  I
            3   22     4  block  [B
            6   10     5      i  I
           14   19     5      i  I
    Exceptions:
      throws org.bouncycastle.crypto.InvalidCipherTextException
    MethodParameters:
       Name  Flags
      in     
      inOff  
      inLen  

  private byte[] decodeBlock(byte[], int, int);
    descriptor: ([BII)[B
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=8, args_size=4
        start local 0 // org.bouncycastle.crypto.encodings.PKCS1Encoding this
        start local 1 // byte[] in
        start local 2 // int inOff
        start local 3 // int inLen
         0: .line 196
            aload 0 /* this */
            getfield org.bouncycastle.crypto.encodings.PKCS1Encoding.engine:Lorg/bouncycastle/crypto/AsymmetricBlockCipher;
            aload 1 /* in */
            iload 2 /* inOff */
            iload 3 /* inLen */
            invokeinterface org.bouncycastle.crypto.AsymmetricBlockCipher.processBlock:([BII)[B
            astore 4 /* block */
        start local 4 // byte[] block
         1: .line 198
            aload 4 /* block */
            arraylength
            aload 0 /* this */
            invokevirtual org.bouncycastle.crypto.encodings.PKCS1Encoding.getOutputBlockSize:()I
            if_icmpge 3
         2: .line 200
            new org.bouncycastle.crypto.InvalidCipherTextException
            dup
            ldc "block truncated"
            invokespecial org.bouncycastle.crypto.InvalidCipherTextException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 203
      StackMap locals: byte[]
      StackMap stack:
            aload 4 /* block */
            iconst_0
            baload
            istore 5 /* type */
        start local 5 // byte type
         4: .line 205
            iload 5 /* type */
            iconst_1
            if_icmpeq 6
            iload 5 /* type */
            iconst_2
            if_icmpeq 6
         5: .line 207
            new org.bouncycastle.crypto.InvalidCipherTextException
            dup
            ldc "unknown block type"
            invokespecial org.bouncycastle.crypto.InvalidCipherTextException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 210
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.bouncycastle.crypto.encodings.PKCS1Encoding.useStrictLength:Z
            ifeq 8
            aload 4 /* block */
            arraylength
            aload 0 /* this */
            getfield org.bouncycastle.crypto.encodings.PKCS1Encoding.engine:Lorg/bouncycastle/crypto/AsymmetricBlockCipher;
            invokeinterface org.bouncycastle.crypto.AsymmetricBlockCipher.getOutputBlockSize:()I
            if_icmpeq 8
         7: .line 212
            new org.bouncycastle.crypto.InvalidCipherTextException
            dup
            ldc "block incorrect size"
            invokespecial org.bouncycastle.crypto.InvalidCipherTextException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 220
      StackMap locals:
      StackMap stack:
            iconst_1
            istore 6 /* start */
        start local 6 // int start
         9: goto 16
        10: .line 222
      StackMap locals: int
      StackMap stack:
            aload 4 /* block */
            iload 6 /* start */
            baload
            istore 7 /* pad */
        start local 7 // byte pad
        11: .line 224
            iload 7 /* pad */
            ifne 13
        12: .line 226
            goto 17
        13: .line 228
      StackMap locals: int
      StackMap stack:
            iload 5 /* type */
            iconst_1
            if_icmpne 15
            iload 7 /* pad */
            iconst_m1
            if_icmpeq 15
        14: .line 230
            new org.bouncycastle.crypto.InvalidCipherTextException
            dup
            ldc "block padding incorrect"
            invokespecial org.bouncycastle.crypto.InvalidCipherTextException.<init>:(Ljava/lang/String;)V
            athrow
        end local 7 // byte pad
        15: .line 220
      StackMap locals:
      StackMap stack:
            iinc 6 /* start */ 1
      StackMap locals:
      StackMap stack:
        16: iload 6 /* start */
            aload 4 /* block */
            arraylength
            if_icmpne 10
        17: .line 234
      StackMap locals:
      StackMap stack:
            iinc 6 /* start */ 1
        18: .line 236
            iload 6 /* start */
            aload 4 /* block */
            arraylength
            if_icmpgt 19
            iload 6 /* start */
            bipush 10
            if_icmpge 20
        19: .line 238
      StackMap locals:
      StackMap stack:
            new org.bouncycastle.crypto.InvalidCipherTextException
            dup
            ldc "no data in block"
            invokespecial org.bouncycastle.crypto.InvalidCipherTextException.<init>:(Ljava/lang/String;)V
            athrow
        20: .line 241
      StackMap locals:
      StackMap stack:
            aload 4 /* block */
            arraylength
            iload 6 /* start */
            isub
            newarray 8
            astore 7 /* result */
        start local 7 // byte[] result
        21: .line 243
            aload 4 /* block */
            iload 6 /* start */
            aload 7 /* result */
            iconst_0
            aload 7 /* result */
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        22: .line 245
            aload 7 /* result */
            areturn
        end local 7 // byte[] result
        end local 6 // int start
        end local 5 // byte type
        end local 4 // byte[] block
        end local 3 // int inLen
        end local 2 // int inOff
        end local 1 // byte[] in
        end local 0 // org.bouncycastle.crypto.encodings.PKCS1Encoding this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   23     0    this  Lorg/bouncycastle/crypto/encodings/PKCS1Encoding;
            0   23     1      in  [B
            0   23     2   inOff  I
            0   23     3   inLen  I
            1   23     4   block  [B
            4   23     5    type  B
            9   23     6   start  I
           11   15     7     pad  B
           21   23     7  result  [B
    Exceptions:
      throws org.bouncycastle.crypto.InvalidCipherTextException
    MethodParameters:
       Name  Flags
      in     
      inOff  
      inLen  
}
SourceFile: "PKCS1Encoding.java"
NestMembers:
  org.bouncycastle.crypto.encodings.PKCS1Encoding$1
InnerClasses:
  org.bouncycastle.crypto.encodings.PKCS1Encoding$1