Interface Blake2b.Spec

  • Enclosing interface:
    Blake2b

    public static interface Blake2b.Spec
    • Field Detail

      • max_digest_bytes

        static final int max_digest_bytes
        maximum digest size
        See Also:
        Constant Field Values
      • max_personalization_bytes

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

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

        static final int max_tree_fantout
        max tree fanout value
        See Also:
        Constant Field Values
      • 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:
        Constant Field Values
      • 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:
        Constant Field Values
      • max_tree_inner_length

        static final int max_tree_inner_length
        max tree inner length value
        See Also:
        Constant Field Values
      • 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