public class org.jasypt.iv.ByteArrayFixedIvGenerator implements org.jasypt.iv.FixedIvGenerator
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.jasypt.iv.ByteArrayFixedIvGenerator
  super_class: java.lang.Object
{
  private final byte[] iv;
    descriptor: [B
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(byte[]);
    descriptor: ([B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jasypt.iv.ByteArrayFixedIvGenerator this
        start local 1 // byte[] iv
         0: .line 53
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 54
            aload 1 /* iv */
            ldc "Initialization vector cannot be set null"
            invokestatic org.jasypt.commons.CommonUtils.validateNotNull:(Ljava/lang/Object;Ljava/lang/String;)V
         2: .line 55
            aload 0 /* this */
            aload 1 /* iv */
            invokevirtual byte[].clone:()Ljava/lang/Object;
            checkcast byte[]
            putfield org.jasypt.iv.ByteArrayFixedIvGenerator.iv:[B
         3: .line 56
            return
        end local 1 // byte[] iv
        end local 0 // org.jasypt.iv.ByteArrayFixedIvGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/jasypt/iv/ByteArrayFixedIvGenerator;
            0    4     1    iv  [B
    MethodParameters:
      Name  Flags
      iv    final

  public byte[] generateIv(int);
    descriptor: (I)[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.jasypt.iv.ByteArrayFixedIvGenerator this
        start local 1 // int lengthBytes
         0: .line 66
            aload 0 /* this */
            getfield org.jasypt.iv.ByteArrayFixedIvGenerator.iv:[B
            arraylength
            iload 1 /* lengthBytes */
            if_icmpge 4
         1: .line 67
            new org.jasypt.exceptions.EncryptionInitializationException
            dup
         2: .line 68
            ldc "Requested initialization vector larger than set"
         3: .line 67
            invokespecial org.jasypt.exceptions.EncryptionInitializationException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 70
      StackMap locals:
      StackMap stack:
            iload 1 /* lengthBytes */
            newarray 8
            astore 2 /* generatedIv */
        start local 2 // byte[] generatedIv
         5: .line 71
            aload 0 /* this */
            getfield org.jasypt.iv.ByteArrayFixedIvGenerator.iv:[B
            iconst_0
            aload 2 /* generatedIv */
            iconst_0
            iload 1 /* lengthBytes */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         6: .line 72
            aload 2 /* generatedIv */
            areturn
        end local 2 // byte[] generatedIv
        end local 1 // int lengthBytes
        end local 0 // org.jasypt.iv.ByteArrayFixedIvGenerator this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    7     0         this  Lorg/jasypt/iv/ByteArrayFixedIvGenerator;
            0    7     1  lengthBytes  I
            5    7     2  generatedIv  [B
    MethodParameters:
             Name  Flags
      lengthBytes  final

  public boolean includePlainIvInEncryptionResults();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jasypt.iv.ByteArrayFixedIvGenerator this
         0: .line 84
            iconst_0
            ireturn
        end local 0 // org.jasypt.iv.ByteArrayFixedIvGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jasypt/iv/ByteArrayFixedIvGenerator;
}
SourceFile: "ByteArrayFixedIvGenerator.java"