public class org.bouncycastle.crypto.engines.RSAEngine implements org.bouncycastle.crypto.AsymmetricBlockCipher
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.bouncycastle.crypto.engines.RSAEngine
  super_class: java.lang.Object
{
  private org.bouncycastle.crypto.engines.RSACoreEngine core;
    descriptor: Lorg/bouncycastle/crypto/engines/RSACoreEngine;
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.bouncycastle.crypto.engines.RSAEngine this
         0: .line 10
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.bouncycastle.crypto.engines.RSAEngine this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bouncycastle/crypto/engines/RSAEngine;

  public void init(boolean, org.bouncycastle.crypto.CipherParameters);
    descriptor: (ZLorg/bouncycastle/crypto/CipherParameters;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.bouncycastle.crypto.engines.RSAEngine this
        start local 1 // boolean forEncryption
        start local 2 // org.bouncycastle.crypto.CipherParameters param
         0: .line 25
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RSAEngine.core:Lorg/bouncycastle/crypto/engines/RSACoreEngine;
            ifnonnull 2
         1: .line 27
            aload 0 /* this */
            new org.bouncycastle.crypto.engines.RSACoreEngine
            dup
            invokespecial org.bouncycastle.crypto.engines.RSACoreEngine.<init>:()V
            putfield org.bouncycastle.crypto.engines.RSAEngine.core:Lorg/bouncycastle/crypto/engines/RSACoreEngine;
         2: .line 30
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RSAEngine.core:Lorg/bouncycastle/crypto/engines/RSACoreEngine;
            iload 1 /* forEncryption */
            aload 2 /* param */
            invokevirtual org.bouncycastle.crypto.engines.RSACoreEngine.init:(ZLorg/bouncycastle/crypto/CipherParameters;)V
         3: .line 31
            return
        end local 2 // org.bouncycastle.crypto.CipherParameters param
        end local 1 // boolean forEncryption
        end local 0 // org.bouncycastle.crypto.engines.RSAEngine this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    4     0           this  Lorg/bouncycastle/crypto/engines/RSAEngine;
            0    4     1  forEncryption  Z
            0    4     2          param  Lorg/bouncycastle/crypto/CipherParameters;
    MethodParameters:
               Name  Flags
      forEncryption  
      param          

  public int getInputBlockSize();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.bouncycastle.crypto.engines.RSAEngine this
         0: .line 42
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RSAEngine.core:Lorg/bouncycastle/crypto/engines/RSACoreEngine;
            invokevirtual org.bouncycastle.crypto.engines.RSACoreEngine.getInputBlockSize:()I
            ireturn
        end local 0 // org.bouncycastle.crypto.engines.RSAEngine this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bouncycastle/crypto/engines/RSAEngine;

  public int getOutputBlockSize();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.bouncycastle.crypto.engines.RSAEngine this
         0: .line 54
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RSAEngine.core:Lorg/bouncycastle/crypto/engines/RSACoreEngine;
            invokevirtual org.bouncycastle.crypto.engines.RSACoreEngine.getOutputBlockSize:()I
            ireturn
        end local 0 // org.bouncycastle.crypto.engines.RSAEngine this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bouncycastle/crypto/engines/RSAEngine;

  public byte[] processBlock(byte[], int, int);
    descriptor: ([BII)[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=4
        start local 0 // org.bouncycastle.crypto.engines.RSAEngine this
        start local 1 // byte[] in
        start local 2 // int inOff
        start local 3 // int inLen
         0: .line 71
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RSAEngine.core:Lorg/bouncycastle/crypto/engines/RSACoreEngine;
            ifnonnull 2
         1: .line 73
            new java.lang.IllegalStateException
            dup
            ldc "RSA engine not initialised"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 76
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RSAEngine.core:Lorg/bouncycastle/crypto/engines/RSACoreEngine;
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RSAEngine.core:Lorg/bouncycastle/crypto/engines/RSACoreEngine;
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RSAEngine.core:Lorg/bouncycastle/crypto/engines/RSACoreEngine;
            aload 1 /* in */
            iload 2 /* inOff */
            iload 3 /* inLen */
            invokevirtual org.bouncycastle.crypto.engines.RSACoreEngine.convertInput:([BII)Ljava/math/BigInteger;
            invokevirtual org.bouncycastle.crypto.engines.RSACoreEngine.processBlock:(Ljava/math/BigInteger;)Ljava/math/BigInteger;
            invokevirtual org.bouncycastle.crypto.engines.RSACoreEngine.convertOutput:(Ljava/math/BigInteger;)[B
            areturn
        end local 3 // int inLen
        end local 2 // int inOff
        end local 1 // byte[] in
        end local 0 // org.bouncycastle.crypto.engines.RSAEngine this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/bouncycastle/crypto/engines/RSAEngine;
            0    3     1     in  [B
            0    3     2  inOff  I
            0    3     3  inLen  I
    MethodParameters:
       Name  Flags
      in     
      inOff  
      inLen  
}
SourceFile: "RSAEngine.java"