Interface Blake2b.Spec

Enclosing interface:
Blake2b

public static interface Blake2b.Spec
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
    pblock size of blake2b
    static final long[]
    initialization values map ref-Spec IV[i] slice iv[i*8:i*8+7]
    static final int
    maximum digest size
    static final int
    maximum key sie
    static final long
    max node offset value.
    static final int
    maximum personalization string size
    static final int
    maximum salt size
    static final int
    max tree depth value
    static final int
    max tree fanout value
    static final int
    max tree inner length value
    static final int
    max tree leaf length value.Note that this has uint32 semantics and thus 0xFFFFFFFF is used as max value limit.
    static final int
    pblock size of blake2b
    static final byte[][]
    sigma per spec used in compress func generation - for reference only
    static final int
    length of h space vector array
  • Field Details

    • param_bytes

      static final int param_bytes
      pblock size of blake2b
      See Also:
    • block_bytes

      static final int block_bytes
      pblock size of blake2b
      See Also:
    • max_digest_bytes

      static final int max_digest_bytes
      maximum digest size
      See Also:
    • max_key_bytes

      static final int max_key_bytes
      maximum key sie
      See Also:
    • max_salt_bytes

      static final int max_salt_bytes
      maximum salt size
      See Also:
    • max_personalization_bytes

      static final int max_personalization_bytes
      maximum personalization string size
      See Also:
    • state_space_len

      static final int state_space_len
      length of h space vector array
      See Also:
    • max_tree_fantout

      static final int max_tree_fantout
      max tree fanout value
      See Also:
    • max_tree_depth

      static final int max_tree_depth
      max tree depth value
      See Also:
    • max_tree_leaf_length

      static final int max_tree_leaf_length
      max tree leaf length value.Note that this has uint32 semantics and thus 0xFFFFFFFF is used as max value limit.
      See Also:
    • max_node_offset

      static final long max_node_offset
      max node offset value. Note that this has uint64 semantics and thus 0xFFFFFFFFFFFFFFFFL is used as max value limit.
      See Also:
    • max_tree_inner_length

      static final int max_tree_inner_length
      max tree inner length value
      See Also:
    • IV

      static final long[] IV
      initialization values map ref-Spec IV[i] slice iv[i*8:i*8+7]
    • sigma

      static final byte[][] sigma
      sigma per spec used in compress func generation - for reference only