public class org.jasypt.salt.ByteArrayFixedSaltGenerator implements org.jasypt.salt.FixedSaltGenerator
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.jasypt.salt.ByteArrayFixedSaltGenerator
  super_class: java.lang.Object
{
  private final byte[] salt;
    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.salt.ByteArrayFixedSaltGenerator this
        start local 1 // byte[] salt
         0: .line 53
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 54
            aload 1 /* salt */
            ldc "Salt 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 /* salt */
            invokevirtual byte[].clone:()Ljava/lang/Object;
            checkcast byte[]
            putfield org.jasypt.salt.ByteArrayFixedSaltGenerator.salt:[B
         3: .line 56
            return
        end local 1 // byte[] salt
        end local 0 // org.jasypt.salt.ByteArrayFixedSaltGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/jasypt/salt/ByteArrayFixedSaltGenerator;
            0    4     1  salt  [B
    MethodParameters:
      Name  Flags
      salt  final

  public byte[] generateSalt(int);
    descriptor: (I)[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.jasypt.salt.ByteArrayFixedSaltGenerator this
        start local 1 // int lengthBytes
         0: .line 66
            aload 0 /* this */
            getfield org.jasypt.salt.ByteArrayFixedSaltGenerator.salt:[B
            arraylength
            iload 1 /* lengthBytes */
            if_icmpge 4
         1: .line 67
            new org.jasypt.exceptions.EncryptionInitializationException
            dup
         2: .line 68
            ldc "Requested salt 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 /* generatedSalt */
        start local 2 // byte[] generatedSalt
         5: .line 71
            aload 0 /* this */
            getfield org.jasypt.salt.ByteArrayFixedSaltGenerator.salt:[B
            iconst_0
            aload 2 /* generatedSalt */
            iconst_0
            iload 1 /* lengthBytes */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         6: .line 72
            aload 2 /* generatedSalt */
            areturn
        end local 2 // byte[] generatedSalt
        end local 1 // int lengthBytes
        end local 0 // org.jasypt.salt.ByteArrayFixedSaltGenerator this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    7     0           this  Lorg/jasypt/salt/ByteArrayFixedSaltGenerator;
            0    7     1    lengthBytes  I
            5    7     2  generatedSalt  [B
    MethodParameters:
             Name  Flags
      lengthBytes  final

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