final class org.springframework.security.crypto.keygen.SharedKeyGenerator implements org.springframework.security.crypto.keygen.BytesKeyGenerator
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: org.springframework.security.crypto.keygen.SharedKeyGenerator
  super_class: java.lang.Object
{
  private byte[] sharedKey;
    descriptor: [B
    flags: (0x0002) ACC_PRIVATE

  void <init>(byte[]);
    descriptor: ([B)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.security.crypto.keygen.SharedKeyGenerator this
        start local 1 // byte[] sharedKey
         0: .line 30
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 31
            aload 0 /* this */
            aload 1 /* sharedKey */
            putfield org.springframework.security.crypto.keygen.SharedKeyGenerator.sharedKey:[B
         2: .line 32
            return
        end local 1 // byte[] sharedKey
        end local 0 // org.springframework.security.crypto.keygen.SharedKeyGenerator this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lorg/springframework/security/crypto/keygen/SharedKeyGenerator;
            0    3     1  sharedKey  [B
    MethodParameters:
           Name  Flags
      sharedKey  

  public int getKeyLength();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.security.crypto.keygen.SharedKeyGenerator this
         0: .line 36
            aload 0 /* this */
            getfield org.springframework.security.crypto.keygen.SharedKeyGenerator.sharedKey:[B
            arraylength
            ireturn
        end local 0 // org.springframework.security.crypto.keygen.SharedKeyGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/security/crypto/keygen/SharedKeyGenerator;

  public byte[] generateKey();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.security.crypto.keygen.SharedKeyGenerator this
         0: .line 41
            aload 0 /* this */
            getfield org.springframework.security.crypto.keygen.SharedKeyGenerator.sharedKey:[B
            areturn
        end local 0 // org.springframework.security.crypto.keygen.SharedKeyGenerator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/security/crypto/keygen/SharedKeyGenerator;
}
SourceFile: "SharedKeyGenerator.java"