Interface Blake2b.Spec
-
- Enclosing interface:
- Blake2b
public static interface Blake2b.Spec
-
-
Field Summary
Fields Modifier and Type Field Description static int
block_bytes
pblock size of blake2bstatic long[]
IV
initialization values map ref-Spec IV[i] -> slice iv[i*8:i*8+7]static int
max_digest_bytes
maximum digest sizestatic int
max_key_bytes
maximum key siestatic long
max_node_offset
max node offset value.static int
max_personalization_bytes
maximum personalization string sizestatic int
max_salt_bytes
maximum salt sizestatic int
max_tree_depth
max tree depth valuestatic int
max_tree_fantout
max tree fanout valuestatic int
max_tree_inner_length
max tree inner length valuestatic 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.static int
param_bytes
pblock size of blake2bstatic byte[][]
sigma
sigma per spec used in compress func generation - for reference onlystatic int
state_space_len
length of h space vector array
-
-
-
Field Detail
-
param_bytes
static final int param_bytes
pblock size of blake2b- See Also:
- Constant Field Values
-
block_bytes
static final int block_bytes
pblock size of blake2b- See Also:
- Constant Field Values
-
max_digest_bytes
static final int max_digest_bytes
maximum digest size- See Also:
- Constant Field Values
-
max_key_bytes
static final int max_key_bytes
maximum key sie- See Also:
- Constant Field Values
-
max_salt_bytes
static final int max_salt_bytes
maximum salt 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_depth
static final int max_tree_depth
max tree depth 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
-
-