public class com.oracle.security.ucrypto.NativeRSACipher extends javax.crypto.CipherSpi
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.oracle.security.ucrypto.NativeRSACipher
  super_class: javax.crypto.CipherSpi
{
  private final com.oracle.security.ucrypto.UcryptoMech mech;
    descriptor: Lcom/oracle/security/ucrypto/UcryptoMech;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int padLen;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final com.oracle.security.ucrypto.NativeRSAKeyFactory keyFactory;
    descriptor: Lcom/oracle/security/ucrypto/NativeRSAKeyFactory;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private java.security.spec.AlgorithmParameterSpec spec;
    descriptor: Ljava/security/spec/AlgorithmParameterSpec;
    flags: (0x0002) ACC_PRIVATE

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

  private static final java.util.Map<java.security.Key, com.oracle.security.ucrypto.NativeKey> keyList;
    descriptor: Ljava/util/Map;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    Signature: Ljava/util/Map<Ljava/security/Key;Lcom/oracle/security/ucrypto/NativeKey;>;

  private com.oracle.security.ucrypto.NativeKey key;
    descriptor: Lcom/oracle/security/ucrypto/NativeKey;
    flags: (0x0002) ACC_PRIVATE

  private int outputSize;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

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

  private byte[] buffer;
    descriptor: [B
    flags: (0x0002) ACC_PRIVATE

  private int bufOfs;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 89
            new java.util.WeakHashMap
            dup
            invokespecial java.util.WeakHashMap.<init>:()V
            invokestatic java.util.Collections.synchronizedMap:(Ljava/util/Map;)Ljava/util/Map;
         1: .line 88
            putstatic com.oracle.security.ucrypto.NativeRSACipher.keyList:Ljava/util/Map;
         2: .line 89
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>(com.oracle.security.ucrypto.UcryptoMech, int);
    descriptor: (Lcom/oracle/security/ucrypto/UcryptoMech;I)V
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.oracle.security.ucrypto.NativeRSACipher this
        start local 1 // com.oracle.security.ucrypto.UcryptoMech mech
        start local 2 // int padLen
         0: .line 113
            aload 0 /* this */
            invokespecial javax.crypto.CipherSpi.<init>:()V
         1: .line 94
            aload 0 /* this */
            aconst_null
            putfield com.oracle.security.ucrypto.NativeRSACipher.key:Lcom/oracle/security/ucrypto/NativeKey;
         2: .line 95
            aload 0 /* this */
            iconst_0
            putfield com.oracle.security.ucrypto.NativeRSACipher.outputSize:I
         3: .line 96
            aload 0 /* this */
            iconst_1
            putfield com.oracle.security.ucrypto.NativeRSACipher.encrypt:Z
         4: .line 98
            aload 0 /* this */
            iconst_0
            putfield com.oracle.security.ucrypto.NativeRSACipher.bufOfs:I
         5: .line 115
            aload 0 /* this */
            aload 1 /* mech */
            putfield com.oracle.security.ucrypto.NativeRSACipher.mech:Lcom/oracle/security/ucrypto/UcryptoMech;
         6: .line 116
            aload 0 /* this */
            iload 2 /* padLen */
            putfield com.oracle.security.ucrypto.NativeRSACipher.padLen:I
         7: .line 117
            aload 0 /* this */
            new com.oracle.security.ucrypto.NativeRSAKeyFactory
            dup
            invokespecial com.oracle.security.ucrypto.NativeRSAKeyFactory.<init>:()V
            putfield com.oracle.security.ucrypto.NativeRSACipher.keyFactory:Lcom/oracle/security/ucrypto/NativeRSAKeyFactory;
         8: .line 118
            return
        end local 2 // int padLen
        end local 1 // com.oracle.security.ucrypto.UcryptoMech mech
        end local 0 // com.oracle.security.ucrypto.NativeRSACipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lcom/oracle/security/ucrypto/NativeRSACipher;
            0    9     1    mech  Lcom/oracle/security/ucrypto/UcryptoMech;
            0    9     2  padLen  I
    Exceptions:
      throws java.security.NoSuchAlgorithmException
    MethodParameters:
        Name  Flags
      mech    
      padLen  

  protected void engineSetMode(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // com.oracle.security.ucrypto.NativeRSACipher this
        start local 1 // java.lang.String mode
         0: .line 124
            new java.security.NoSuchAlgorithmException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Unsupported mode "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* mode */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.security.NoSuchAlgorithmException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.lang.String mode
        end local 0 // com.oracle.security.ucrypto.NativeRSACipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/security/ucrypto/NativeRSACipher;
            0    1     1  mode  Ljava/lang/String;
    Exceptions:
      throws java.security.NoSuchAlgorithmException
    MethodParameters:
      Name  Flags
      mode  

  protected void engineSetPadding(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // com.oracle.security.ucrypto.NativeRSACipher this
        start local 1 // java.lang.String padding
         0: .line 133
            new javax.crypto.NoSuchPaddingException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Unsupported padding "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* padding */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial javax.crypto.NoSuchPaddingException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.lang.String padding
        end local 0 // com.oracle.security.ucrypto.NativeRSACipher this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lcom/oracle/security/ucrypto/NativeRSACipher;
            0    1     1  padding  Ljava/lang/String;
    Exceptions:
      throws javax.crypto.NoSuchPaddingException
    MethodParameters:
         Name  Flags
      padding  

  protected int engineGetBlockSize();
    descriptor: ()I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.security.ucrypto.NativeRSACipher this
         0: .line 139
            iconst_0
            ireturn
        end local 0 // com.oracle.security.ucrypto.NativeRSACipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/security/ucrypto/NativeRSACipher;

  protected synchronized int engineGetOutputSize(int);
    descriptor: (I)I
    flags: (0x0024) ACC_PROTECTED, ACC_SYNCHRONIZED
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // com.oracle.security.ucrypto.NativeRSACipher this
        start local 1 // int inputLen
         0: .line 145
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeRSACipher.outputSize:I
            ireturn
        end local 1 // int inputLen
        end local 0 // com.oracle.security.ucrypto.NativeRSACipher this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lcom/oracle/security/ucrypto/NativeRSACipher;
            0    1     1  inputLen  I
    MethodParameters:
          Name  Flags
      inputLen  

  protected byte[] engineGetIV();
    descriptor: ()[B
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.security.ucrypto.NativeRSACipher this
         0: .line 151
            aconst_null
            areturn
        end local 0 // com.oracle.security.ucrypto.NativeRSACipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/security/ucrypto/NativeRSACipher;

  protected java.security.AlgorithmParameters engineGetParameters();
    descriptor: ()Ljava/security/AlgorithmParameters;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.security.ucrypto.NativeRSACipher this
         0: .line 157
            aconst_null
            areturn
        end local 0 // com.oracle.security.ucrypto.NativeRSACipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/security/ucrypto/NativeRSACipher;

  protected int engineGetKeySize(java.security.Key);
    descriptor: (Ljava/security/Key;)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // com.oracle.security.ucrypto.NativeRSACipher this
        start local 1 // java.security.Key key
         0: .line 162
            aload 1 /* key */
            instanceof java.security.interfaces.RSAKey
            ifne 4
         1: .line 163
            new java.security.InvalidKeyException
            dup
            new java.lang.StringBuilder
            dup
            ldc "RSAKey required. Got: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         2: .line 164
            aload 1 /* key */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         3: .line 163
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 166
      StackMap locals:
      StackMap stack:
            aload 1 /* key */
            checkcast java.security.interfaces.RSAKey
            invokeinterface java.security.interfaces.RSAKey.getModulus:()Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.bitLength:()I
            istore 2 /* n */
        start local 2 // int n
         5: .line 168
            iload 2 /* n */
            bipush 7
            iadd
            iconst_3
            ishr
            istore 3 /* realByteSize */
        start local 3 // int realByteSize
         6: .line 169
            iload 3 /* realByteSize */
            bipush 8
            imul
            ireturn
        end local 3 // int realByteSize
        end local 2 // int n
        end local 1 // java.security.Key key
        end local 0 // com.oracle.security.ucrypto.NativeRSACipher this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    7     0          this  Lcom/oracle/security/ucrypto/NativeRSACipher;
            0    7     1           key  Ljava/security/Key;
            5    7     2             n  I
            6    7     3  realByteSize  I
    Exceptions:
      throws java.security.InvalidKeyException
    MethodParameters:
      Name  Flags
      key   

  protected synchronized void engineInit(int, java.security.Key, java.security.SecureRandom);
    descriptor: (ILjava/security/Key;Ljava/security/SecureRandom;)V
    flags: (0x0024) ACC_PROTECTED, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // com.oracle.security.ucrypto.NativeRSACipher this
        start local 1 // int opmode
        start local 2 // java.security.Key key
        start local 3 // java.security.SecureRandom random
         0: .line 177
            aload 0 /* this */
            iload 1 /* opmode */
            aload 2 /* key */
            aconst_null
            aload 3 /* random */
            invokevirtual com.oracle.security.ucrypto.NativeRSACipher.engineInit:(ILjava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/SecureRandom;)V
         1: .line 178
            goto 4
      StackMap locals:
      StackMap stack: java.security.InvalidAlgorithmParameterException
         2: astore 4 /* e */
        start local 4 // java.security.InvalidAlgorithmParameterException e
         3: .line 179
            new java.security.InvalidKeyException
            dup
            ldc "init() failed"
            aload 4 /* e */
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 4 // java.security.InvalidAlgorithmParameterException e
         4: .line 181
      StackMap locals:
      StackMap stack:
            return
        end local 3 // java.security.SecureRandom random
        end local 2 // java.security.Key key
        end local 1 // int opmode
        end local 0 // com.oracle.security.ucrypto.NativeRSACipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lcom/oracle/security/ucrypto/NativeRSACipher;
            0    5     1  opmode  I
            0    5     2     key  Ljava/security/Key;
            0    5     3  random  Ljava/security/SecureRandom;
            3    4     4       e  Ljava/security/InvalidAlgorithmParameterException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.security.InvalidAlgorithmParameterException
    Exceptions:
      throws java.security.InvalidKeyException
    MethodParameters:
        Name  Flags
      opmode  
      key     
      random  

  protected synchronized void engineInit(int, java.security.Key, java.security.spec.AlgorithmParameterSpec, java.security.SecureRandom);
    descriptor: (ILjava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/SecureRandom;)V
    flags: (0x0024) ACC_PROTECTED, ACC_SYNCHRONIZED
    Code:
      stack=11, locals=9, args_size=5
        start local 0 // com.oracle.security.ucrypto.NativeRSACipher this
        start local 1 // int opmode
        start local 2 // java.security.Key newKey
        start local 3 // java.security.spec.AlgorithmParameterSpec params
        start local 4 // java.security.SecureRandom random
         0: .line 189
            aload 2 /* newKey */
            ifnonnull 2
         1: .line 190
            new java.security.InvalidKeyException
            dup
            ldc "Key cannot be null"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 192
      StackMap locals:
      StackMap stack:
            iload 1 /* opmode */
            iconst_1
            if_icmpeq 9
         3: .line 193
            iload 1 /* opmode */
            iconst_2
            if_icmpeq 9
         4: .line 194
            iload 1 /* opmode */
            iconst_3
            if_icmpeq 9
         5: .line 195
            iload 1 /* opmode */
            iconst_4
            if_icmpeq 9
         6: .line 196
            new java.security.InvalidAlgorithmParameterException
            dup
         7: .line 197
            new java.lang.StringBuilder
            dup
            ldc "Unsupported mode: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* opmode */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         8: .line 196
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;)V
            athrow
         9: .line 199
      StackMap locals:
      StackMap stack:
            aload 3 /* params */
            ifnull 18
        10: .line 200
            aload 3 /* params */
            instanceof sun.security.internal.spec.TlsRsaPremasterSecretParameterSpec
            ifne 14
        11: .line 201
            new java.security.InvalidAlgorithmParameterException
            dup
        12: .line 202
            ldc "No Parameters can be specified"
        13: .line 201
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;)V
            athrow
        14: .line 204
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 3 /* params */
            putfield com.oracle.security.ucrypto.NativeRSACipher.spec:Ljava/security/spec/AlgorithmParameterSpec;
        15: .line 205
            aload 4 /* random */
            ifnonnull 17
        16: .line 206
            invokestatic sun.security.jca.JCAUtil.getSecureRandom:()Ljava/security/SecureRandom;
            astore 4 /* random */
        17: .line 208
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 4 /* random */
            putfield com.oracle.security.ucrypto.NativeRSACipher.random:Ljava/security/SecureRandom;
        18: .line 210
      StackMap locals:
      StackMap stack:
            iload 1 /* opmode */
            iconst_1
            if_icmpeq 19
            iload 1 /* opmode */
            iconst_3
            if_icmpeq 19
            iconst_0
            goto 20
      StackMap locals:
      StackMap stack:
        19: iconst_1
      StackMap locals:
      StackMap stack: int
        20: istore 5 /* doEncrypt */
        start local 5 // boolean doEncrypt
        21: .line 213
            iload 5 /* doEncrypt */
            ifeq 25
            aload 2 /* newKey */
            instanceof java.security.interfaces.RSAPublicKey
            ifne 25
        22: .line 214
            new java.security.InvalidKeyException
            dup
            new java.lang.StringBuilder
            dup
            ldc "RSAPublicKey required for encryption. Received: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        23: .line 215
            aload 2 /* newKey */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        24: .line 214
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
        25: .line 216
      StackMap locals: int
      StackMap stack:
            iload 5 /* doEncrypt */
            ifne 29
            aload 2 /* newKey */
            instanceof java.security.interfaces.RSAPrivateKey
            ifne 29
        26: .line 217
            new java.security.InvalidKeyException
            dup
            new java.lang.StringBuilder
            dup
            ldc "RSAPrivateKey required for decryption. Received: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        27: .line 218
            aload 2 /* newKey */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        28: .line 217
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
        29: .line 221
      StackMap locals:
      StackMap stack:
            aconst_null
            astore 6 /* nativeKey */
        start local 6 // com.oracle.security.ucrypto.NativeKey nativeKey
        30: .line 223
            getstatic com.oracle.security.ucrypto.NativeRSACipher.keyList:Ljava/util/Map;
            aload 2 /* newKey */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast com.oracle.security.ucrypto.NativeKey
            astore 6 /* nativeKey */
        31: .line 224
            aload 6 /* nativeKey */
            ifnonnull 68
        32: .line 226
            iload 5 /* doEncrypt */
            ifeq 40
        33: .line 227
            aload 2 /* newKey */
            checkcast java.security.interfaces.RSAPublicKey
            astore 7 /* publicKey */
        start local 7 // java.security.interfaces.RSAPublicKey publicKey
        34: .line 229
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeRSACipher.keyFactory:Lcom/oracle/security/ucrypto/NativeRSAKeyFactory;
        35: .line 230
            new java.security.spec.RSAPublicKeySpec
            dup
            aload 7 /* publicKey */
            invokeinterface java.security.interfaces.RSAPublicKey.getModulus:()Ljava/math/BigInteger;
            aload 7 /* publicKey */
            invokeinterface java.security.interfaces.RSAPublicKey.getPublicExponent:()Ljava/math/BigInteger;
            invokespecial java.security.spec.RSAPublicKeySpec.<init>:(Ljava/math/BigInteger;Ljava/math/BigInteger;)V
        36: .line 229
            invokevirtual com.oracle.security.ucrypto.NativeRSAKeyFactory.engineGeneratePublic:(Ljava/security/spec/KeySpec;)Ljava/security/PublicKey;
            checkcast com.oracle.security.ucrypto.NativeKey
            astore 6 /* nativeKey */
        37: .line 231
            goto 67
      StackMap locals: com.oracle.security.ucrypto.NativeRSACipher int java.security.Key java.security.spec.AlgorithmParameterSpec java.security.SecureRandom int com.oracle.security.ucrypto.NativeKey java.security.interfaces.RSAPublicKey
      StackMap stack: java.security.spec.InvalidKeySpecException
        38: astore 8 /* ikse */
        start local 8 // java.security.spec.InvalidKeySpecException ikse
        39: .line 232
            new java.security.InvalidKeyException
            dup
            aload 8 /* ikse */
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 8 // java.security.spec.InvalidKeySpecException ikse
        end local 7 // java.security.interfaces.RSAPublicKey publicKey
        40: .line 236
      StackMap locals:
      StackMap stack:
            aload 2 /* newKey */
            instanceof java.security.interfaces.RSAPrivateCrtKey
            ifeq 54
        41: .line 237
            aload 2 /* newKey */
            checkcast java.security.interfaces.RSAPrivateCrtKey
            astore 7 /* privateKey */
        start local 7 // java.security.interfaces.RSAPrivateCrtKey privateKey
        42: .line 238
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeRSACipher.keyFactory:Lcom/oracle/security/ucrypto/NativeRSAKeyFactory;
        43: .line 239
            new java.security.spec.RSAPrivateCrtKeySpec
            dup
            aload 7 /* privateKey */
            invokeinterface java.security.interfaces.RSAPrivateCrtKey.getModulus:()Ljava/math/BigInteger;
        44: .line 240
            aload 7 /* privateKey */
            invokeinterface java.security.interfaces.RSAPrivateCrtKey.getPublicExponent:()Ljava/math/BigInteger;
        45: .line 241
            aload 7 /* privateKey */
            invokeinterface java.security.interfaces.RSAPrivateCrtKey.getPrivateExponent:()Ljava/math/BigInteger;
        46: .line 242
            aload 7 /* privateKey */
            invokeinterface java.security.interfaces.RSAPrivateCrtKey.getPrimeP:()Ljava/math/BigInteger;
        47: .line 243
            aload 7 /* privateKey */
            invokeinterface java.security.interfaces.RSAPrivateCrtKey.getPrimeQ:()Ljava/math/BigInteger;
        48: .line 244
            aload 7 /* privateKey */
            invokeinterface java.security.interfaces.RSAPrivateCrtKey.getPrimeExponentP:()Ljava/math/BigInteger;
        49: .line 245
            aload 7 /* privateKey */
            invokeinterface java.security.interfaces.RSAPrivateCrtKey.getPrimeExponentQ:()Ljava/math/BigInteger;
        50: .line 246
            aload 7 /* privateKey */
            invokeinterface java.security.interfaces.RSAPrivateCrtKey.getCrtCoefficient:()Ljava/math/BigInteger;
        51: .line 239
            invokespecial java.security.spec.RSAPrivateCrtKeySpec.<init>:(Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;)V
        52: .line 238
            invokevirtual com.oracle.security.ucrypto.NativeRSAKeyFactory.engineGeneratePrivate:(Ljava/security/spec/KeySpec;)Ljava/security/PrivateKey;
            checkcast com.oracle.security.ucrypto.NativeKey
            astore 6 /* nativeKey */
        end local 7 // java.security.interfaces.RSAPrivateCrtKey privateKey
        53: .line 247
            goto 67
      StackMap locals:
      StackMap stack:
        54: aload 2 /* newKey */
            instanceof java.security.interfaces.RSAPrivateKey
            ifeq 62
        55: .line 248
            aload 2 /* newKey */
            checkcast java.security.interfaces.RSAPrivateKey
            astore 7 /* privateKey */
        start local 7 // java.security.interfaces.RSAPrivateKey privateKey
        56: .line 249
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeRSACipher.keyFactory:Lcom/oracle/security/ucrypto/NativeRSAKeyFactory;
        57: .line 250
            new java.security.spec.RSAPrivateKeySpec
            dup
            aload 7 /* privateKey */
            invokeinterface java.security.interfaces.RSAPrivateKey.getModulus:()Ljava/math/BigInteger;
        58: .line 251
            aload 7 /* privateKey */
            invokeinterface java.security.interfaces.RSAPrivateKey.getPrivateExponent:()Ljava/math/BigInteger;
        59: .line 250
            invokespecial java.security.spec.RSAPrivateKeySpec.<init>:(Ljava/math/BigInteger;Ljava/math/BigInteger;)V
        60: .line 249
            invokevirtual com.oracle.security.ucrypto.NativeRSAKeyFactory.engineGeneratePrivate:(Ljava/security/spec/KeySpec;)Ljava/security/PrivateKey;
            checkcast com.oracle.security.ucrypto.NativeKey
            astore 6 /* nativeKey */
        end local 7 // java.security.interfaces.RSAPrivateKey privateKey
        61: .line 252
            goto 67
        62: .line 253
      StackMap locals:
      StackMap stack:
            new java.security.InvalidKeyException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Unsupported type of RSAPrivateKey. Received: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        63: .line 254
            aload 2 /* newKey */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        64: .line 253
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
        65: .line 256
      StackMap locals:
      StackMap stack: java.security.spec.InvalidKeySpecException
            astore 7 /* ikse */
        start local 7 // java.security.spec.InvalidKeySpecException ikse
        66: .line 257
            new java.security.InvalidKeyException
            dup
            aload 7 /* ikse */
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 7 // java.security.spec.InvalidKeySpecException ikse
        67: .line 262
      StackMap locals:
      StackMap stack:
            getstatic com.oracle.security.ucrypto.NativeRSACipher.keyList:Ljava/util/Map;
            aload 2 /* newKey */
            aload 6 /* nativeKey */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        68: .line 265
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 5 /* doEncrypt */
            aload 6 /* nativeKey */
            invokevirtual com.oracle.security.ucrypto.NativeRSACipher.init:(ZLcom/oracle/security/ucrypto/NativeKey;)V
        69: .line 266
            return
        end local 6 // com.oracle.security.ucrypto.NativeKey nativeKey
        end local 5 // boolean doEncrypt
        end local 4 // java.security.SecureRandom random
        end local 3 // java.security.spec.AlgorithmParameterSpec params
        end local 2 // java.security.Key newKey
        end local 1 // int opmode
        end local 0 // com.oracle.security.ucrypto.NativeRSACipher this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   70     0        this  Lcom/oracle/security/ucrypto/NativeRSACipher;
            0   70     1      opmode  I
            0   70     2      newKey  Ljava/security/Key;
            0   70     3      params  Ljava/security/spec/AlgorithmParameterSpec;
            0   70     4      random  Ljava/security/SecureRandom;
           21   70     5   doEncrypt  Z
           30   70     6   nativeKey  Lcom/oracle/security/ucrypto/NativeKey;
           34   40     7   publicKey  Ljava/security/interfaces/RSAPublicKey;
           39   40     8        ikse  Ljava/security/spec/InvalidKeySpecException;
           42   53     7  privateKey  Ljava/security/interfaces/RSAPrivateCrtKey;
           56   61     7  privateKey  Ljava/security/interfaces/RSAPrivateKey;
           66   67     7        ikse  Ljava/security/spec/InvalidKeySpecException;
      Exception table:
        from    to  target  type
          34    37      38  Class java.security.spec.InvalidKeySpecException
          40    65      65  Class java.security.spec.InvalidKeySpecException
    Exceptions:
      throws java.security.InvalidKeyException, java.security.InvalidAlgorithmParameterException
    MethodParameters:
        Name  Flags
      opmode  
      newKey  
      params  
      random  

  protected synchronized void engineInit(int, java.security.Key, java.security.AlgorithmParameters, java.security.SecureRandom);
    descriptor: (ILjava/security/Key;Ljava/security/AlgorithmParameters;Ljava/security/SecureRandom;)V
    flags: (0x0024) ACC_PROTECTED, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // com.oracle.security.ucrypto.NativeRSACipher this
        start local 1 // int opmode
        start local 2 // java.security.Key key
        start local 3 // java.security.AlgorithmParameters params
        start local 4 // java.security.SecureRandom random
         0: .line 273
            aload 3 /* params */
            ifnull 2
         1: .line 274
            new java.security.InvalidAlgorithmParameterException
            dup
            ldc "No Parameters can be specified"
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 276
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* opmode */
            aload 2 /* key */
            aconst_null
            aload 4 /* random */
            invokevirtual com.oracle.security.ucrypto.NativeRSACipher.engineInit:(ILjava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/SecureRandom;)V
         3: .line 277
            return
        end local 4 // java.security.SecureRandom random
        end local 3 // java.security.AlgorithmParameters params
        end local 2 // java.security.Key key
        end local 1 // int opmode
        end local 0 // com.oracle.security.ucrypto.NativeRSACipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lcom/oracle/security/ucrypto/NativeRSACipher;
            0    4     1  opmode  I
            0    4     2     key  Ljava/security/Key;
            0    4     3  params  Ljava/security/AlgorithmParameters;
            0    4     4  random  Ljava/security/SecureRandom;
    Exceptions:
      throws java.security.InvalidKeyException, java.security.InvalidAlgorithmParameterException
    MethodParameters:
        Name  Flags
      opmode  
      key     
      params  
      random  

  protected synchronized byte[] engineUpdate(byte[], int, int);
    descriptor: ([BII)[B
    flags: (0x0024) ACC_PROTECTED, ACC_SYNCHRONIZED
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // com.oracle.security.ucrypto.NativeRSACipher this
        start local 1 // byte[] in
        start local 2 // int inOfs
        start local 3 // int inLen
         0: .line 282
            iload 3 /* inLen */
            ifle 2
         1: .line 283
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* inOfs */
            iload 3 /* inLen */
            invokevirtual com.oracle.security.ucrypto.NativeRSACipher.update:([BII)V
         2: .line 285
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 3 // int inLen
        end local 2 // int inOfs
        end local 1 // byte[] in
        end local 0 // com.oracle.security.ucrypto.NativeRSACipher this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lcom/oracle/security/ucrypto/NativeRSACipher;
            0    3     1     in  [B
            0    3     2  inOfs  I
            0    3     3  inLen  I
    MethodParameters:
       Name  Flags
      in     
      inOfs  
      inLen  

  protected synchronized int engineUpdate(byte[], int, int, byte[], int);
    descriptor: ([BII[BI)I
    flags: (0x0024) ACC_PROTECTED, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=6, args_size=6
        start local 0 // com.oracle.security.ucrypto.NativeRSACipher this
        start local 1 // byte[] in
        start local 2 // int inOfs
        start local 3 // int inLen
        start local 4 // byte[] out
        start local 5 // int outOfs
         0: .line 292
            aload 4 /* out */
            arraylength
            iload 5 /* outOfs */
            isub
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeRSACipher.outputSize:I
            if_icmpge 4
         1: .line 293
            new javax.crypto.ShortBufferException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Output buffer too small. outputSize: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         2: .line 294
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeRSACipher.outputSize:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ". out.length: "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 4 /* out */
            arraylength
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ". outOfs: "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 5 /* outOfs */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         3: .line 293
            invokespecial javax.crypto.ShortBufferException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 296
      StackMap locals:
      StackMap stack:
            iload 3 /* inLen */
            ifle 6
         5: .line 297
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* inOfs */
            iload 3 /* inLen */
            invokevirtual com.oracle.security.ucrypto.NativeRSACipher.update:([BII)V
         6: .line 299
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 5 // int outOfs
        end local 4 // byte[] out
        end local 3 // int inLen
        end local 2 // int inOfs
        end local 1 // byte[] in
        end local 0 // com.oracle.security.ucrypto.NativeRSACipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lcom/oracle/security/ucrypto/NativeRSACipher;
            0    7     1      in  [B
            0    7     2   inOfs  I
            0    7     3   inLen  I
            0    7     4     out  [B
            0    7     5  outOfs  I
    Exceptions:
      throws javax.crypto.ShortBufferException
    MethodParameters:
        Name  Flags
      in      
      inOfs   
      inLen   
      out     
      outOfs  

  protected synchronized byte[] engineDoFinal(byte[], int, int);
    descriptor: ([BII)[B
    flags: (0x0024) ACC_PROTECTED, ACC_SYNCHRONIZED
    Code:
      stack=6, locals=6, args_size=4
        start local 0 // com.oracle.security.ucrypto.NativeRSACipher this
        start local 1 // byte[] in
        start local 2 // int inOfs
        start local 3 // int inLen
         0: .line 306
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeRSACipher.outputSize:I
            newarray 8
            astore 4 /* out */
        start local 4 // byte[] out
         1: .line 309
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* inOfs */
            iload 3 /* inLen */
            aload 4 /* out */
            iconst_0
            invokevirtual com.oracle.security.ucrypto.NativeRSACipher.engineDoFinal:([BII[BI)I
            istore 5 /* actualLen */
        start local 5 // int actualLen
         2: .line 310
            iload 5 /* actualLen */
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeRSACipher.outputSize:I
            if_icmpeq 5
         3: .line 311
            aload 4 /* out */
            iload 5 /* actualLen */
            invokestatic java.util.Arrays.copyOf:([BI)[B
         4: areturn
         5: .line 313
      StackMap locals: byte[] int
      StackMap stack:
            aload 4 /* out */
         6: areturn
        end local 5 // int actualLen
         7: .line 315
      StackMap locals: com.oracle.security.ucrypto.NativeRSACipher byte[] int int byte[]
      StackMap stack: javax.crypto.ShortBufferException
            astore 5 /* e */
        start local 5 // javax.crypto.ShortBufferException e
         8: .line 316
            new com.oracle.security.ucrypto.UcryptoException
            dup
            ldc "Internal Error"
            aload 5 /* e */
            invokespecial com.oracle.security.ucrypto.UcryptoException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 5 // javax.crypto.ShortBufferException e
        end local 4 // byte[] out
        end local 3 // int inLen
        end local 2 // int inOfs
        end local 1 // byte[] in
        end local 0 // com.oracle.security.ucrypto.NativeRSACipher this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    9     0       this  Lcom/oracle/security/ucrypto/NativeRSACipher;
            0    9     1         in  [B
            0    9     2      inOfs  I
            0    9     3      inLen  I
            1    9     4        out  [B
            2    7     5  actualLen  I
            8    9     5          e  Ljavax/crypto/ShortBufferException;
      Exception table:
        from    to  target  type
           1     4       7  Class javax.crypto.ShortBufferException
           5     6       7  Class javax.crypto.ShortBufferException
    Exceptions:
      throws javax.crypto.IllegalBlockSizeException, javax.crypto.BadPaddingException
    MethodParameters:
       Name  Flags
      in     
      inOfs  
      inLen  

  protected synchronized int engineDoFinal(byte[], int, int, byte[], int);
    descriptor: ([BII[BI)I
    flags: (0x0024) ACC_PROTECTED, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=6, args_size=6
        start local 0 // com.oracle.security.ucrypto.NativeRSACipher this
        start local 1 // byte[] in
        start local 2 // int inOfs
        start local 3 // int inLen
        start local 4 // byte[] out
        start local 5 // int outOfs
         0: .line 326
            iload 3 /* inLen */
            ifeq 2
         1: .line 327
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* inOfs */
            iload 3 /* inLen */
            invokevirtual com.oracle.security.ucrypto.NativeRSACipher.update:([BII)V
         2: .line 329
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 4 /* out */
            iload 5 /* outOfs */
            aload 4 /* out */
            arraylength
            iload 5 /* outOfs */
            isub
            invokevirtual com.oracle.security.ucrypto.NativeRSACipher.doFinal:([BII)I
            ireturn
        end local 5 // int outOfs
        end local 4 // byte[] out
        end local 3 // int inLen
        end local 2 // int inOfs
        end local 1 // byte[] in
        end local 0 // com.oracle.security.ucrypto.NativeRSACipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lcom/oracle/security/ucrypto/NativeRSACipher;
            0    3     1      in  [B
            0    3     2   inOfs  I
            0    3     3   inLen  I
            0    3     4     out  [B
            0    3     5  outOfs  I
    Exceptions:
      throws javax.crypto.ShortBufferException, javax.crypto.IllegalBlockSizeException, javax.crypto.BadPaddingException
    MethodParameters:
        Name  Flags
      in      
      inOfs   
      inLen   
      out     
      outOfs  

  protected synchronized byte[] engineWrap(java.security.Key);
    descriptor: (Ljava/security/Key;)[B
    flags: (0x0024) ACC_PROTECTED, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // com.oracle.security.ucrypto.NativeRSACipher this
        start local 1 // java.security.Key key
         0: .line 338
            aload 1 /* key */
            invokeinterface java.security.Key.getEncoded:()[B
            astore 2 /* encodedKey */
        start local 2 // byte[] encodedKey
         1: .line 339
            aload 2 /* encodedKey */
            ifnull 2
            aload 2 /* encodedKey */
            arraylength
            ifne 3
         2: .line 340
      StackMap locals: byte[]
      StackMap stack:
            new java.security.InvalidKeyException
            dup
            ldc "Cannot get an encoding of the key to be wrapped"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 343
      StackMap locals:
      StackMap stack:
            aload 2 /* encodedKey */
            arraylength
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeRSACipher.buffer:[B
            arraylength
            if_icmple 8
         4: .line 344
            new java.security.InvalidKeyException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Key is too long for wrapping. encodedKey.length: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         5: .line 345
            aload 2 /* encodedKey */
            arraylength
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
         6: .line 346
            ldc ". buffer.length: "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeRSACipher.buffer:[B
            arraylength
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         7: .line 344
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 348
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* encodedKey */
            iconst_0
            aload 2 /* encodedKey */
            arraylength
            invokevirtual com.oracle.security.ucrypto.NativeRSACipher.engineDoFinal:([BII)[B
         9: areturn
        end local 2 // byte[] encodedKey
        10: .line 349
      StackMap locals: com.oracle.security.ucrypto.NativeRSACipher java.security.Key
      StackMap stack: javax.crypto.BadPaddingException
            astore 2 /* e */
        start local 2 // javax.crypto.BadPaddingException e
        11: .line 351
            new com.oracle.security.ucrypto.UcryptoException
            dup
            ldc "Internal Error"
            aload 2 /* e */
            invokespecial com.oracle.security.ucrypto.UcryptoException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 2 // javax.crypto.BadPaddingException e
        end local 1 // java.security.Key key
        end local 0 // com.oracle.security.ucrypto.NativeRSACipher this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   12     0        this  Lcom/oracle/security/ucrypto/NativeRSACipher;
            0   12     1         key  Ljava/security/Key;
            1   10     2  encodedKey  [B
           11   12     2           e  Ljavax/crypto/BadPaddingException;
      Exception table:
        from    to  target  type
           0     9      10  Class javax.crypto.BadPaddingException
    Exceptions:
      throws javax.crypto.IllegalBlockSizeException, java.security.InvalidKeyException
    MethodParameters:
      Name  Flags
      key   

  protected synchronized java.security.Key engineUnwrap(byte[], java.lang.String, int);
    descriptor: ([BLjava/lang/String;I)Ljava/security/Key;
    flags: (0x0024) ACC_PROTECTED, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=8, args_size=4
        start local 0 // com.oracle.security.ucrypto.NativeRSACipher this
        start local 1 // byte[] wrappedKey
        start local 2 // java.lang.String wrappedKeyAlgorithm
        start local 3 // int wrappedKeyType
         0: .line 362
            aload 1 /* wrappedKey */
            arraylength
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeRSACipher.buffer:[B
            arraylength
            if_icmple 5
         1: .line 363
            new java.security.InvalidKeyException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Key is too long for unwrapping. wrappedKey.length: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         2: .line 364
            aload 1 /* wrappedKey */
            arraylength
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
         3: .line 365
            ldc ". buffer.length: "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeRSACipher.buffer:[B
            arraylength
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         4: .line 363
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 369
      StackMap locals:
      StackMap stack:
            aload 2 /* wrappedKeyAlgorithm */
            ldc "TlsRsaPremasterSecret"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
         6: .line 368
            istore 4 /* isTlsRsaPremasterSecret */
        start local 4 // boolean isTlsRsaPremasterSecret
         7: .line 370
            aconst_null
            astore 5 /* failover */
        start local 5 // java.lang.Exception failover
         8: .line 372
            aconst_null
            astore 6 /* encodedKey */
        start local 6 // byte[] encodedKey
         9: .line 374
            aload 0 /* this */
            aload 1 /* wrappedKey */
            iconst_0
            aload 1 /* wrappedKey */
            arraylength
            invokevirtual com.oracle.security.ucrypto.NativeRSACipher.engineDoFinal:([BII)[B
            astore 6 /* encodedKey */
        10: .line 375
            goto 18
      StackMap locals: com.oracle.security.ucrypto.NativeRSACipher byte[] java.lang.String int int java.lang.Exception byte[]
      StackMap stack: javax.crypto.BadPaddingException
        11: astore 7 /* bpe */
        start local 7 // javax.crypto.BadPaddingException bpe
        12: .line 376
            iload 4 /* isTlsRsaPremasterSecret */
            ifeq 15
        13: .line 377
            aload 7 /* bpe */
            astore 5 /* failover */
        14: .line 378
            goto 18
        15: .line 379
      StackMap locals: javax.crypto.BadPaddingException
      StackMap stack:
            new java.security.InvalidKeyException
            dup
            ldc "Unwrapping failed"
            aload 7 /* bpe */
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 7 // javax.crypto.BadPaddingException bpe
        16: .line 381
      StackMap locals: com.oracle.security.ucrypto.NativeRSACipher byte[] java.lang.String int int java.lang.Exception byte[]
      StackMap stack: java.lang.Exception
            astore 7 /* e */
        start local 7 // java.lang.Exception e
        17: .line 382
            new java.security.InvalidKeyException
            dup
            ldc "Unwrapping failed"
            aload 7 /* e */
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 7 // java.lang.Exception e
        18: .line 385
      StackMap locals:
      StackMap stack:
            iload 4 /* isTlsRsaPremasterSecret */
            ifeq 28
        19: .line 386
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeRSACipher.spec:Ljava/security/spec/AlgorithmParameterSpec;
            instanceof sun.security.internal.spec.TlsRsaPremasterSecretParameterSpec
            ifne 23
        20: .line 387
            new java.lang.IllegalStateException
            dup
        21: .line 388
            ldc "No TlsRsaPremasterSecretParameterSpec specified"
        22: .line 387
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        23: .line 393
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeRSACipher.spec:Ljava/security/spec/AlgorithmParameterSpec;
            checkcast sun.security.internal.spec.TlsRsaPremasterSecretParameterSpec
            invokevirtual sun.security.internal.spec.TlsRsaPremasterSecretParameterSpec.getClientVersion:()I
        24: .line 394
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeRSACipher.spec:Ljava/security/spec/AlgorithmParameterSpec;
            checkcast sun.security.internal.spec.TlsRsaPremasterSecretParameterSpec
            invokevirtual sun.security.internal.spec.TlsRsaPremasterSecretParameterSpec.getServerVersion:()I
        25: .line 395
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeRSACipher.random:Ljava/security/SecureRandom;
            aload 6 /* encodedKey */
            aload 5 /* failover */
            ifnull 26
            iconst_1
            goto 27
      StackMap locals: com.oracle.security.ucrypto.NativeRSACipher byte[] java.lang.String int int java.lang.Exception byte[]
      StackMap stack: int int java.security.SecureRandom byte[]
        26: iconst_0
        27: .line 392
      StackMap locals: com.oracle.security.ucrypto.NativeRSACipher byte[] java.lang.String int int java.lang.Exception byte[]
      StackMap stack: int int java.security.SecureRandom byte[] int
            invokestatic sun.security.util.KeyUtil.checkTlsPreMasterSecretKey:(IILjava/security/SecureRandom;[BZ)[B
            astore 6 /* encodedKey */
        28: .line 398
      StackMap locals:
      StackMap stack:
            iload 3 /* wrappedKeyType */
        29: .line 399
            aload 6 /* encodedKey */
            aload 2 /* wrappedKeyAlgorithm */
        30: .line 398
            invokestatic com.oracle.security.ucrypto.NativeCipher.constructKey:(I[BLjava/lang/String;)Ljava/security/Key;
            areturn
        end local 6 // byte[] encodedKey
        end local 5 // java.lang.Exception failover
        end local 4 // boolean isTlsRsaPremasterSecret
        end local 3 // int wrappedKeyType
        end local 2 // java.lang.String wrappedKeyAlgorithm
        end local 1 // byte[] wrappedKey
        end local 0 // com.oracle.security.ucrypto.NativeRSACipher this
      LocalVariableTable:
        Start  End  Slot                     Name  Signature
            0   31     0                     this  Lcom/oracle/security/ucrypto/NativeRSACipher;
            0   31     1               wrappedKey  [B
            0   31     2      wrappedKeyAlgorithm  Ljava/lang/String;
            0   31     3           wrappedKeyType  I
            7   31     4  isTlsRsaPremasterSecret  Z
            8   31     5                 failover  Ljava/lang/Exception;
            9   31     6               encodedKey  [B
           12   16     7                      bpe  Ljavax/crypto/BadPaddingException;
           17   18     7                        e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           9    10      11  Class javax.crypto.BadPaddingException
           9    10      16  Class java.lang.Exception
    Exceptions:
      throws java.security.InvalidKeyException, java.security.NoSuchAlgorithmException
    MethodParameters:
                     Name  Flags
      wrappedKey           
      wrappedKeyAlgorithm  
      wrappedKeyType       

  private static native int nativeAtomic(int, boolean, long, int, byte[], int, byte[], int, int);
    descriptor: (IZJI[BI[BII)I
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    MethodParameters:
           Name  Flags
      mech       
      encrypt    
      keyValue   
      keyLength  
      in         
      inLen      
      out        
      ouOfs      
      outLen     

  private void init(boolean, com.oracle.security.ucrypto.NativeKey);
    descriptor: (ZLcom/oracle/security/ucrypto/NativeKey;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // com.oracle.security.ucrypto.NativeRSACipher this
        start local 1 // boolean encrypt
        start local 2 // com.oracle.security.ucrypto.NativeKey key
         0: .line 413
            aload 0 /* this */
            iload 1 /* encrypt */
            putfield com.oracle.security.ucrypto.NativeRSACipher.encrypt:Z
         1: .line 414
            aload 0 /* this */
            aload 2 /* key */
            putfield com.oracle.security.ucrypto.NativeRSACipher.key:Lcom/oracle/security/ucrypto/NativeKey;
         2: .line 416
            aload 0 /* this */
            aload 0 /* this */
            aload 2 /* key */
            invokevirtual com.oracle.security.ucrypto.NativeRSACipher.engineGetKeySize:(Ljava/security/Key;)I
            bipush 8
            idiv
            putfield com.oracle.security.ucrypto.NativeRSACipher.outputSize:I
         3: .line 417
            goto 6
      StackMap locals:
      StackMap stack: java.security.InvalidKeyException
         4: astore 3 /* ike */
        start local 3 // java.security.InvalidKeyException ike
         5: .line 418
            new com.oracle.security.ucrypto.UcryptoException
            dup
            ldc "Internal Error"
            aload 3 /* ike */
            invokespecial com.oracle.security.ucrypto.UcryptoException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 3 // java.security.InvalidKeyException ike
         6: .line 420
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeRSACipher.outputSize:I
            newarray 8
            putfield com.oracle.security.ucrypto.NativeRSACipher.buffer:[B
         7: .line 421
            aload 0 /* this */
            iconst_0
            putfield com.oracle.security.ucrypto.NativeRSACipher.bufOfs:I
         8: .line 422
            return
        end local 2 // com.oracle.security.ucrypto.NativeKey key
        end local 1 // boolean encrypt
        end local 0 // com.oracle.security.ucrypto.NativeRSACipher this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    9     0     this  Lcom/oracle/security/ucrypto/NativeRSACipher;
            0    9     1  encrypt  Z
            0    9     2      key  Lcom/oracle/security/ucrypto/NativeKey;
            5    6     3      ike  Ljava/security/InvalidKeyException;
      Exception table:
        from    to  target  type
           2     3       4  Class java.security.InvalidKeyException
    MethodParameters:
         Name  Flags
      encrypt  
      key      

  private void update(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // com.oracle.security.ucrypto.NativeRSACipher this
        start local 1 // byte[] in
        start local 2 // int inOfs
        start local 3 // int inLen
         0: .line 426
            iload 3 /* inLen */
            ifle 1
            aload 1 /* in */
            ifnonnull 2
         1: .line 427
      StackMap locals:
      StackMap stack:
            return
         2: .line 430
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeRSACipher.bufOfs:I
            iload 3 /* inLen */
            iadd
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeRSACipher.encrypt:Z
            ifeq 3
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeRSACipher.padLen:I
            goto 4
      StackMap locals:
      StackMap stack: int
         3: iconst_0
      StackMap locals: com.oracle.security.ucrypto.NativeRSACipher byte[] int int
      StackMap stack: int int
         4: iadd
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeRSACipher.buffer:[B
            arraylength
            if_icmple 7
         5: .line 432
            aload 0 /* this */
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeRSACipher.buffer:[B
            arraylength
            iconst_1
            iadd
            putfield com.oracle.security.ucrypto.NativeRSACipher.bufOfs:I
         6: .line 433
            return
         7: .line 435
      StackMap locals:
      StackMap stack:
            aload 1 /* in */
            iload 2 /* inOfs */
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeRSACipher.buffer:[B
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeRSACipher.bufOfs:I
            iload 3 /* inLen */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         8: .line 436
            aload 0 /* this */
            dup
            getfield com.oracle.security.ucrypto.NativeRSACipher.bufOfs:I
            iload 3 /* inLen */
            iadd
            putfield com.oracle.security.ucrypto.NativeRSACipher.bufOfs:I
         9: .line 437
            return
        end local 3 // int inLen
        end local 2 // int inOfs
        end local 1 // byte[] in
        end local 0 // com.oracle.security.ucrypto.NativeRSACipher this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lcom/oracle/security/ucrypto/NativeRSACipher;
            0   10     1     in  [B
            0   10     2  inOfs  I
            0   10     3  inLen  I
    MethodParameters:
       Name  Flags
      in     
      inOfs  
      inLen  

  private int doFinal(byte[], int, int);
    descriptor: ([BII)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=10, locals=11, args_size=4
        start local 0 // com.oracle.security.ucrypto.NativeRSACipher this
        start local 1 // byte[] out
        start local 2 // int outOfs
        start local 3 // int outLen
         0: .line 443
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeRSACipher.bufOfs:I
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeRSACipher.buffer:[B
            arraylength
            if_icmple 8
         1: .line 444
            new javax.crypto.IllegalBlockSizeException
            dup
         2: .line 445
            new java.lang.StringBuilder
            dup
            ldc "Data must not be longer than "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         3: .line 446
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeRSACipher.buffer:[B
            arraylength
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeRSACipher.encrypt:Z
            ifeq 4
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeRSACipher.padLen:I
            goto 5
      StackMap locals: com.oracle.security.ucrypto.NativeRSACipher byte[] int int
      StackMap stack: new 1 new 1 java.lang.StringBuilder int
         4: iconst_0
      StackMap locals: com.oracle.security.ucrypto.NativeRSACipher byte[] int int
      StackMap stack: new 1 new 1 java.lang.StringBuilder int int
         5: isub
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " bytes"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         6: .line 445
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         7: .line 444
            invokespecial javax.crypto.IllegalBlockSizeException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 448
      StackMap locals:
      StackMap stack:
            iload 3 /* outLen */
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeRSACipher.outputSize:I
            if_icmpge 10
         9: .line 449
            new javax.crypto.ShortBufferException
            dup
            invokespecial javax.crypto.ShortBufferException.<init>:()V
            athrow
        10: .line 452
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeRSACipher.key:Lcom/oracle/security/ucrypto/NativeKey;
            invokevirtual com.oracle.security.ucrypto.NativeKey.value:()J
            lstore 4 /* keyValue */
        start local 4 // long keyValue
        11: .line 453
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeRSACipher.mech:Lcom/oracle/security/ucrypto/UcryptoMech;
            invokevirtual com.oracle.security.ucrypto.UcryptoMech.value:()I
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeRSACipher.encrypt:Z
            lload 4 /* keyValue */
        12: .line 454
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeRSACipher.key:Lcom/oracle/security/ucrypto/NativeKey;
            invokevirtual com.oracle.security.ucrypto.NativeKey.length:()I
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeRSACipher.buffer:[B
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeRSACipher.bufOfs:I
        13: .line 455
            aload 1 /* out */
            iload 2 /* outOfs */
            iload 3 /* outLen */
        14: .line 453
            invokestatic com.oracle.security.ucrypto.NativeRSACipher.nativeAtomic:(IZJI[BI[BII)I
            istore 6 /* k */
        start local 6 // int k
        15: .line 456
            iload 6 /* k */
            ifge 23
        16: .line 457
            iload 6 /* k */
            bipush -16
            if_icmpeq 17
            iload 6 /* k */
            bipush -64
            if_icmpne 22
        17: .line 460
      StackMap locals: long int
      StackMap stack:
            new com.oracle.security.ucrypto.UcryptoException
            dup
            bipush 16
            invokespecial com.oracle.security.ucrypto.UcryptoException.<init>:(I)V
            astore 7 /* ue */
        start local 7 // com.oracle.security.ucrypto.UcryptoException ue
        18: .line 462
            new javax.crypto.BadPaddingException
            dup
            ldc "Invalid encryption data"
            invokespecial javax.crypto.BadPaddingException.<init>:(Ljava/lang/String;)V
        19: .line 461
            astore 8 /* bpe */
        start local 8 // javax.crypto.BadPaddingException bpe
        20: .line 463
            aload 8 /* bpe */
            aload 7 /* ue */
            invokevirtual javax.crypto.BadPaddingException.initCause:(Ljava/lang/Throwable;)Ljava/lang/Throwable;
            pop
        21: .line 464
            aload 8 /* bpe */
            athrow
        end local 8 // javax.crypto.BadPaddingException bpe
        end local 7 // com.oracle.security.ucrypto.UcryptoException ue
        22: .line 466
      StackMap locals:
      StackMap stack:
            new com.oracle.security.ucrypto.UcryptoException
            dup
            iload 6 /* k */
            ineg
            invokespecial com.oracle.security.ucrypto.UcryptoException.<init>:(I)V
            athrow
        23: .line 469
      StackMap locals:
      StackMap stack:
            iload 6 /* k */
            istore 10
        24: .line 471
            aload 0 /* this */
            iconst_0
            putfield com.oracle.security.ucrypto.NativeRSACipher.bufOfs:I
        25: .line 469
            iload 10
            ireturn
        end local 6 // int k
        end local 4 // long keyValue
        26: .line 470
      StackMap locals: com.oracle.security.ucrypto.NativeRSACipher byte[] int int
      StackMap stack: java.lang.Throwable
            astore 9
        27: .line 471
            aload 0 /* this */
            iconst_0
            putfield com.oracle.security.ucrypto.NativeRSACipher.bufOfs:I
        28: .line 472
            aload 9
            athrow
        end local 3 // int outLen
        end local 2 // int outOfs
        end local 1 // byte[] out
        end local 0 // com.oracle.security.ucrypto.NativeRSACipher this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   29     0      this  Lcom/oracle/security/ucrypto/NativeRSACipher;
            0   29     1       out  [B
            0   29     2    outOfs  I
            0   29     3    outLen  I
           11   26     4  keyValue  J
           15   26     6         k  I
           18   22     7        ue  Lcom/oracle/security/ucrypto/UcryptoException;
           20   22     8       bpe  Ljavax/crypto/BadPaddingException;
      Exception table:
        from    to  target  type
          10    24      26  any
    Exceptions:
      throws javax.crypto.ShortBufferException, javax.crypto.IllegalBlockSizeException, javax.crypto.BadPaddingException
    MethodParameters:
        Name  Flags
      out     
      outOfs  
      outLen  
}
SourceFile: "NativeRSACipher.java"
NestMembers:
  com.oracle.security.ucrypto.NativeRSACipher$NoPadding  com.oracle.security.ucrypto.NativeRSACipher$PKCS1Padding
InnerClasses:
  public final NoPadding = com.oracle.security.ucrypto.NativeRSACipher$NoPadding of com.oracle.security.ucrypto.NativeRSACipher
  public final PKCS1Padding = com.oracle.security.ucrypto.NativeRSACipher$PKCS1Padding of com.oracle.security.ucrypto.NativeRSACipher