/third_party/python/Modules/_blake2/clinic/ |
D | blake2b_impl.c.h | 18 unsigned long long node_offset, int node_depth, 40 int node_depth = 0; in py_blake2b_new() local 138 node_depth = _PyLong_AsInt(fastargs[9]); in py_blake2b_new() 139 if (node_depth == -1 && PyErr_Occurred()) { in py_blake2b_new() 169 …est_size, &key, &salt, &person, fanout, depth, leaf_size, node_offset, node_depth, inner_size, las… in py_blake2b_new()
|
D | blake2s_impl.c.h | 18 unsigned long long node_offset, int node_depth, 40 int node_depth = 0; in py_blake2s_new() local 138 node_depth = _PyLong_AsInt(fastargs[9]); in py_blake2s_new() 139 if (node_depth == -1 && PyErr_Occurred()) { in py_blake2s_new() 169 …est_size, &key, &salt, &person, fanout, depth, leaf_size, node_offset, node_depth, inner_size, las… in py_blake2s_new()
|
/third_party/python/Modules/_blake2/ |
D | blake2b_impl.c | 92 unsigned long long node_offset, int node_depth, in py_blake2b_new_impl() argument 172 if (node_depth < 0 || node_depth > 255) { in py_blake2b_new_impl() 177 self->param.node_depth = node_depth; in py_blake2b_new_impl()
|
D | blake2s_impl.c | 91 unsigned long long node_offset, int node_depth, in py_blake2s_new_impl() argument 171 if (node_depth < 0 || node_depth > 255) { in py_blake2s_new_impl() 176 self->param.node_depth = node_depth; in py_blake2s_new_impl()
|
/third_party/python/Modules/_blake2/impl/ |
D | blake2b-ref.c | 115 static inline int blake2b_param_set_node_depth( blake2b_param *P, const uint8_t node_depth ) in blake2b_param_set_node_depth() argument 117 P->node_depth = node_depth; in blake2b_param_set_node_depth() 189 P->node_depth = 0; in blake2b_init() 212 P->node_depth = 0; in blake2b_init_key()
|
D | blake2s-ref.c | 108 static inline int blake2s_param_set_node_depth( blake2s_param *P, const uint8_t node_depth ) in blake2s_param_set_node_depth() argument 110 P->node_depth = node_depth; in blake2s_param_set_node_depth() 183 P->node_depth = 0; in blake2s_init() 205 P->node_depth = 0; in blake2s_init_key()
|
D | blake2s.c | 145 static inline int blake2s_param_set_node_depth( blake2s_param *P, const uint8_t node_depth ) in blake2s_param_set_node_depth() argument 147 P->node_depth = node_depth; in blake2s_param_set_node_depth()
|
D | blake2.h | 79 uint8_t node_depth; // 15 member 105 uint8_t node_depth; // 17 member
|
D | blake2b.c | 157 static inline int blake2b_param_set_node_depth( blake2b_param *P, const uint8_t node_depth ) in blake2b_param_set_node_depth() argument 159 P->node_depth = node_depth; in blake2b_param_set_node_depth()
|
D | blake2bp.c | 37 P->node_depth = 0; in blake2bp_init_leaf() 56 P->node_depth = 1; in blake2bp_init_root()
|
D | blake2sp.c | 36 P->node_depth = 0; in blake2sp_init_leaf() 54 P->node_depth = 1; in blake2sp_init_root()
|
/third_party/node/deps/openssl/openssl/providers/implementations/include/prov/ |
D | blake2.h | 37 uint8_t node_depth; /* 15 */ member 61 uint8_t node_depth; /* 17 */ member
|
/third_party/openssl/providers/implementations/include/prov/ |
D | blake2.h | 37 uint8_t node_depth; /* 15 */ member 61 uint8_t node_depth; /* 17 */ member
|
/third_party/python/Lib/test/ |
D | test_hashlib.py | 641 constructor(node_depth=i) 642 self.assertRaises(ValueError, constructor, node_depth=-1) 643 self.assertRaises(ValueError, constructor, node_depth=256) 674 node_depth=1, 736 node_depth=6, 779 node_depth=6,
|
/third_party/python/Doc/library/ |
D | hashlib.rst | 326 node_depth=0, inner_size=0, last_node=False, \ 331 node_depth=0, inner_size=0, last_node=False, \ 385 * *node_depth*: node depth (0 to 255, 0 for leaves, or in sequential mode). 681 ... node_offset=0, node_depth=0, last_node=False) 685 ... node_offset=1, node_depth=0, last_node=True) 689 ... node_offset=0, node_depth=1, last_node=True)
|
/third_party/openssl/providers/implementations/digests/ |
D | blake2s_prov.c | 86 P->node_depth = 0; in ossl_blake2s_param_init()
|
D | blake2b_prov.c | 91 P->node_depth = 0; in ossl_blake2b_param_init()
|
/third_party/node/deps/openssl/openssl/providers/implementations/digests/ |
D | blake2b_prov.c | 91 P->node_depth = 0; in ossl_blake2b_param_init()
|
D | blake2s_prov.c | 86 P->node_depth = 0; in ossl_blake2s_param_init()
|