public class org.graalvm.compiler.hotspot.test.HotSpotCryptoSubstitutionTest extends org.graalvm.compiler.hotspot.test.HotSpotGraalCompilerTest
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.graalvm.compiler.hotspot.test.HotSpotCryptoSubstitutionTest
  super_class: org.graalvm.compiler.hotspot.test.HotSpotGraalCompilerTest
{
  javax.crypto.SecretKey aesKey;
    descriptor: Ljavax/crypto/SecretKey;
    flags: (0x0000) 

  javax.crypto.SecretKey desKey;
    descriptor: Ljavax/crypto/SecretKey;
    flags: (0x0000) 

  byte[] input;
    descriptor: [B
    flags: (0x0000) 

  java.io.ByteArrayOutputStream aesExpected;
    descriptor: Ljava/io/ByteArrayOutputStream;
    flags: (0x0000) 

  java.io.ByteArrayOutputStream desExpected;
    descriptor: Ljava/io/ByteArrayOutputStream;
    flags: (0x0000) 

  java.security.AlgorithmParameters algorithmParameters;
    descriptor: Ljava/security/AlgorithmParameters;
    flags: (0x0000) 

  protected jdk.vm.ci.code.InstalledCode addMethod(org.graalvm.compiler.debug.DebugContext, jdk.vm.ci.meta.ResolvedJavaMethod, org.graalvm.compiler.code.CompilationResult);
    descriptor: (Lorg/graalvm/compiler/debug/DebugContext;Ljdk/vm/ci/meta/ResolvedJavaMethod;Lorg/graalvm/compiler/code/CompilationResult;)Ljdk/vm/ci/code/InstalledCode;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.graalvm.compiler.hotspot.test.HotSpotCryptoSubstitutionTest this
        start local 1 // org.graalvm.compiler.debug.DebugContext debug
        start local 2 // jdk.vm.ci.meta.ResolvedJavaMethod method
        start local 3 // org.graalvm.compiler.code.CompilationResult compResult
         0: .line 53
            aload 0 /* this */
            invokevirtual org.graalvm.compiler.hotspot.test.HotSpotCryptoSubstitutionTest.getBackend:()Lorg/graalvm/compiler/core/target/Backend;
            aload 1 /* debug */
            aload 2 /* method */
            aload 3 /* compResult */
            invokevirtual org.graalvm.compiler.core.target.Backend.createDefaultInstalledCode:(Lorg/graalvm/compiler/debug/DebugContext;Ljdk/vm/ci/meta/ResolvedJavaMethod;Lorg/graalvm/compiler/code/CompilationResult;)Ljdk/vm/ci/code/InstalledCode;
            areturn
        end local 3 // org.graalvm.compiler.code.CompilationResult compResult
        end local 2 // jdk.vm.ci.meta.ResolvedJavaMethod method
        end local 1 // org.graalvm.compiler.debug.DebugContext debug
        end local 0 // org.graalvm.compiler.hotspot.test.HotSpotCryptoSubstitutionTest this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lorg/graalvm/compiler/hotspot/test/HotSpotCryptoSubstitutionTest;
            0    1     1       debug  Lorg/graalvm/compiler/debug/DebugContext;
            0    1     2      method  Ljdk/vm/ci/meta/ResolvedJavaMethod;
            0    1     3  compResult  Lorg/graalvm/compiler/code/CompilationResult;
    MethodParameters:
            Name  Flags
      debug       
      method      
      compResult  

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=1
        start local 0 // org.graalvm.compiler.hotspot.test.HotSpotCryptoSubstitutionTest this
         0: .line 62
            aload 0 /* this */
            invokespecial org.graalvm.compiler.hotspot.test.HotSpotGraalCompilerTest.<init>:()V
         1: .line 59
            aload 0 /* this */
            new java.io.ByteArrayOutputStream
            dup
            invokespecial java.io.ByteArrayOutputStream.<init>:()V
            putfield org.graalvm.compiler.hotspot.test.HotSpotCryptoSubstitutionTest.aesExpected:Ljava/io/ByteArrayOutputStream;
         2: .line 60
            aload 0 /* this */
            new java.io.ByteArrayOutputStream
            dup
            invokespecial java.io.ByteArrayOutputStream.<init>:()V
            putfield org.graalvm.compiler.hotspot.test.HotSpotCryptoSubstitutionTest.desExpected:Ljava/io/ByteArrayOutputStream;
         3: .line 63
            iconst_4
            newarray 8
            dup
            iconst_0
            iconst_4
            bastore
            dup
            iconst_1
            bipush 7
            bastore
            dup
            iconst_2
            iconst_1
            bastore
            dup
            iconst_3
            iconst_1
            bastore
            astore 1 /* seed */
        start local 1 // byte[] seed
         4: .line 64
            new java.security.SecureRandom
            dup
            aload 1 /* seed */
            invokespecial java.security.SecureRandom.<init>:([B)V
            astore 2 /* random */
        start local 2 // java.security.SecureRandom random
         5: .line 65
            ldc "AES"
            invokestatic javax.crypto.KeyGenerator.getInstance:(Ljava/lang/String;)Ljavax/crypto/KeyGenerator;
            astore 3 /* aesKeyGen */
        start local 3 // javax.crypto.KeyGenerator aesKeyGen
         6: .line 66
            ldc "DESede"
            invokestatic javax.crypto.KeyGenerator.getInstance:(Ljava/lang/String;)Ljavax/crypto/KeyGenerator;
            astore 4 /* desKeyGen */
        start local 4 // javax.crypto.KeyGenerator desKeyGen
         7: .line 67
            aload 3 /* aesKeyGen */
            sipush 128
            aload 2 /* random */
            invokevirtual javax.crypto.KeyGenerator.init:(ILjava/security/SecureRandom;)V
         8: .line 68
            aload 4 /* desKeyGen */
            sipush 168
            aload 2 /* random */
            invokevirtual javax.crypto.KeyGenerator.init:(ILjava/security/SecureRandom;)V
         9: .line 69
            aload 0 /* this */
            aload 3 /* aesKeyGen */
            invokevirtual javax.crypto.KeyGenerator.generateKey:()Ljavax/crypto/SecretKey;
            putfield org.graalvm.compiler.hotspot.test.HotSpotCryptoSubstitutionTest.aesKey:Ljavax/crypto/SecretKey;
        10: .line 70
            aload 0 /* this */
            aload 4 /* desKeyGen */
            invokevirtual javax.crypto.KeyGenerator.generateKey:()Ljavax/crypto/SecretKey;
            putfield org.graalvm.compiler.hotspot.test.HotSpotCryptoSubstitutionTest.desKey:Ljavax/crypto/SecretKey;
        11: .line 71
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokestatic org.graalvm.compiler.hotspot.test.HotSpotCryptoSubstitutionTest.readClassfile16:(Ljava/lang/Class;)[B
            putfield org.graalvm.compiler.hotspot.test.HotSpotCryptoSubstitutionTest.input:[B
        12: .line 73
            aload 0 /* this */
            getfield org.graalvm.compiler.hotspot.test.HotSpotCryptoSubstitutionTest.aesExpected:Ljava/io/ByteArrayOutputStream;
            aload 0 /* this */
            aload 0 /* this */
            getfield org.graalvm.compiler.hotspot.test.HotSpotCryptoSubstitutionTest.aesKey:Ljavax/crypto/SecretKey;
            ldc "AES/CBC/NoPadding"
            invokevirtual org.graalvm.compiler.hotspot.test.HotSpotCryptoSubstitutionTest.runEncryptDecrypt:(Ljavax/crypto/SecretKey;Ljava/lang/String;)[B
            invokevirtual java.io.ByteArrayOutputStream.write:([B)V
        13: .line 74
            aload 0 /* this */
            getfield org.graalvm.compiler.hotspot.test.HotSpotCryptoSubstitutionTest.aesExpected:Ljava/io/ByteArrayOutputStream;
            aload 0 /* this */
            aload 0 /* this */
            getfield org.graalvm.compiler.hotspot.test.HotSpotCryptoSubstitutionTest.aesKey:Ljavax/crypto/SecretKey;
            ldc "AES/CBC/PKCS5Padding"
            invokevirtual org.graalvm.compiler.hotspot.test.HotSpotCryptoSubstitutionTest.runEncryptDecrypt:(Ljavax/crypto/SecretKey;Ljava/lang/String;)[B
            invokevirtual java.io.ByteArrayOutputStream.write:([B)V
        14: .line 76
            aload 0 /* this */
            getfield org.graalvm.compiler.hotspot.test.HotSpotCryptoSubstitutionTest.desExpected:Ljava/io/ByteArrayOutputStream;
            aload 0 /* this */
            aload 0 /* this */
            getfield org.graalvm.compiler.hotspot.test.HotSpotCryptoSubstitutionTest.desKey:Ljavax/crypto/SecretKey;
            ldc "DESede/CBC/NoPadding"
            invokevirtual org.graalvm.compiler.hotspot.test.HotSpotCryptoSubstitutionTest.runEncryptDecrypt:(Ljavax/crypto/SecretKey;Ljava/lang/String;)[B
            invokevirtual java.io.ByteArrayOutputStream.write:([B)V
        15: .line 77
            aload 0 /* this */
            getfield org.graalvm.compiler.hotspot.test.HotSpotCryptoSubstitutionTest.desExpected:Ljava/io/ByteArrayOutputStream;
            aload 0 /* this */
            aload 0 /* this */
            getfield org.graalvm.compiler.hotspot.test.HotSpotCryptoSubstitutionTest.desKey:Ljavax/crypto/SecretKey;
            ldc "DESede/CBC/PKCS5Padding"
            invokevirtual org.graalvm.compiler.hotspot.test.HotSpotCryptoSubstitutionTest.runEncryptDecrypt:(Ljavax/crypto/SecretKey;Ljava/lang/String;)[B
            invokevirtual java.io.ByteArrayOutputStream.write:([B)V
        16: .line 78
            return
        end local 4 // javax.crypto.KeyGenerator desKeyGen
        end local 3 // javax.crypto.KeyGenerator aesKeyGen
        end local 2 // java.security.SecureRandom random
        end local 1 // byte[] seed
        end local 0 // org.graalvm.compiler.hotspot.test.HotSpotCryptoSubstitutionTest this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   17     0       this  Lorg/graalvm/compiler/hotspot/test/HotSpotCryptoSubstitutionTest;
            4   17     1       seed  [B
            5   17     2     random  Ljava/security/SecureRandom;
            6   17     3  aesKeyGen  Ljavax/crypto/KeyGenerator;
            7   17     4  desKeyGen  Ljavax/crypto/KeyGenerator;
    Exceptions:
      throws java.lang.Exception

  public void testAESCryptIntrinsics();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.hotspot.test.HotSpotCryptoSubstitutionTest this
         0: .line 80
            new java.lang.Error
            dup
            ldc "Unresolved compilation problems: \n\tTest cannot be resolved to a type\n\tAssert cannot be resolved\n"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // org.graalvm.compiler.hotspot.test.HotSpotCryptoSubstitutionTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/hotspot/test/HotSpotCryptoSubstitutionTest;
    Exceptions:
      throws java.lang.Exception
    RuntimeInvisibleAnnotations: 
      Test()

  public void testCipherBlockChainingIntrinsics();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.hotspot.test.HotSpotCryptoSubstitutionTest this
         0: .line 90
            new java.lang.Error
            dup
            ldc "Unresolved compilation problems: \n\tTest cannot be resolved to a type\n\tAssert cannot be resolved\n\tAssert cannot be resolved\n"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // org.graalvm.compiler.hotspot.test.HotSpotCryptoSubstitutionTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/hotspot/test/HotSpotCryptoSubstitutionTest;
    Exceptions:
      throws java.lang.Exception
    RuntimeInvisibleAnnotations: 
      Test()

  private boolean compileAndInstall(java.lang.String, java.lang.String[]);
    descriptor: (Ljava/lang/String;[Ljava/lang/String;)Z
    flags: (0x0082) ACC_PRIVATE, ACC_VARARGS
    Code:
      stack=3, locals=9, args_size=3
        start local 0 // org.graalvm.compiler.hotspot.test.HotSpotCryptoSubstitutionTest this
        start local 1 // java.lang.String className
        start local 2 // java.lang.String[] methodNames
         0: .line 114
            aload 0 /* this */
            invokevirtual org.graalvm.compiler.hotspot.test.HotSpotCryptoSubstitutionTest.runtime:()Lorg/graalvm/compiler/hotspot/HotSpotGraalRuntimeProvider;
            invokeinterface org.graalvm.compiler.hotspot.HotSpotGraalRuntimeProvider.getVMConfig:()Lorg/graalvm/compiler/hotspot/GraalHotSpotVMConfig;
            getfield org.graalvm.compiler.hotspot.GraalHotSpotVMConfig.useAESIntrinsics:Z
            ifne 2
         1: .line 115
            iconst_0
            ireturn
         2: .line 119
      StackMap locals:
      StackMap stack:
            aload 1 /* className */
            invokestatic java.lang.Class.forName:(Ljava/lang/String;)Ljava/lang/Class;
            astore 3 /* c */
        start local 3 // java.lang.Class c
         3: .line 120
            goto 6
        end local 3 // java.lang.Class c
      StackMap locals:
      StackMap stack: java.lang.ClassNotFoundException
         4: pop
         5: .line 123
            iconst_0
            ireturn
        start local 3 // java.lang.Class c
         6: .line 125
      StackMap locals: java.lang.Class
      StackMap stack:
            iconst_0
            istore 4 /* atLeastOneCompiled */
        start local 4 // boolean atLeastOneCompiled
         7: .line 126
            aload 2 /* methodNames */
            dup
            astore 8
            arraylength
            istore 7
            iconst_0
            istore 6
            goto 12
      StackMap locals: org.graalvm.compiler.hotspot.test.HotSpotCryptoSubstitutionTest java.lang.String java.lang.String[] java.lang.Class int top int int java.lang.String[]
      StackMap stack:
         8: aload 8
            iload 6
            aaload
            astore 5 /* methodName */
        start local 5 // java.lang.String methodName
         9: .line 127
            aload 0 /* this */
            aload 3 /* c */
            aload 5 /* methodName */
            invokevirtual org.graalvm.compiler.hotspot.test.HotSpotCryptoSubstitutionTest.compileAndInstallSubstitution:(Ljava/lang/Class;Ljava/lang/String;)Ljdk/vm/ci/code/InstalledCode;
            ifnull 11
        10: .line 128
            iconst_1
            istore 4 /* atLeastOneCompiled */
        end local 5 // java.lang.String methodName
        11: .line 126
      StackMap locals:
      StackMap stack:
            iinc 6 1
      StackMap locals:
      StackMap stack:
        12: iload 6
            iload 7
            if_icmplt 8
        13: .line 131
            iload 4 /* atLeastOneCompiled */
            ireturn
        end local 4 // boolean atLeastOneCompiled
        end local 3 // java.lang.Class c
        end local 2 // java.lang.String[] methodNames
        end local 1 // java.lang.String className
        end local 0 // org.graalvm.compiler.hotspot.test.HotSpotCryptoSubstitutionTest this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0   14     0                this  Lorg/graalvm/compiler/hotspot/test/HotSpotCryptoSubstitutionTest;
            0   14     1           className  Ljava/lang/String;
            0   14     2         methodNames  [Ljava/lang/String;
            3    4     3                   c  Ljava/lang/Class<*>;
            6   14     3                   c  Ljava/lang/Class<*>;
            7   14     4  atLeastOneCompiled  Z
            9   11     5          methodName  Ljava/lang/String;
      Exception table:
        from    to  target  type
           2     3       4  Class java.lang.ClassNotFoundException
    MethodParameters:
             Name  Flags
      className    
      methodNames  

  private byte[] encrypt(byte[], javax.crypto.SecretKey, java.lang.String);
    descriptor: ([BLjavax/crypto/SecretKey;Ljava/lang/String;)[B
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=8, args_size=4
        start local 0 // org.graalvm.compiler.hotspot.test.HotSpotCryptoSubstitutionTest this
        start local 1 // byte[] indata
        start local 2 // javax.crypto.SecretKey key
        start local 3 // java.lang.String algorithm
         0: .line 138
            aload 1 /* indata */
            astore 4 /* result */
        start local 4 // byte[] result
         1: .line 140
            aload 3 /* algorithm */
            invokestatic javax.crypto.Cipher.getInstance:(Ljava/lang/String;)Ljavax/crypto/Cipher;
            astore 5 /* c */
        start local 5 // javax.crypto.Cipher c
         2: .line 141
            aload 5 /* c */
            iconst_1
            aload 2 /* key */
            invokevirtual javax.crypto.Cipher.init:(ILjava/security/Key;)V
         3: .line 142
            aload 0 /* this */
            aload 5 /* c */
            invokevirtual javax.crypto.Cipher.getParameters:()Ljava/security/AlgorithmParameters;
            putfield org.graalvm.compiler.hotspot.test.HotSpotCryptoSubstitutionTest.algorithmParameters:Ljava/security/AlgorithmParameters;
         4: .line 144
            aload 5 /* c */
            aload 4 /* result */
            invokevirtual javax.crypto.Cipher.update:([B)[B
            astore 6 /* r1 */
        start local 6 // byte[] r1
         5: .line 145
            aload 5 /* c */
            invokevirtual javax.crypto.Cipher.doFinal:()[B
            astore 7 /* r2 */
        start local 7 // byte[] r2
         6: .line 147
            aload 6 /* r1 */
            arraylength
            aload 7 /* r2 */
            arraylength
            iadd
            newarray 8
            astore 4 /* result */
         7: .line 148
            aload 6 /* r1 */
            iconst_0
            aload 4 /* result */
            iconst_0
            aload 6 /* r1 */
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         8: .line 149
            aload 7 /* r2 */
            iconst_0
            aload 4 /* result */
            aload 6 /* r1 */
            arraylength
            aload 7 /* r2 */
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         9: .line 151
            aload 4 /* result */
            areturn
        end local 7 // byte[] r2
        end local 6 // byte[] r1
        end local 5 // javax.crypto.Cipher c
        end local 4 // byte[] result
        end local 3 // java.lang.String algorithm
        end local 2 // javax.crypto.SecretKey key
        end local 1 // byte[] indata
        end local 0 // org.graalvm.compiler.hotspot.test.HotSpotCryptoSubstitutionTest this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   10     0       this  Lorg/graalvm/compiler/hotspot/test/HotSpotCryptoSubstitutionTest;
            0   10     1     indata  [B
            0   10     2        key  Ljavax/crypto/SecretKey;
            0   10     3  algorithm  Ljava/lang/String;
            1   10     4     result  [B
            2   10     5          c  Ljavax/crypto/Cipher;
            5   10     6         r1  [B
            6   10     7         r2  [B
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
           Name  Flags
      indata     
      key        
      algorithm  

  private byte[] decrypt(byte[], javax.crypto.SecretKey, java.lang.String);
    descriptor: ([BLjavax/crypto/SecretKey;Ljava/lang/String;)[B
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=8, args_size=4
        start local 0 // org.graalvm.compiler.hotspot.test.HotSpotCryptoSubstitutionTest this
        start local 1 // byte[] indata
        start local 2 // javax.crypto.SecretKey key
        start local 3 // java.lang.String algorithm
         0: .line 156
            aload 1 /* indata */
            astore 4 /* result */
        start local 4 // byte[] result
         1: .line 158
            aload 3 /* algorithm */
            invokestatic javax.crypto.Cipher.getInstance:(Ljava/lang/String;)Ljavax/crypto/Cipher;
            astore 5 /* c */
        start local 5 // javax.crypto.Cipher c
         2: .line 159
            aload 5 /* c */
            iconst_2
            aload 2 /* key */
            aload 0 /* this */
            getfield org.graalvm.compiler.hotspot.test.HotSpotCryptoSubstitutionTest.algorithmParameters:Ljava/security/AlgorithmParameters;
            invokevirtual javax.crypto.Cipher.init:(ILjava/security/Key;Ljava/security/AlgorithmParameters;)V
         3: .line 161
            aload 5 /* c */
            aload 4 /* result */
            invokevirtual javax.crypto.Cipher.update:([B)[B
            astore 6 /* r1 */
        start local 6 // byte[] r1
         4: .line 162
            aload 5 /* c */
            invokevirtual javax.crypto.Cipher.doFinal:()[B
            astore 7 /* r2 */
        start local 7 // byte[] r2
         5: .line 164
            aload 6 /* r1 */
            arraylength
            aload 7 /* r2 */
            arraylength
            iadd
            newarray 8
            astore 4 /* result */
         6: .line 165
            aload 6 /* r1 */
            iconst_0
            aload 4 /* result */
            iconst_0
            aload 6 /* r1 */
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         7: .line 166
            aload 7 /* r2 */
            iconst_0
            aload 4 /* result */
            aload 6 /* r1 */
            arraylength
            aload 7 /* r2 */
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         8: .line 167
            aload 4 /* result */
            areturn
        end local 7 // byte[] r2
        end local 6 // byte[] r1
        end local 5 // javax.crypto.Cipher c
        end local 4 // byte[] result
        end local 3 // java.lang.String algorithm
        end local 2 // javax.crypto.SecretKey key
        end local 1 // byte[] indata
        end local 0 // org.graalvm.compiler.hotspot.test.HotSpotCryptoSubstitutionTest this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    9     0       this  Lorg/graalvm/compiler/hotspot/test/HotSpotCryptoSubstitutionTest;
            0    9     1     indata  [B
            0    9     2        key  Ljavax/crypto/SecretKey;
            0    9     3  algorithm  Ljava/lang/String;
            1    9     4     result  [B
            2    9     5          c  Ljavax/crypto/Cipher;
            4    9     6         r1  [B
            5    9     7         r2  [B
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
           Name  Flags
      indata     
      key        
      algorithm  

  private static byte[] readClassfile16(java.lang.Class<? extends org.graalvm.compiler.hotspot.test.HotSpotCryptoSubstitutionTest>);
    descriptor: (Ljava/lang/Class;)[B
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=5, args_size=1
        start local 0 // java.lang.Class c
         0: .line 171
            new java.lang.StringBuilder
            dup
            ldc "/"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* c */
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            bipush 46
            bipush 47
            invokevirtual java.lang.String.replace:(CC)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc ".class"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            astore 1 /* classFilePath */
        start local 1 // java.lang.String classFilePath
         1: .line 172
            aload 0 /* c */
            aload 1 /* classFilePath */
            invokevirtual java.lang.Class.getResourceAsStream:(Ljava/lang/String;)Ljava/io/InputStream;
            astore 2 /* stream */
        start local 2 // java.io.InputStream stream
         2: .line 173
            aload 2 /* stream */
            invokevirtual java.io.InputStream.available:()I
            istore 3 /* bytesToRead */
        start local 3 // int bytesToRead
         3: .line 174
            iload 3 /* bytesToRead */
            iload 3 /* bytesToRead */
            bipush 16
            irem
            isub
            istore 3 /* bytesToRead */
         4: .line 175
            iload 3 /* bytesToRead */
            newarray 8
            astore 4 /* classFile */
        start local 4 // byte[] classFile
         5: .line 176
            new java.io.DataInputStream
            dup
            aload 2 /* stream */
            invokespecial java.io.DataInputStream.<init>:(Ljava/io/InputStream;)V
            aload 4 /* classFile */
            invokevirtual java.io.DataInputStream.readFully:([B)V
         6: .line 177
            aload 4 /* classFile */
            areturn
        end local 4 // byte[] classFile
        end local 3 // int bytesToRead
        end local 2 // java.io.InputStream stream
        end local 1 // java.lang.String classFilePath
        end local 0 // java.lang.Class c
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    7     0              c  Ljava/lang/Class<+Lorg/graalvm/compiler/hotspot/test/HotSpotCryptoSubstitutionTest;>;
            1    7     1  classFilePath  Ljava/lang/String;
            2    7     2         stream  Ljava/io/InputStream;
            3    7     3    bytesToRead  I
            5    7     4      classFile  [B
    Exceptions:
      throws java.io.IOException
    Signature: (Ljava/lang/Class<+Lorg/graalvm/compiler/hotspot/test/HotSpotCryptoSubstitutionTest;>;)[B
    MethodParameters:
      Name  Flags
      c     

  public byte[] runEncryptDecrypt(javax.crypto.SecretKey, java.lang.String);
    descriptor: (Ljavax/crypto/SecretKey;Ljava/lang/String;)[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.graalvm.compiler.hotspot.test.HotSpotCryptoSubstitutionTest this
         0: .line 184
            new java.lang.Error
            dup
            ldc "Unresolved compilation problem: \n\tAssert cannot be resolved\n"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // org.graalvm.compiler.hotspot.test.HotSpotCryptoSubstitutionTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/hotspot/test/HotSpotCryptoSubstitutionTest;
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
           Name  Flags
      key        
      algorithm  
}
SourceFile: "HotSpotCryptoSubstitutionTest.java"