class com.oracle.security.ucrypto.NativeCipher extends javax.crypto.CipherSpi
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: com.oracle.security.ucrypto.NativeCipher
  super_class: javax.crypto.CipherSpi
{
  public static final int AES_BLOCK_SIZE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 16

  public static final java.lang.String AES_KEY_ALGO;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "AES"

  protected final com.oracle.security.ucrypto.UcryptoMech mech;
    descriptor: Lcom/oracle/security/ucrypto/UcryptoMech;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected java.lang.String keyAlgo;
    descriptor: Ljava/lang/String;
    flags: (0x0004) ACC_PROTECTED

  protected int blockSize;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected int fixedKeySize;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected com.oracle.security.ucrypto.CipherContextRef pCtxt;
    descriptor: Lcom/oracle/security/ucrypto/CipherContextRef;
    flags: (0x0004) ACC_PROTECTED

  protected byte[] keyValue;
    descriptor: [B
    flags: (0x0004) ACC_PROTECTED

  protected byte[] iv;
    descriptor: [B
    flags: (0x0004) ACC_PROTECTED

  protected boolean initialized;
    descriptor: Z
    flags: (0x0004) ACC_PROTECTED

  protected boolean encrypt;
    descriptor: Z
    flags: (0x0004) ACC_PROTECTED

  protected int bytesBuffered;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  private static final java.security.PublicKey constructPublicKey(byte[], java.lang.String);
    descriptor: ([BLjava/lang/String;)Ljava/security/PublicKey;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    Code:
      stack=5, locals=5, args_size=2
        start local 0 // byte[] encodedKey
        start local 1 // java.lang.String encodedKeyAlgorithm
         0: .line 108
            aconst_null
            astore 2 /* key */
        start local 2 // java.security.PublicKey key
         1: .line 111
            aload 1 /* encodedKeyAlgorithm */
            invokestatic java.security.KeyFactory.getInstance:(Ljava/lang/String;)Ljava/security/KeyFactory;
         2: .line 110
            astore 3 /* keyFactory */
        start local 3 // java.security.KeyFactory keyFactory
         3: .line 112
            new java.security.spec.X509EncodedKeySpec
            dup
            aload 0 /* encodedKey */
            invokespecial java.security.spec.X509EncodedKeySpec.<init>:([B)V
            astore 4 /* keySpec */
        start local 4 // java.security.spec.X509EncodedKeySpec keySpec
         4: .line 113
            aload 3 /* keyFactory */
            aload 4 /* keySpec */
            invokevirtual java.security.KeyFactory.generatePublic:(Ljava/security/spec/KeySpec;)Ljava/security/PublicKey;
            astore 2 /* key */
        end local 4 // java.security.spec.X509EncodedKeySpec keySpec
        end local 3 // java.security.KeyFactory keyFactory
         5: .line 114
            goto 13
      StackMap locals: byte[] java.lang.String java.security.PublicKey
      StackMap stack: java.security.NoSuchAlgorithmException
         6: pop
         7: .line 115
            new java.security.NoSuchAlgorithmException
            dup
            new java.lang.StringBuilder
            dup
            ldc "No provider found for "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         8: .line 116
            aload 1 /* encodedKeyAlgorithm */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         9: .line 117
            ldc " KeyFactory"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        10: .line 115
            invokespecial java.security.NoSuchAlgorithmException.<init>:(Ljava/lang/String;)V
            athrow
        11: .line 118
      StackMap locals:
      StackMap stack: java.security.spec.InvalidKeySpecException
            astore 3 /* ikse */
        start local 3 // java.security.spec.InvalidKeySpecException ikse
        12: .line 120
            new java.security.InvalidKeyException
            dup
            ldc "Cannot construct public key"
            aload 3 /* ikse */
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 3 // java.security.spec.InvalidKeySpecException ikse
        13: .line 122
      StackMap locals:
      StackMap stack:
            aload 2 /* key */
            areturn
        end local 2 // java.security.PublicKey key
        end local 1 // java.lang.String encodedKeyAlgorithm
        end local 0 // byte[] encodedKey
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0   14     0           encodedKey  [B
            0   14     1  encodedKeyAlgorithm  Ljava/lang/String;
            1   14     2                  key  Ljava/security/PublicKey;
            3    5     3           keyFactory  Ljava/security/KeyFactory;
            4    5     4              keySpec  Ljava/security/spec/X509EncodedKeySpec;
           12   13     3                 ikse  Ljava/security/spec/InvalidKeySpecException;
      Exception table:
        from    to  target  type
           1     5       6  Class java.security.NoSuchAlgorithmException
           1     5      11  Class java.security.spec.InvalidKeySpecException
    Exceptions:
      throws java.security.InvalidKeyException, java.security.NoSuchAlgorithmException
    MethodParameters:
                     Name  Flags
      encodedKey           
      encodedKeyAlgorithm  

  private static final java.security.PrivateKey constructPrivateKey(byte[], java.lang.String);
    descriptor: ([BLjava/lang/String;)Ljava/security/PrivateKey;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    Code:
      stack=5, locals=5, args_size=2
        start local 0 // byte[] encodedKey
        start local 1 // java.lang.String encodedKeyAlgorithm
         0: .line 129
            aconst_null
            astore 2 /* key */
        start local 2 // java.security.PrivateKey key
         1: .line 132
            aload 1 /* encodedKeyAlgorithm */
            invokestatic java.security.KeyFactory.getInstance:(Ljava/lang/String;)Ljava/security/KeyFactory;
         2: .line 131
            astore 3 /* keyFactory */
        start local 3 // java.security.KeyFactory keyFactory
         3: .line 133
            new java.security.spec.PKCS8EncodedKeySpec
            dup
            aload 0 /* encodedKey */
            invokespecial java.security.spec.PKCS8EncodedKeySpec.<init>:([B)V
            astore 4 /* keySpec */
        start local 4 // java.security.spec.PKCS8EncodedKeySpec keySpec
         4: .line 134
            aload 3 /* keyFactory */
            aload 4 /* keySpec */
            invokevirtual java.security.KeyFactory.generatePrivate:(Ljava/security/spec/KeySpec;)Ljava/security/PrivateKey;
            astore 2 /* key */
        end local 4 // java.security.spec.PKCS8EncodedKeySpec keySpec
        end local 3 // java.security.KeyFactory keyFactory
         5: .line 135
            goto 13
      StackMap locals: byte[] java.lang.String java.security.PrivateKey
      StackMap stack: java.security.NoSuchAlgorithmException
         6: pop
         7: .line 136
            new java.security.NoSuchAlgorithmException
            dup
            new java.lang.StringBuilder
            dup
            ldc "No provider found for "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         8: .line 137
            aload 1 /* encodedKeyAlgorithm */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         9: .line 138
            ldc " KeyFactory"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        10: .line 136
            invokespecial java.security.NoSuchAlgorithmException.<init>:(Ljava/lang/String;)V
            athrow
        11: .line 139
      StackMap locals:
      StackMap stack: java.security.spec.InvalidKeySpecException
            astore 3 /* ikse */
        start local 3 // java.security.spec.InvalidKeySpecException ikse
        12: .line 141
            new java.security.InvalidKeyException
            dup
            ldc "Cannot construct private key"
            aload 3 /* ikse */
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 3 // java.security.spec.InvalidKeySpecException ikse
        13: .line 143
      StackMap locals:
      StackMap stack:
            aload 2 /* key */
            areturn
        end local 2 // java.security.PrivateKey key
        end local 1 // java.lang.String encodedKeyAlgorithm
        end local 0 // byte[] encodedKey
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0   14     0           encodedKey  [B
            0   14     1  encodedKeyAlgorithm  Ljava/lang/String;
            1   14     2                  key  Ljava/security/PrivateKey;
            3    5     3           keyFactory  Ljava/security/KeyFactory;
            4    5     4              keySpec  Ljava/security/spec/PKCS8EncodedKeySpec;
           12   13     3                 ikse  Ljava/security/spec/InvalidKeySpecException;
      Exception table:
        from    to  target  type
           1     5       6  Class java.security.NoSuchAlgorithmException
           1     5      11  Class java.security.spec.InvalidKeySpecException
    Exceptions:
      throws java.security.InvalidKeyException, java.security.NoSuchAlgorithmException
    MethodParameters:
                     Name  Flags
      encodedKey           
      encodedKeyAlgorithm  

  private static final javax.crypto.SecretKey constructSecretKey(byte[], java.lang.String);
    descriptor: ([BLjava/lang/String;)Ljavax/crypto/SecretKey;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // byte[] encodedKey
        start local 1 // java.lang.String encodedKeyAlgorithm
         0: .line 148
            new javax.crypto.spec.SecretKeySpec
            dup
            aload 0 /* encodedKey */
            aload 1 /* encodedKeyAlgorithm */
            invokespecial javax.crypto.spec.SecretKeySpec.<init>:([BLjava/lang/String;)V
            areturn
        end local 1 // java.lang.String encodedKeyAlgorithm
        end local 0 // byte[] encodedKey
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0    1     0           encodedKey  [B
            0    1     1  encodedKeyAlgorithm  Ljava/lang/String;
    MethodParameters:
                     Name  Flags
      encodedKey           
      encodedKeyAlgorithm  

  static final java.security.Key constructKey(int, byte[], java.lang.String);
    descriptor: (I[BLjava/lang/String;)Ljava/security/Key;
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // int keyType
        start local 1 // byte[] encodedKey
        start local 2 // java.lang.String encodedKeyAlgorithm
         0: .line 155
            aconst_null
            astore 3 /* result */
        start local 3 // java.security.Key result
         1: .line 156
            iload 0 /* keyType */
            tableswitch { // 1 - 3
                    1: 10
                    2: 6
                    3: 2
              default: 13
          }
         2: .line 158
      StackMap locals: java.security.Key
      StackMap stack:
            aload 1 /* encodedKey */
         3: .line 159
            aload 2 /* encodedKeyAlgorithm */
         4: .line 158
            invokestatic com.oracle.security.ucrypto.NativeCipher.constructSecretKey:([BLjava/lang/String;)Ljavax/crypto/SecretKey;
            astore 3 /* result */
         5: .line 160
            goto 13
         6: .line 162
      StackMap locals:
      StackMap stack:
            aload 1 /* encodedKey */
         7: .line 163
            aload 2 /* encodedKeyAlgorithm */
         8: .line 162
            invokestatic com.oracle.security.ucrypto.NativeCipher.constructPrivateKey:([BLjava/lang/String;)Ljava/security/PrivateKey;
            astore 3 /* result */
         9: .line 164
            goto 13
        10: .line 166
      StackMap locals:
      StackMap stack:
            aload 1 /* encodedKey */
        11: .line 167
            aload 2 /* encodedKeyAlgorithm */
        12: .line 166
            invokestatic com.oracle.security.ucrypto.NativeCipher.constructPublicKey:([BLjava/lang/String;)Ljava/security/PublicKey;
            astore 3 /* result */
        13: .line 170
      StackMap locals:
      StackMap stack:
            aload 3 /* result */
            areturn
        end local 3 // java.security.Key result
        end local 2 // java.lang.String encodedKeyAlgorithm
        end local 1 // byte[] encodedKey
        end local 0 // int keyType
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0   14     0              keyType  I
            0   14     1           encodedKey  [B
            0   14     2  encodedKeyAlgorithm  Ljava/lang/String;
            1   14     3               result  Ljava/security/Key;
    Exceptions:
      throws java.security.InvalidKeyException, java.security.NoSuchAlgorithmException
    MethodParameters:
                     Name  Flags
      keyType              
      encodedKey           
      encodedKeyAlgorithm  

  void <init>(com.oracle.security.ucrypto.UcryptoMech, int);
    descriptor: (Lcom/oracle/security/ucrypto/UcryptoMech;I)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.oracle.security.ucrypto.NativeCipher this
        start local 1 // com.oracle.security.ucrypto.UcryptoMech mech
        start local 2 // int fixedKeySize
         0: .line 173
            aload 0 /* this */
            invokespecial javax.crypto.CipherSpi.<init>:()V
         1: .line 96
            aload 0 /* this */
            aconst_null
            putfield com.oracle.security.ucrypto.NativeCipher.pCtxt:Lcom/oracle/security/ucrypto/CipherContextRef;
         2: .line 97
            aload 0 /* this */
            aconst_null
            putfield com.oracle.security.ucrypto.NativeCipher.keyValue:[B
         3: .line 98
            aload 0 /* this */
            aconst_null
            putfield com.oracle.security.ucrypto.NativeCipher.iv:[B
         4: .line 99
            aload 0 /* this */
            iconst_0
            putfield com.oracle.security.ucrypto.NativeCipher.initialized:Z
         5: .line 100
            aload 0 /* this */
            iconst_1
            putfield com.oracle.security.ucrypto.NativeCipher.encrypt:Z
         6: .line 101
            aload 0 /* this */
            iconst_0
            putfield com.oracle.security.ucrypto.NativeCipher.bytesBuffered:I
         7: .line 174
            aload 0 /* this */
            aload 1 /* mech */
            putfield com.oracle.security.ucrypto.NativeCipher.mech:Lcom/oracle/security/ucrypto/UcryptoMech;
         8: .line 176
            aload 0 /* this */
            bipush 16
            putfield com.oracle.security.ucrypto.NativeCipher.blockSize:I
         9: .line 177
            aload 0 /* this */
            ldc "AES"
            putfield com.oracle.security.ucrypto.NativeCipher.keyAlgo:Ljava/lang/String;
        10: .line 178
            aload 0 /* this */
            iload 2 /* fixedKeySize */
            putfield com.oracle.security.ucrypto.NativeCipher.fixedKeySize:I
        11: .line 179
            return
        end local 2 // int fixedKeySize
        end local 1 // com.oracle.security.ucrypto.UcryptoMech mech
        end local 0 // com.oracle.security.ucrypto.NativeCipher this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   12     0          this  Lcom/oracle/security/ucrypto/NativeCipher;
            0   12     1          mech  Lcom/oracle/security/ucrypto/UcryptoMech;
            0   12     2  fixedKeySize  I
    Exceptions:
      throws java.security.NoSuchAlgorithmException
    MethodParameters:
              Name  Flags
      mech          
      fixedKeySize  

  void <init>(com.oracle.security.ucrypto.UcryptoMech);
    descriptor: (Lcom/oracle/security/ucrypto/UcryptoMech;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.oracle.security.ucrypto.NativeCipher this
        start local 1 // com.oracle.security.ucrypto.UcryptoMech mech
         0: .line 182
            aload 0 /* this */
            aload 1 /* mech */
            iconst_m1
            invokespecial com.oracle.security.ucrypto.NativeCipher.<init>:(Lcom/oracle/security/ucrypto/UcryptoMech;I)V
         1: .line 183
            return
        end local 1 // com.oracle.security.ucrypto.UcryptoMech mech
        end local 0 // com.oracle.security.ucrypto.NativeCipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/security/ucrypto/NativeCipher;
            0    2     1  mech  Lcom/oracle/security/ucrypto/UcryptoMech;
    Exceptions:
      throws java.security.NoSuchAlgorithmException
    MethodParameters:
      Name  Flags
      mech  

  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.NativeCipher this
        start local 1 // java.lang.String mode
         0: .line 189
            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.NativeCipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/security/ucrypto/NativeCipher;
            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.NativeCipher this
        start local 1 // java.lang.String padding
         0: .line 198
            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.NativeCipher this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lcom/oracle/security/ucrypto/NativeCipher;
            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.NativeCipher this
         0: .line 204
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeCipher.blockSize:I
            ireturn
        end local 0 // com.oracle.security.ucrypto.NativeCipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/security/ucrypto/NativeCipher;

  protected synchronized int engineGetOutputSize(int);
    descriptor: (I)I
    flags: (0x0024) ACC_PROTECTED, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.oracle.security.ucrypto.NativeCipher this
        start local 1 // int inputLen
         0: .line 210
            aload 0 /* this */
            iload 1 /* inputLen */
            iconst_1
            invokevirtual com.oracle.security.ucrypto.NativeCipher.getOutputSizeByOperation:(IZ)I
            ireturn
        end local 1 // int inputLen
        end local 0 // com.oracle.security.ucrypto.NativeCipher this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lcom/oracle/security/ucrypto/NativeCipher;
            0    1     1  inputLen  I
    MethodParameters:
          Name  Flags
      inputLen  

  protected synchronized byte[] engineGetIV();
    descriptor: ()[B
    flags: (0x0024) ACC_PROTECTED, ACC_SYNCHRONIZED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.security.ucrypto.NativeCipher this
         0: .line 216
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeCipher.iv:[B
            ifnull 1
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeCipher.iv:[B
            invokevirtual byte[].clone:()Ljava/lang/Object;
            checkcast byte[]
            goto 2
      StackMap locals:
      StackMap stack:
         1: aconst_null
      StackMap locals:
      StackMap stack: byte[]
         2: areturn
        end local 0 // com.oracle.security.ucrypto.NativeCipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/oracle/security/ucrypto/NativeCipher;

  protected synchronized java.security.AlgorithmParameters engineGetParameters();
    descriptor: ()Ljava/security/AlgorithmParameters;
    flags: (0x0024) ACC_PROTECTED, ACC_SYNCHRONIZED
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // com.oracle.security.ucrypto.NativeCipher this
         0: .line 222
            aconst_null
            astore 1 /* params */
        start local 1 // java.security.AlgorithmParameters params
         1: .line 224
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeCipher.iv:[B
            ifnull 8
         2: .line 225
            new javax.crypto.spec.IvParameterSpec
            dup
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeCipher.iv:[B
            invokevirtual byte[].clone:()Ljava/lang/Object;
            checkcast byte[]
            invokespecial javax.crypto.spec.IvParameterSpec.<init>:([B)V
            astore 2 /* ivSpec */
        start local 2 // javax.crypto.spec.IvParameterSpec ivSpec
         3: .line 226
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeCipher.keyAlgo:Ljava/lang/String;
            invokestatic java.security.AlgorithmParameters.getInstance:(Ljava/lang/String;)Ljava/security/AlgorithmParameters;
            astore 1 /* params */
         4: .line 227
            aload 1 /* params */
            aload 2 /* ivSpec */
            invokevirtual java.security.AlgorithmParameters.init:(Ljava/security/spec/AlgorithmParameterSpec;)V
        end local 2 // javax.crypto.spec.IvParameterSpec ivSpec
         5: .line 229
            goto 8
      StackMap locals: com.oracle.security.ucrypto.NativeCipher java.security.AlgorithmParameters
      StackMap stack: java.security.GeneralSecurityException
         6: astore 2 /* e */
        start local 2 // java.security.GeneralSecurityException e
         7: .line 232
            new com.oracle.security.ucrypto.UcryptoException
            dup
            ldc "Could not encode parameters"
            aload 2 /* e */
            invokespecial com.oracle.security.ucrypto.UcryptoException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 2 // java.security.GeneralSecurityException e
         8: .line 234
      StackMap locals:
      StackMap stack:
            aload 1 /* params */
            areturn
        end local 1 // java.security.AlgorithmParameters params
        end local 0 // com.oracle.security.ucrypto.NativeCipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lcom/oracle/security/ucrypto/NativeCipher;
            1    9     1  params  Ljava/security/AlgorithmParameters;
            3    5     2  ivSpec  Ljavax/crypto/spec/IvParameterSpec;
            7    8     2       e  Ljava/security/GeneralSecurityException;
      Exception table:
        from    to  target  type
           1     5       6  Class java.security.GeneralSecurityException

  protected int engineGetKeySize(java.security.Key);
    descriptor: (Ljava/security/Key;)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.security.ucrypto.NativeCipher this
        start local 1 // java.security.Key key
         0: .line 239
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual com.oracle.security.ucrypto.NativeCipher.checkKey:(Ljava/security/Key;)I
            bipush 8
            imul
            ireturn
        end local 1 // java.security.Key key
        end local 0 // com.oracle.security.ucrypto.NativeCipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/security/ucrypto/NativeCipher;
            0    1     1   key  Ljava/security/Key;
    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.NativeCipher this
        start local 1 // int opmode
        start local 2 // java.security.Key key
        start local 3 // java.security.SecureRandom random
         0: .line 247
            aload 0 /* this */
            iload 1 /* opmode */
            aload 2 /* key */
            aconst_null
            aload 3 /* random */
            invokevirtual com.oracle.security.ucrypto.NativeCipher.engineInit:(ILjava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/SecureRandom;)V
         1: .line 248
            goto 4
      StackMap locals:
      StackMap stack: java.security.InvalidAlgorithmParameterException
         2: astore 4 /* e */
        start local 4 // java.security.InvalidAlgorithmParameterException e
         3: .line 249
            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 251
      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.NativeCipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lcom/oracle/security/ucrypto/NativeCipher;
            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=5, locals=7, args_size=5
        start local 0 // com.oracle.security.ucrypto.NativeCipher this
        start local 1 // int opmode
        start local 2 // java.security.Key key
        start local 3 // java.security.spec.AlgorithmParameterSpec params
        start local 4 // java.security.SecureRandom random
         0: .line 258
            aload 0 /* this */
            aload 2 /* key */
            invokevirtual com.oracle.security.ucrypto.NativeCipher.checkKey:(Ljava/security/Key;)I
            pop
         1: .line 259
            iload 1 /* opmode */
            iconst_1
            if_icmpeq 8
         2: .line 260
            iload 1 /* opmode */
            iconst_2
            if_icmpeq 8
         3: .line 261
            iload 1 /* opmode */
            iconst_3
            if_icmpeq 8
         4: .line 262
            iload 1 /* opmode */
            iconst_4
            if_icmpeq 8
         5: .line 263
            new java.security.InvalidAlgorithmParameterException
            dup
         6: .line 264
            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;
         7: .line 263
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 267
      StackMap locals:
      StackMap stack:
            iload 1 /* opmode */
            iconst_1
            if_icmpeq 10
            iload 1 /* opmode */
            iconst_3
            if_icmpeq 10
         9: .line 266
            iconst_0
            goto 11
      StackMap locals:
      StackMap stack:
        10: iconst_1
      StackMap locals:
      StackMap stack: int
        11: istore 5 /* doEncrypt */
        start local 5 // boolean doEncrypt
        12: .line 269
            aconst_null
            astore 6 /* ivBytes */
        start local 6 // byte[] ivBytes
        13: .line 270
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeCipher.mech:Lcom/oracle/security/ucrypto/UcryptoMech;
            getstatic com.oracle.security.ucrypto.UcryptoMech.CRYPTO_AES_ECB:Lcom/oracle/security/ucrypto/UcryptoMech;
            if_acmpne 18
        14: .line 271
            aload 3 /* params */
            ifnull 41
        15: .line 272
            new java.security.InvalidAlgorithmParameterException
            dup
        16: .line 273
            ldc "No Parameters for ECB mode"
        17: .line 272
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;)V
            athrow
        18: .line 276
      StackMap locals: int byte[]
      StackMap stack:
            aload 3 /* params */
            ifnull 32
        19: .line 277
            aload 3 /* params */
            instanceof javax.crypto.spec.IvParameterSpec
            ifne 25
        20: .line 278
            new java.security.InvalidAlgorithmParameterException
            dup
        21: .line 279
            new java.lang.StringBuilder
            dup
            ldc "IvParameterSpec required. Received: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        22: .line 280
            aload 3 /* params */
            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;
        23: .line 279
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        24: .line 278
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;)V
            athrow
        25: .line 282
      StackMap locals:
      StackMap stack:
            aload 3 /* params */
            checkcast javax.crypto.spec.IvParameterSpec
            invokevirtual javax.crypto.spec.IvParameterSpec.getIV:()[B
            astore 6 /* ivBytes */
        26: .line 283
            aload 6 /* ivBytes */
            arraylength
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeCipher.blockSize:I
            if_icmpeq 41
        27: .line 284
            new java.security.InvalidAlgorithmParameterException
            dup
        28: .line 285
            new java.lang.StringBuilder
            dup
            ldc "Wrong IV length: must be "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeCipher.blockSize:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
        29: .line 286
            ldc " bytes long. Received length:"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 6 /* ivBytes */
            arraylength
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
        30: .line 285
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        31: .line 284
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;)V
            athrow
        32: .line 290
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeCipher.encrypt:Z
            ifeq 38
        33: .line 292
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeCipher.blockSize:I
            newarray 8
            astore 6 /* ivBytes */
        34: .line 293
            aload 4 /* random */
            ifnonnull 36
        35: .line 294
            invokestatic sun.security.jca.JCAUtil.getSecureRandom:()Ljava/security/SecureRandom;
            astore 4 /* random */
        36: .line 296
      StackMap locals:
      StackMap stack:
            aload 4 /* random */
            aload 6 /* ivBytes */
            invokevirtual java.security.SecureRandom.nextBytes:([B)V
        37: .line 297
            goto 41
        38: .line 298
      StackMap locals:
      StackMap stack:
            new java.security.InvalidAlgorithmParameterException
            dup
        39: .line 299
            ldc "Parameters required for decryption"
        40: .line 298
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;)V
            athrow
        41: .line 303
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 5 /* doEncrypt */
            aload 2 /* key */
            invokeinterface java.security.Key.getEncoded:()[B
            invokevirtual byte[].clone:()Ljava/lang/Object;
            checkcast byte[]
            aload 6 /* ivBytes */
            invokevirtual com.oracle.security.ucrypto.NativeCipher.init:(Z[B[B)V
        42: .line 304
            return
        end local 6 // byte[] ivBytes
        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 key
        end local 1 // int opmode
        end local 0 // com.oracle.security.ucrypto.NativeCipher this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   43     0       this  Lcom/oracle/security/ucrypto/NativeCipher;
            0   43     1     opmode  I
            0   43     2        key  Ljava/security/Key;
            0   43     3     params  Ljava/security/spec/AlgorithmParameterSpec;
            0   43     4     random  Ljava/security/SecureRandom;
           12   43     5  doEncrypt  Z
           13   43     6    ivBytes  [B
    Exceptions:
      throws java.security.InvalidKeyException, java.security.InvalidAlgorithmParameterException
    MethodParameters:
        Name  Flags
      opmode  
      key     
      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=7, args_size=5
        start local 0 // com.oracle.security.ucrypto.NativeCipher 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 311
            aconst_null
            astore 5 /* spec */
        start local 5 // java.security.spec.AlgorithmParameterSpec spec
         1: .line 312
            aload 3 /* params */
            ifnull 6
         2: .line 314
            aload 3 /* params */
            ldc Ljavax/crypto/spec/IvParameterSpec;
            invokevirtual java.security.AlgorithmParameters.getParameterSpec:(Ljava/lang/Class;)Ljava/security/spec/AlgorithmParameterSpec;
            astore 5 /* spec */
         3: .line 315
            goto 6
      StackMap locals: com.oracle.security.ucrypto.NativeCipher int java.security.Key java.security.AlgorithmParameters java.security.SecureRandom java.security.spec.AlgorithmParameterSpec
      StackMap stack: java.security.spec.InvalidParameterSpecException
         4: astore 6 /* iaps */
        start local 6 // java.security.spec.InvalidParameterSpecException iaps
         5: .line 316
            new java.security.InvalidAlgorithmParameterException
            dup
            aload 6 /* iaps */
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 6 // java.security.spec.InvalidParameterSpecException iaps
         6: .line 319
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* opmode */
            aload 2 /* key */
            aload 5 /* spec */
            aload 4 /* random */
            invokevirtual com.oracle.security.ucrypto.NativeCipher.engineInit:(ILjava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/SecureRandom;)V
         7: .line 320
            return
        end local 5 // java.security.spec.AlgorithmParameterSpec spec
        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.NativeCipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lcom/oracle/security/ucrypto/NativeCipher;
            0    8     1  opmode  I
            0    8     2     key  Ljava/security/Key;
            0    8     3  params  Ljava/security/AlgorithmParameters;
            0    8     4  random  Ljava/security/SecureRandom;
            1    8     5    spec  Ljava/security/spec/AlgorithmParameterSpec;
            5    6     6    iaps  Ljava/security/spec/InvalidParameterSpecException;
      Exception table:
        from    to  target  type
           2     3       4  Class java.security.spec.InvalidParameterSpecException
    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=6, locals=6, args_size=4
        start local 0 // com.oracle.security.ucrypto.NativeCipher this
        start local 1 // byte[] in
        start local 2 // int ofs
        start local 3 // int len
         0: .line 325
            aload 0 /* this */
            iload 3 /* len */
            iconst_0
            invokevirtual com.oracle.security.ucrypto.NativeCipher.getOutputSizeByOperation:(IZ)I
            newarray 8
            astore 4 /* out */
        start local 4 // byte[] out
         1: .line 326
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* ofs */
            iload 3 /* len */
            aload 4 /* out */
            iconst_0
            invokevirtual com.oracle.security.ucrypto.NativeCipher.update:([BII[BI)I
            istore 5 /* n */
        start local 5 // int n
         2: .line 327
            iload 5 /* n */
            ifne 4
         3: .line 328
            aconst_null
            areturn
         4: .line 329
      StackMap locals: byte[] int
      StackMap stack:
            aload 4 /* out */
            arraylength
            iload 5 /* n */
            if_icmpeq 6
         5: .line 330
            aload 4 /* out */
            iload 5 /* n */
            invokestatic java.util.Arrays.copyOf:([BI)[B
            astore 4 /* out */
         6: .line 332
      StackMap locals:
      StackMap stack:
            aload 4 /* out */
            areturn
        end local 5 // int n
        end local 4 // byte[] out
        end local 3 // int len
        end local 2 // int ofs
        end local 1 // byte[] in
        end local 0 // com.oracle.security.ucrypto.NativeCipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/oracle/security/ucrypto/NativeCipher;
            0    7     1    in  [B
            0    7     2   ofs  I
            0    7     3   len  I
            1    7     4   out  [B
            2    7     5     n  I
    MethodParameters:
      Name  Flags
      in    
      ofs   
      len   

  protected synchronized int engineUpdate(byte[], int, int, byte[], int);
    descriptor: ([BII[BI)I
    flags: (0x0024) ACC_PROTECTED, ACC_SYNCHRONIZED
    Code:
      stack=6, locals=7, args_size=6
        start local 0 // com.oracle.security.ucrypto.NativeCipher 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 339
            aload 0 /* this */
            iload 3 /* inLen */
            iconst_0
            invokevirtual com.oracle.security.ucrypto.NativeCipher.getOutputSizeByOperation:(IZ)I
            istore 6 /* min */
        start local 6 // int min
         1: .line 340
            aload 4 /* out */
            arraylength
            iload 5 /* outOfs */
            isub
            iload 6 /* min */
            if_icmpge 3
         2: .line 341
            new javax.crypto.ShortBufferException
            dup
            new java.lang.StringBuilder
            dup
            ldc "min "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 6 /* min */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc "-byte buffer needed"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial javax.crypto.ShortBufferException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 343
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* inOfs */
            iload 3 /* inLen */
            aload 4 /* out */
            iload 5 /* outOfs */
            invokevirtual com.oracle.security.ucrypto.NativeCipher.update:([BII[BI)I
            ireturn
        end local 6 // int min
        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.NativeCipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lcom/oracle/security/ucrypto/NativeCipher;
            0    4     1      in  [B
            0    4     2   inOfs  I
            0    4     3   inLen  I
            0    4     4     out  [B
            0    4     5  outOfs  I
            1    4     6     min  I
    Exceptions:
      throws javax.crypto.ShortBufferException
    MethodParameters:
        Name  Flags
      in      
      inOfs   
      inLen   
      out     
      outOfs  

  protected synchronized void engineUpdateAAD(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0024) ACC_PROTECTED, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // com.oracle.security.ucrypto.NativeCipher this
        start local 1 // byte[] src
        start local 2 // int ofs
        start local 3 // int len
         0: .line 350
            new java.lang.IllegalStateException
            dup
            ldc "No AAD can be supplied"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        end local 3 // int len
        end local 2 // int ofs
        end local 1 // byte[] src
        end local 0 // com.oracle.security.ucrypto.NativeCipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/security/ucrypto/NativeCipher;
            0    1     1   src  [B
            0    1     2   ofs  I
            0    1     3   len  I
    Exceptions:
      throws java.lang.IllegalStateException
    MethodParameters:
      Name  Flags
      src   
      ofs   
      len   

  protected void engineUpdateAAD(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.oracle.security.ucrypto.NativeCipher this
        start local 1 // java.nio.ByteBuffer src
         0: .line 357
            new java.lang.IllegalStateException
            dup
            ldc "No AAD can be supplied"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.nio.ByteBuffer src
        end local 0 // com.oracle.security.ucrypto.NativeCipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/security/ucrypto/NativeCipher;
            0    1     1   src  Ljava/nio/ByteBuffer;
    Exceptions:
      throws java.lang.IllegalStateException
    MethodParameters:
      Name  Flags
      src   

  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.NativeCipher this
        start local 1 // byte[] in
        start local 2 // int ofs
        start local 3 // int len
         0: .line 364
            aload 0 /* this */
            iload 3 /* len */
            iconst_1
            invokevirtual com.oracle.security.ucrypto.NativeCipher.getOutputSizeByOperation:(IZ)I
            newarray 8
            astore 4 /* out */
        start local 4 // byte[] out
         1: .line 367
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* ofs */
            iload 3 /* len */
            aload 4 /* out */
            iconst_0
            invokevirtual com.oracle.security.ucrypto.NativeCipher.engineDoFinal:([BII[BI)I
            istore 5 /* k */
        start local 5 // int k
         2: .line 368
            aload 4 /* out */
            arraylength
            iload 5 /* k */
            if_icmpeq 4
         3: .line 369
            aload 4 /* out */
            iload 5 /* k */
            invokestatic java.util.Arrays.copyOf:([BI)[B
            astore 4 /* out */
         4: .line 371
      StackMap locals: byte[] int
      StackMap stack:
            aload 4 /* out */
         5: areturn
        end local 5 // int k
         6: .line 372
      StackMap locals: com.oracle.security.ucrypto.NativeCipher byte[] int int byte[]
      StackMap stack: javax.crypto.ShortBufferException
            astore 5 /* e */
        start local 5 // javax.crypto.ShortBufferException e
         7: .line 373
            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 len
        end local 2 // int ofs
        end local 1 // byte[] in
        end local 0 // com.oracle.security.ucrypto.NativeCipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lcom/oracle/security/ucrypto/NativeCipher;
            0    8     1    in  [B
            0    8     2   ofs  I
            0    8     3   len  I
            1    8     4   out  [B
            2    6     5     k  I
            7    8     5     e  Ljavax/crypto/ShortBufferException;
      Exception table:
        from    to  target  type
           1     5       6  Class javax.crypto.ShortBufferException
    Exceptions:
      throws javax.crypto.IllegalBlockSizeException, javax.crypto.BadPaddingException
    MethodParameters:
      Name  Flags
      in    
      ofs   
      len   

  protected synchronized int engineDoFinal(byte[], int, int, byte[], int);
    descriptor: ([BII[BI)I
    flags: (0x0024) ACC_PROTECTED, ACC_SYNCHRONIZED
    Code:
      stack=6, locals=8, args_size=6
        start local 0 // com.oracle.security.ucrypto.NativeCipher 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 383
            iconst_0
            istore 6 /* k */
        start local 6 // int k
         1: .line 384
            aload 0 /* this */
            iload 3 /* inLen */
            iconst_1
            invokevirtual com.oracle.security.ucrypto.NativeCipher.getOutputSizeByOperation:(IZ)I
            istore 7 /* min */
        start local 7 // int min
         2: .line 385
            aload 4 /* out */
            arraylength
            iload 5 /* outOfs */
            isub
            iload 7 /* min */
            if_icmpge 4
         3: .line 386
            new javax.crypto.ShortBufferException
            dup
            new java.lang.StringBuilder
            dup
            ldc "min "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 7 /* min */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc "-byte buffer needed"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial javax.crypto.ShortBufferException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 388
      StackMap locals: int int
      StackMap stack:
            iload 3 /* inLen */
            ifle 7
         5: .line 389
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* inOfs */
            iload 3 /* inLen */
            aload 4 /* out */
            iload 5 /* outOfs */
            invokevirtual com.oracle.security.ucrypto.NativeCipher.update:([BII[BI)I
            istore 6 /* k */
         6: .line 390
            iload 5 /* outOfs */
            iload 6 /* k */
            iadd
            istore 5 /* outOfs */
         7: .line 392
      StackMap locals:
      StackMap stack:
            iload 6 /* k */
            aload 0 /* this */
            aload 4 /* out */
            iload 5 /* outOfs */
            invokevirtual com.oracle.security.ucrypto.NativeCipher.doFinal:([BI)I
            iadd
            istore 6 /* k */
         8: .line 393
            iload 6 /* k */
            ireturn
        end local 7 // int min
        end local 6 // int k
        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.NativeCipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lcom/oracle/security/ucrypto/NativeCipher;
            0    9     1      in  [B
            0    9     2   inOfs  I
            0    9     3   inLen  I
            0    9     4     out  [B
            0    9     5  outOfs  I
            1    9     6       k  I
            2    9     7     min  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=4, locals=4, args_size=2
        start local 0 // com.oracle.security.ucrypto.NativeCipher this
        start local 1 // java.security.Key key
         0: .line 401
            aconst_null
            astore 2 /* result */
        start local 2 // byte[] result
         1: .line 403
            aload 1 /* key */
            invokeinterface java.security.Key.getEncoded:()[B
            astore 3 /* encodedKey */
        start local 3 // byte[] encodedKey
         2: .line 404
            aload 3 /* encodedKey */
            ifnull 3
            aload 3 /* encodedKey */
            arraylength
            ifne 4
         3: .line 405
      StackMap locals: byte[] 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
         4: .line 408
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 3 /* encodedKey */
            iconst_0
            aload 3 /* encodedKey */
            arraylength
            invokevirtual com.oracle.security.ucrypto.NativeCipher.engineDoFinal:([BII)[B
            astore 2 /* result */
        end local 3 // byte[] encodedKey
         5: .line 409
            goto 8
      StackMap locals: com.oracle.security.ucrypto.NativeCipher java.security.Key byte[]
      StackMap stack: javax.crypto.BadPaddingException
         6: astore 3 /* e */
        start local 3 // javax.crypto.BadPaddingException e
         7: .line 411
            new com.oracle.security.ucrypto.UcryptoException
            dup
            ldc "Internal Error"
            aload 3 /* e */
            invokespecial com.oracle.security.ucrypto.UcryptoException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 3 // javax.crypto.BadPaddingException e
         8: .line 413
      StackMap locals:
      StackMap stack:
            aload 2 /* result */
            areturn
        end local 2 // byte[] result
        end local 1 // java.security.Key key
        end local 0 // com.oracle.security.ucrypto.NativeCipher this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    9     0        this  Lcom/oracle/security/ucrypto/NativeCipher;
            0    9     1         key  Ljava/security/Key;
            1    9     2      result  [B
            2    5     3  encodedKey  [B
            7    8     3           e  Ljavax/crypto/BadPaddingException;
      Exception table:
        from    to  target  type
           1     5       6  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=4, locals=6, args_size=4
        start local 0 // com.oracle.security.ucrypto.NativeCipher this
        start local 1 // byte[] wrappedKey
        start local 2 // java.lang.String wrappedKeyAlgorithm
        start local 3 // int wrappedKeyType
         0: .line 425
            aload 0 /* this */
            aload 1 /* wrappedKey */
            iconst_0
         1: .line 426
            aload 1 /* wrappedKey */
            arraylength
         2: .line 425
            invokevirtual com.oracle.security.ucrypto.NativeCipher.engineDoFinal:([BII)[B
            astore 4 /* encodedKey */
        start local 4 // byte[] encodedKey
         3: .line 427
            goto 7
        end local 4 // byte[] encodedKey
      StackMap locals:
      StackMap stack: java.lang.Exception
         4: astore 5 /* e */
        start local 5 // java.lang.Exception e
         5: .line 429
            new java.security.InvalidKeyException
            dup
            invokespecial java.security.InvalidKeyException.<init>:()V
            aload 5 /* e */
            invokevirtual java.security.InvalidKeyException.initCause:(Ljava/lang/Throwable;)Ljava/lang/Throwable;
         6: .line 428
            checkcast java.security.InvalidKeyException
            athrow
        end local 5 // java.lang.Exception e
        start local 4 // byte[] encodedKey
         7: .line 432
      StackMap locals: byte[]
      StackMap stack:
            iload 3 /* wrappedKeyType */
            aload 4 /* encodedKey */
            aload 2 /* wrappedKeyAlgorithm */
            invokestatic com.oracle.security.ucrypto.NativeCipher.constructKey:(I[BLjava/lang/String;)Ljava/security/Key;
            areturn
        end local 4 // byte[] encodedKey
        end local 3 // int wrappedKeyType
        end local 2 // java.lang.String wrappedKeyAlgorithm
        end local 1 // byte[] wrappedKey
        end local 0 // com.oracle.security.ucrypto.NativeCipher this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0    8     0                 this  Lcom/oracle/security/ucrypto/NativeCipher;
            0    8     1           wrappedKey  [B
            0    8     2  wrappedKeyAlgorithm  Ljava/lang/String;
            0    8     3       wrappedKeyType  I
            3    4     4           encodedKey  [B
            7    8     4           encodedKey  [B
            5    7     5                    e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0     3       4  Class java.lang.Exception
    Exceptions:
      throws java.security.InvalidKeyException, java.security.NoSuchAlgorithmException
    MethodParameters:
                     Name  Flags
      wrappedKey           
      wrappedKeyAlgorithm  
      wrappedKeyType       

  final int checkKey(java.security.Key);
    descriptor: (Ljava/security/Key;)I
    flags: (0x0010) ACC_FINAL
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // com.oracle.security.ucrypto.NativeCipher this
        start local 1 // java.security.Key key
         0: .line 436
            aload 1 /* key */
            ifnull 1
            aload 1 /* key */
            invokeinterface java.security.Key.getEncoded:()[B
            ifnonnull 2
         1: .line 437
      StackMap locals:
      StackMap stack:
            new java.security.InvalidKeyException
            dup
            ldc "Key cannot be null"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 440
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeCipher.keyAlgo:Ljava/lang/String;
            aload 1 /* key */
            invokeinterface java.security.Key.getAlgorithm:()Ljava/lang/String;
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ifne 6
         3: .line 441
            new java.security.InvalidKeyException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Key algorithm must be "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         4: .line 442
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeCipher.keyAlgo:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         5: .line 441
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 444
      StackMap locals:
      StackMap stack:
            ldc "RAW"
            aload 1 /* key */
            invokeinterface java.security.Key.getFormat:()Ljava/lang/String;
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ifne 8
         7: .line 445
            new java.security.InvalidKeyException
            dup
            ldc "Key format must be RAW"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 447
      StackMap locals:
      StackMap stack:
            aload 1 /* key */
            invokeinterface java.security.Key.getEncoded:()[B
            arraylength
            istore 2 /* keyLen */
        start local 2 // int keyLen
         9: .line 448
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeCipher.fixedKeySize:I
            iconst_m1
            if_icmpne 14
        10: .line 450
            iload 2 /* keyLen */
            bipush 16
            if_icmpeq 18
            iload 2 /* keyLen */
            bipush 24
            if_icmpeq 18
            iload 2 /* keyLen */
            bipush 32
            if_icmpeq 18
        11: .line 451
            new java.security.InvalidKeyException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Key size is not valid. Got key length of: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        12: .line 452
            iload 2 /* keyLen */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        13: .line 451
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
        14: .line 455
      StackMap locals: int
      StackMap stack:
            iload 2 /* keyLen */
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeCipher.fixedKeySize:I
            if_icmpeq 18
        15: .line 456
            new java.security.InvalidKeyException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Only "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeCipher.fixedKeySize:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
        16: .line 457
            ldc "-byte keys are accepted. Got: "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 2 /* keyLen */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        17: .line 456
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
        18: .line 461
      StackMap locals:
      StackMap stack:
            iload 2 /* keyLen */
            ireturn
        end local 2 // int keyLen
        end local 1 // java.security.Key key
        end local 0 // com.oracle.security.ucrypto.NativeCipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   19     0    this  Lcom/oracle/security/ucrypto/NativeCipher;
            0   19     1     key  Ljava/security/Key;
            9   19     2  keyLen  I
    Exceptions:
      throws java.security.InvalidKeyException
    MethodParameters:
      Name  Flags
      key   

  protected void reset(boolean);
    descriptor: (Z)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.security.ucrypto.NativeCipher this
        start local 1 // boolean doCancel
         0: .line 466
            aload 0 /* this */
            iconst_0
            putfield com.oracle.security.ucrypto.NativeCipher.initialized:Z
         1: .line 467
            aload 0 /* this */
            iconst_0
            putfield com.oracle.security.ucrypto.NativeCipher.bytesBuffered:I
         2: .line 468
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeCipher.pCtxt:Lcom/oracle/security/ucrypto/CipherContextRef;
            ifnull 5
         3: .line 469
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeCipher.pCtxt:Lcom/oracle/security/ucrypto/CipherContextRef;
            iload 1 /* doCancel */
            invokevirtual com.oracle.security.ucrypto.CipherContextRef.dispose:(Z)V
         4: .line 470
            aload 0 /* this */
            aconst_null
            putfield com.oracle.security.ucrypto.NativeCipher.pCtxt:Lcom/oracle/security/ucrypto/CipherContextRef;
         5: .line 472
      StackMap locals:
      StackMap stack:
            return
        end local 1 // boolean doCancel
        end local 0 // com.oracle.security.ucrypto.NativeCipher this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lcom/oracle/security/ucrypto/NativeCipher;
            0    6     1  doCancel  Z
    MethodParameters:
          Name  Flags
      doCancel  

  protected static native long nativeInit(int, boolean, byte[], byte[], int, byte[]);
    descriptor: (IZ[B[BI[B)J
    flags: (0x010c) ACC_PROTECTED, ACC_STATIC, ACC_NATIVE
    MethodParameters:
         Name  Flags
      mech     
      encrypt  
      key      
      iv       
      tagLen   
      aad      

  private static native int nativeUpdate(long, boolean, byte[], int, int, byte[], int);
    descriptor: (JZ[BII[BI)I
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    MethodParameters:
          Name  Flags
      pContext  
      encrypt   
      in        
      inOfs     
      inLen     
      out       
      outOfs    

  static native int nativeFinal(long, boolean, byte[], int);
    descriptor: (JZ[BI)I
    flags: (0x0108) ACC_STATIC, ACC_NATIVE
    MethodParameters:
          Name  Flags
      pContext  
      encrypt   
      out       
      outOfs    

  protected void ensureInitialized();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.oracle.security.ucrypto.NativeCipher this
         0: .line 498
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeCipher.initialized:Z
            ifne 4
         1: .line 499
            aload 0 /* this */
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeCipher.encrypt:Z
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeCipher.keyValue:[B
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeCipher.iv:[B
            invokevirtual com.oracle.security.ucrypto.NativeCipher.init:(Z[B[B)V
         2: .line 500
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeCipher.initialized:Z
            ifne 4
         3: .line 501
            new com.oracle.security.ucrypto.UcryptoException
            dup
            ldc "Cannot initialize Cipher"
            invokespecial com.oracle.security.ucrypto.UcryptoException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 504
      StackMap locals:
      StackMap stack:
            return
        end local 0 // com.oracle.security.ucrypto.NativeCipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/oracle/security/ucrypto/NativeCipher;

  protected int getOutputSizeByOperation(int, boolean);
    descriptor: (IZ)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.oracle.security.ucrypto.NativeCipher this
        start local 1 // int inLen
        start local 2 // boolean isDoFinal
         0: .line 507
            iload 1 /* inLen */
            ifgt 2
         1: .line 508
            iconst_0
            istore 1 /* inLen */
         2: .line 510
      StackMap locals:
      StackMap stack:
            iload 2 /* isDoFinal */
            ifne 4
            iload 1 /* inLen */
            ifne 4
         3: .line 511
            iconst_0
            ireturn
         4: .line 513
      StackMap locals:
      StackMap stack:
            iload 1 /* inLen */
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeCipher.bytesBuffered:I
            iadd
            ireturn
        end local 2 // boolean isDoFinal
        end local 1 // int inLen
        end local 0 // com.oracle.security.ucrypto.NativeCipher this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lcom/oracle/security/ucrypto/NativeCipher;
            0    5     1      inLen  I
            0    5     2  isDoFinal  Z
    MethodParameters:
           Name  Flags
      inLen      
      isDoFinal  

  protected void init(boolean, byte[], byte[]);
    descriptor: (Z[B[B)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=7, locals=6, args_size=4
        start local 0 // com.oracle.security.ucrypto.NativeCipher this
        start local 1 // boolean encrypt
        start local 2 // byte[] keyVal
        start local 3 // byte[] ivVal
         0: .line 518
            aload 0 /* this */
            iconst_1
            invokevirtual com.oracle.security.ucrypto.NativeCipher.reset:(Z)V
         1: .line 519
            aload 0 /* this */
            iload 1 /* encrypt */
            putfield com.oracle.security.ucrypto.NativeCipher.encrypt:Z
         2: .line 520
            aload 0 /* this */
            aload 2 /* keyVal */
            putfield com.oracle.security.ucrypto.NativeCipher.keyValue:[B
         3: .line 521
            aload 0 /* this */
            aload 3 /* ivVal */
            putfield com.oracle.security.ucrypto.NativeCipher.iv:[B
         4: .line 522
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeCipher.mech:Lcom/oracle/security/ucrypto/UcryptoMech;
            invokevirtual com.oracle.security.ucrypto.UcryptoMech.value:()I
            iload 1 /* encrypt */
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeCipher.keyValue:[B
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeCipher.iv:[B
            iconst_0
            aconst_null
            invokestatic com.oracle.security.ucrypto.NativeCipher.nativeInit:(IZ[B[BI[B)J
            lstore 4 /* pCtxtVal */
        start local 4 // long pCtxtVal
         5: .line 523
            aload 0 /* this */
            lload 4 /* pCtxtVal */
            lconst_0
            lcmp
            ifeq 6
            iconst_1
            goto 7
      StackMap locals: com.oracle.security.ucrypto.NativeCipher int byte[] byte[] long
      StackMap stack: com.oracle.security.ucrypto.NativeCipher
         6: iconst_0
      StackMap locals: com.oracle.security.ucrypto.NativeCipher int byte[] byte[] long
      StackMap stack: com.oracle.security.ucrypto.NativeCipher int
         7: putfield com.oracle.security.ucrypto.NativeCipher.initialized:Z
         8: .line 524
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeCipher.initialized:Z
            ifeq 11
         9: .line 525
            aload 0 /* this */
            new com.oracle.security.ucrypto.CipherContextRef
            dup
            aload 0 /* this */
            lload 4 /* pCtxtVal */
            iload 1 /* encrypt */
            invokespecial com.oracle.security.ucrypto.CipherContextRef.<init>:(Lcom/oracle/security/ucrypto/NativeCipher;JZ)V
            putfield com.oracle.security.ucrypto.NativeCipher.pCtxt:Lcom/oracle/security/ucrypto/CipherContextRef;
        10: .line 526
            goto 12
        11: .line 527
      StackMap locals:
      StackMap stack:
            new com.oracle.security.ucrypto.UcryptoException
            dup
            ldc "Cannot initialize Cipher"
            invokespecial com.oracle.security.ucrypto.UcryptoException.<init>:(Ljava/lang/String;)V
            athrow
        12: .line 529
      StackMap locals:
      StackMap stack:
            return
        end local 4 // long pCtxtVal
        end local 3 // byte[] ivVal
        end local 2 // byte[] keyVal
        end local 1 // boolean encrypt
        end local 0 // com.oracle.security.ucrypto.NativeCipher this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   13     0      this  Lcom/oracle/security/ucrypto/NativeCipher;
            0   13     1   encrypt  Z
            0   13     2    keyVal  [B
            0   13     3     ivVal  [B
            5   13     4  pCtxtVal  J
    MethodParameters:
         Name  Flags
      encrypt  
      keyVal   
      ivVal    

  private int update(byte[], int, int, byte[], int);
    descriptor: ([BII[BI)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=8, locals=7, args_size=6
        start local 0 // com.oracle.security.ucrypto.NativeCipher 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 533
            aload 0 /* this */
            invokevirtual com.oracle.security.ucrypto.NativeCipher.ensureInitialized:()V
         1: .line 534
            iload 3 /* inLen */
            ifgt 2
            iconst_0
            ireturn
         2: .line 536
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeCipher.pCtxt:Lcom/oracle/security/ucrypto/CipherContextRef;
            getfield com.oracle.security.ucrypto.CipherContextRef.id:J
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeCipher.encrypt:Z
            aload 1 /* in */
            iload 2 /* inOfs */
            iload 3 /* inLen */
            aload 4 /* out */
            iload 5 /* outOfs */
            invokestatic com.oracle.security.ucrypto.NativeCipher.nativeUpdate:(JZ[BII[BI)I
            istore 6 /* k */
        start local 6 // int k
         3: .line 537
            iload 6 /* k */
            ifge 6
         4: .line 538
            aload 0 /* this */
            iconst_0
            invokevirtual com.oracle.security.ucrypto.NativeCipher.reset:(Z)V
         5: .line 541
            new com.oracle.security.ucrypto.UcryptoException
            dup
            iload 6 /* k */
            ineg
            invokespecial com.oracle.security.ucrypto.UcryptoException.<init>:(I)V
            athrow
         6: .line 543
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.oracle.security.ucrypto.NativeCipher.bytesBuffered:I
            iload 3 /* inLen */
            iload 6 /* k */
            isub
            iadd
            putfield com.oracle.security.ucrypto.NativeCipher.bytesBuffered:I
         7: .line 544
            iload 6 /* k */
            ireturn
        end local 6 // int k
        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.NativeCipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lcom/oracle/security/ucrypto/NativeCipher;
            0    8     1      in  [B
            0    8     2   inOfs  I
            0    8     3   inLen  I
            0    8     4     out  [B
            0    8     5  outOfs  I
            3    8     6       k  I
    MethodParameters:
        Name  Flags
      in      
      inOfs   
      inLen   
      out     
      outOfs  

  private int doFinal(byte[], int);
    descriptor: ([BI)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=7, args_size=3
        start local 0 // com.oracle.security.ucrypto.NativeCipher this
        start local 1 // byte[] out
        start local 2 // int outOfs
         0: .line 551
            aload 0 /* this */
            invokevirtual com.oracle.security.ucrypto.NativeCipher.ensureInitialized:()V
         1: .line 553
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeCipher.pCtxt:Lcom/oracle/security/ucrypto/CipherContextRef;
            getfield com.oracle.security.ucrypto.CipherContextRef.id:J
            aload 0 /* this */
            getfield com.oracle.security.ucrypto.NativeCipher.encrypt:Z
            aload 1 /* out */
            iload 2 /* outOfs */
            invokestatic com.oracle.security.ucrypto.NativeCipher.nativeFinal:(JZ[BI)I
            istore 3 /* k */
        start local 3 // int k
         2: .line 554
            iload 3 /* k */
            ifge 9
         3: .line 555
            iload 3 /* k */
            ineg
            invokestatic com.oracle.security.ucrypto.UcryptoException.getErrorMessage:(I)Ljava/lang/String;
            astore 4 /* cause */
        start local 4 // java.lang.String cause
         4: .line 556
            aload 4 /* cause */
            ldc "_LEN_RANGE"
            invokevirtual java.lang.String.endsWith:(Ljava/lang/String;)Z
            ifeq 6
         5: .line 557
            new javax.crypto.IllegalBlockSizeException
            dup
            aload 4 /* cause */
            invokespecial javax.crypto.IllegalBlockSizeException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 558
      StackMap locals: int java.lang.String
      StackMap stack:
            aload 4 /* cause */
            ldc "_DATA_INVALID"
            invokevirtual java.lang.String.endsWith:(Ljava/lang/String;)Z
            ifeq 8
         7: .line 559
            new javax.crypto.BadPaddingException
            dup
            aload 4 /* cause */
            invokespecial javax.crypto.BadPaddingException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 561
      StackMap locals:
      StackMap stack:
            new com.oracle.security.ucrypto.UcryptoException
            dup
            iload 3 /* k */
            ineg
            invokespecial com.oracle.security.ucrypto.UcryptoException.<init>:(I)V
            athrow
        end local 4 // java.lang.String cause
         9: .line 564
      StackMap locals:
      StackMap stack:
            iload 3 /* k */
            istore 6
        10: .line 566
            aload 0 /* this */
            iconst_0
            invokevirtual com.oracle.security.ucrypto.NativeCipher.reset:(Z)V
        11: .line 564
            iload 6
            ireturn
        end local 3 // int k
        12: .line 565
      StackMap locals: com.oracle.security.ucrypto.NativeCipher byte[] int
      StackMap stack: java.lang.Throwable
            astore 5
        13: .line 566
            aload 0 /* this */
            iconst_0
            invokevirtual com.oracle.security.ucrypto.NativeCipher.reset:(Z)V
        14: .line 567
            aload 5
            athrow
        end local 2 // int outOfs
        end local 1 // byte[] out
        end local 0 // com.oracle.security.ucrypto.NativeCipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   15     0    this  Lcom/oracle/security/ucrypto/NativeCipher;
            0   15     1     out  [B
            0   15     2  outOfs  I
            2   12     3       k  I
            4    9     4   cause  Ljava/lang/String;
      Exception table:
        from    to  target  type
           0    10      12  any
    Exceptions:
      throws javax.crypto.IllegalBlockSizeException, javax.crypto.BadPaddingException
    MethodParameters:
        Name  Flags
      out     
      outOfs  
}
SourceFile: "NativeCipher.java"
NestMembers:
  com.oracle.security.ucrypto.NativeCipher$AesCbcNoPadding  com.oracle.security.ucrypto.NativeCipher$AesCfb128NoPadding  com.oracle.security.ucrypto.NativeCipher$AesCtrNoPadding  com.oracle.security.ucrypto.NativeCipher$AesEcbNoPadding
InnerClasses:
  public final AesCbcNoPadding = com.oracle.security.ucrypto.NativeCipher$AesCbcNoPadding of com.oracle.security.ucrypto.NativeCipher
  public final AesCfb128NoPadding = com.oracle.security.ucrypto.NativeCipher$AesCfb128NoPadding of com.oracle.security.ucrypto.NativeCipher
  public final AesCtrNoPadding = com.oracle.security.ucrypto.NativeCipher$AesCtrNoPadding of com.oracle.security.ucrypto.NativeCipher
  public final AesEcbNoPadding = com.oracle.security.ucrypto.NativeCipher$AesEcbNoPadding of com.oracle.security.ucrypto.NativeCipher