Use standard byte conversion fns in lms
Signed-off-by: Dave Rodgman <dave.rodgman@arm.com>
This commit is contained in:
parent
a3d0f61aec
commit
df4d42106a
3 changed files with 24 additions and 109 deletions
|
@ -69,29 +69,6 @@ static const unsigned char D_MESSAGE_CONSTANT_BYTES[D_CONST_LEN] = { 0x81, 0x81
|
||||||
int (*mbedtls_lmots_sign_private_key_invalidated_hook)(unsigned char *) = NULL;
|
int (*mbedtls_lmots_sign_private_key_invalidated_hook)(unsigned char *) = NULL;
|
||||||
#endif /* defined(MBEDTLS_TEST_HOOKS) */
|
#endif /* defined(MBEDTLS_TEST_HOOKS) */
|
||||||
|
|
||||||
void mbedtls_lms_unsigned_int_to_network_bytes(unsigned int val, size_t len,
|
|
||||||
unsigned char *bytes)
|
|
||||||
{
|
|
||||||
size_t idx;
|
|
||||||
|
|
||||||
for (idx = 0; idx < len; idx++) {
|
|
||||||
bytes[idx] = (val >> ((len - 1 - idx) * 8)) & 0xFF;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
unsigned int mbedtls_lms_network_bytes_to_unsigned_int(size_t len,
|
|
||||||
const unsigned char *bytes)
|
|
||||||
{
|
|
||||||
size_t idx;
|
|
||||||
unsigned int val = 0;
|
|
||||||
|
|
||||||
for (idx = 0; idx < len; idx++) {
|
|
||||||
val |= ((unsigned int) bytes[idx]) << (8 * (len - 1 - idx));
|
|
||||||
}
|
|
||||||
|
|
||||||
return val;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Calculate the checksum digits that are appended to the end of the LMOTS digit
|
/* Calculate the checksum digits that are appended to the end of the LMOTS digit
|
||||||
* string. See NIST SP800-208 section 3.1 or RFC8554 Algorithm 2 for details of
|
* string. See NIST SP800-208 section 3.1 or RFC8554 Algorithm 2 for details of
|
||||||
* the checksum algorithm.
|
* the checksum algorithm.
|
||||||
|
@ -191,8 +168,7 @@ static int create_digit_array_with_checksum(const mbedtls_lmots_parameters_t *pa
|
||||||
}
|
}
|
||||||
|
|
||||||
checksum = lmots_checksum_calculate(params, out);
|
checksum = lmots_checksum_calculate(params, out);
|
||||||
mbedtls_lms_unsigned_int_to_network_bytes(checksum, CHECKSUM_LEN,
|
MBEDTLS_PUT_UINT16_BE(checksum, out, MBEDTLS_LMOTS_N_HASH_LEN(params->type));
|
||||||
out + MBEDTLS_LMOTS_N_HASH_LEN(params->type));
|
|
||||||
|
|
||||||
exit:
|
exit:
|
||||||
psa_hash_abort(&op);
|
psa_hash_abort(&op);
|
||||||
|
@ -281,17 +257,13 @@ static int hash_digit_array(const mbedtls_lmots_parameters_t *params,
|
||||||
goto exit;
|
goto exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
mbedtls_lms_unsigned_int_to_network_bytes(i_digit_idx,
|
MBEDTLS_PUT_UINT16_BE(i_digit_idx, i_digit_idx_bytes, 0);
|
||||||
I_DIGIT_IDX_LEN,
|
|
||||||
i_digit_idx_bytes);
|
|
||||||
status = psa_hash_update(&op, i_digit_idx_bytes, I_DIGIT_IDX_LEN);
|
status = psa_hash_update(&op, i_digit_idx_bytes, I_DIGIT_IDX_LEN);
|
||||||
if (status != PSA_SUCCESS) {
|
if (status != PSA_SUCCESS) {
|
||||||
goto exit;
|
goto exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
mbedtls_lms_unsigned_int_to_network_bytes(j_hash_idx,
|
j_hash_idx_bytes[0] = (uint8_t) j_hash_idx;
|
||||||
J_HASH_IDX_LEN,
|
|
||||||
j_hash_idx_bytes);
|
|
||||||
status = psa_hash_update(&op, j_hash_idx_bytes, J_HASH_IDX_LEN);
|
status = psa_hash_update(&op, j_hash_idx_bytes, J_HASH_IDX_LEN);
|
||||||
if (status != PSA_SUCCESS) {
|
if (status != PSA_SUCCESS) {
|
||||||
goto exit;
|
goto exit;
|
||||||
|
@ -425,11 +397,8 @@ int mbedtls_lmots_import_public_key(mbedtls_lmots_public_t *ctx,
|
||||||
return MBEDTLS_ERR_LMS_BAD_INPUT_DATA;
|
return MBEDTLS_ERR_LMS_BAD_INPUT_DATA;
|
||||||
}
|
}
|
||||||
|
|
||||||
ctx->params.type =
|
ctx->params.type = (mbedtls_lmots_algorithm_type_t)
|
||||||
(mbedtls_lmots_algorithm_type_t) mbedtls_lms_network_bytes_to_unsigned_int(
|
MBEDTLS_GET_UINT32_BE(key, MBEDTLS_LMOTS_SIG_TYPE_OFFSET);
|
||||||
MBEDTLS_LMOTS_TYPE_LEN,
|
|
||||||
key +
|
|
||||||
MBEDTLS_LMOTS_SIG_TYPE_OFFSET);
|
|
||||||
|
|
||||||
if (key_len != MBEDTLS_LMOTS_PUBLIC_KEY_LEN(ctx->params.type)) {
|
if (key_len != MBEDTLS_LMOTS_PUBLIC_KEY_LEN(ctx->params.type)) {
|
||||||
return MBEDTLS_ERR_LMS_BAD_INPUT_DATA;
|
return MBEDTLS_ERR_LMS_BAD_INPUT_DATA;
|
||||||
|
@ -464,9 +433,7 @@ int mbedtls_lmots_export_public_key(const mbedtls_lmots_public_t *ctx,
|
||||||
return MBEDTLS_ERR_LMS_BAD_INPUT_DATA;
|
return MBEDTLS_ERR_LMS_BAD_INPUT_DATA;
|
||||||
}
|
}
|
||||||
|
|
||||||
mbedtls_lms_unsigned_int_to_network_bytes(ctx->params.type,
|
MBEDTLS_PUT_UINT32_BE(ctx->params.type, key, MBEDTLS_LMOTS_SIG_TYPE_OFFSET);
|
||||||
MBEDTLS_LMOTS_TYPE_LEN,
|
|
||||||
key + MBEDTLS_LMOTS_SIG_TYPE_OFFSET);
|
|
||||||
|
|
||||||
memcpy(key + PUBLIC_KEY_I_KEY_ID_OFFSET,
|
memcpy(key + PUBLIC_KEY_I_KEY_ID_OFFSET,
|
||||||
ctx->params.I_key_identifier,
|
ctx->params.I_key_identifier,
|
||||||
|
@ -559,9 +526,7 @@ int mbedtls_lmots_verify(const mbedtls_lmots_public_t *ctx,
|
||||||
return MBEDTLS_ERR_LMS_VERIFY_FAILED;
|
return MBEDTLS_ERR_LMS_VERIFY_FAILED;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (mbedtls_lms_network_bytes_to_unsigned_int(MBEDTLS_LMOTS_TYPE_LEN,
|
if (MBEDTLS_GET_UINT32_BE(sig, MBEDTLS_LMOTS_SIG_TYPE_OFFSET) != MBEDTLS_LMOTS_SHA256_N32_W8) {
|
||||||
sig + MBEDTLS_LMOTS_SIG_TYPE_OFFSET) !=
|
|
||||||
MBEDTLS_LMOTS_SHA256_N32_W8) {
|
|
||||||
return MBEDTLS_ERR_LMS_VERIFY_FAILED;
|
return MBEDTLS_ERR_LMS_VERIFY_FAILED;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -607,7 +572,7 @@ int mbedtls_lmots_generate_private_key(mbedtls_lmots_private_t *ctx,
|
||||||
size_t output_hash_len;
|
size_t output_hash_len;
|
||||||
unsigned int i_digit_idx;
|
unsigned int i_digit_idx;
|
||||||
unsigned char i_digit_idx_bytes[2];
|
unsigned char i_digit_idx_bytes[2];
|
||||||
unsigned char const_bytes[1];
|
unsigned char const_bytes[1] = { 0xFF };
|
||||||
|
|
||||||
if (ctx->have_private_key) {
|
if (ctx->have_private_key) {
|
||||||
return MBEDTLS_ERR_LMS_BAD_INPUT_DATA;
|
return MBEDTLS_ERR_LMS_BAD_INPUT_DATA;
|
||||||
|
@ -623,12 +588,7 @@ int mbedtls_lmots_generate_private_key(mbedtls_lmots_private_t *ctx,
|
||||||
I_key_identifier,
|
I_key_identifier,
|
||||||
sizeof(ctx->params.I_key_identifier));
|
sizeof(ctx->params.I_key_identifier));
|
||||||
|
|
||||||
mbedtls_lms_unsigned_int_to_network_bytes(q_leaf_identifier,
|
MBEDTLS_PUT_UINT32_BE(q_leaf_identifier, ctx->params.q_leaf_identifier, 0);
|
||||||
MBEDTLS_LMOTS_Q_LEAF_ID_LEN,
|
|
||||||
ctx->params.q_leaf_identifier);
|
|
||||||
|
|
||||||
mbedtls_lms_unsigned_int_to_network_bytes(0xFF, sizeof(const_bytes),
|
|
||||||
const_bytes);
|
|
||||||
|
|
||||||
for (i_digit_idx = 0;
|
for (i_digit_idx = 0;
|
||||||
i_digit_idx < MBEDTLS_LMOTS_P_SIG_DIGIT_COUNT(ctx->params.type);
|
i_digit_idx < MBEDTLS_LMOTS_P_SIG_DIGIT_COUNT(ctx->params.type);
|
||||||
|
@ -652,8 +612,7 @@ int mbedtls_lmots_generate_private_key(mbedtls_lmots_private_t *ctx,
|
||||||
goto exit;
|
goto exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
mbedtls_lms_unsigned_int_to_network_bytes(i_digit_idx, I_DIGIT_IDX_LEN,
|
MBEDTLS_PUT_UINT16_BE(i_digit_idx, i_digit_idx_bytes, 0);
|
||||||
i_digit_idx_bytes);
|
|
||||||
status = psa_hash_update(&op, i_digit_idx_bytes, I_DIGIT_IDX_LEN);
|
status = psa_hash_update(&op, i_digit_idx_bytes, I_DIGIT_IDX_LEN);
|
||||||
if (status != PSA_SUCCESS) {
|
if (status != PSA_SUCCESS) {
|
||||||
goto exit;
|
goto exit;
|
||||||
|
@ -774,9 +733,7 @@ int mbedtls_lmots_sign(mbedtls_lmots_private_t *ctx,
|
||||||
goto exit;
|
goto exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
mbedtls_lms_unsigned_int_to_network_bytes(ctx->params.type,
|
MBEDTLS_PUT_UINT32_BE(ctx->params.type, sig, MBEDTLS_LMOTS_SIG_TYPE_OFFSET);
|
||||||
MBEDTLS_LMOTS_TYPE_LEN,
|
|
||||||
sig + MBEDTLS_LMOTS_SIG_TYPE_OFFSET);
|
|
||||||
|
|
||||||
/* Test hook to check if sig is being written to before we invalidate the
|
/* Test hook to check if sig is being written to before we invalidate the
|
||||||
* private key.
|
* private key.
|
||||||
|
|
|
@ -44,29 +44,6 @@ extern "C" {
|
||||||
extern int (*mbedtls_lmots_sign_private_key_invalidated_hook)(unsigned char *);
|
extern int (*mbedtls_lmots_sign_private_key_invalidated_hook)(unsigned char *);
|
||||||
#endif /* defined(MBEDTLS_TEST_HOOKS) */
|
#endif /* defined(MBEDTLS_TEST_HOOKS) */
|
||||||
|
|
||||||
/**
|
|
||||||
* \brief This function converts an unsigned int into a
|
|
||||||
* network-byte-order (big endian) string.
|
|
||||||
*
|
|
||||||
* \param val The unsigned integer value
|
|
||||||
* \param len The length of the string.
|
|
||||||
* \param bytes The string to output into.
|
|
||||||
*/
|
|
||||||
void mbedtls_lms_unsigned_int_to_network_bytes(unsigned int val, size_t len,
|
|
||||||
unsigned char *bytes);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* \brief This function converts a network-byte-order
|
|
||||||
* (big endian) string into an unsigned integer.
|
|
||||||
*
|
|
||||||
* \param len The length of the string.
|
|
||||||
* \param bytes The string.
|
|
||||||
*
|
|
||||||
* \return The corresponding LMS error code.
|
|
||||||
*/
|
|
||||||
unsigned int mbedtls_lms_network_bytes_to_unsigned_int(size_t len,
|
|
||||||
const unsigned char *bytes);
|
|
||||||
|
|
||||||
#if !defined(MBEDTLS_DEPRECATED_REMOVED)
|
#if !defined(MBEDTLS_DEPRECATED_REMOVED)
|
||||||
/**
|
/**
|
||||||
* \brief This function converts a \ref psa_status_t to a
|
* \brief This function converts a \ref psa_status_t to a
|
||||||
|
|
|
@ -112,7 +112,7 @@ static int create_merkle_leaf_value(const mbedtls_lms_parameters_t *params,
|
||||||
goto exit;
|
goto exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
mbedtls_lms_unsigned_int_to_network_bytes(r_node_idx, 4, r_node_idx_bytes);
|
MBEDTLS_PUT_UINT32_BE(r_node_idx, r_node_idx_bytes, 0);
|
||||||
status = psa_hash_update(&op, r_node_idx_bytes, 4);
|
status = psa_hash_update(&op, r_node_idx_bytes, 4);
|
||||||
if (status != PSA_SUCCESS) {
|
if (status != PSA_SUCCESS) {
|
||||||
goto exit;
|
goto exit;
|
||||||
|
@ -186,7 +186,7 @@ static int create_merkle_internal_value(const mbedtls_lms_parameters_t *params,
|
||||||
goto exit;
|
goto exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
mbedtls_lms_unsigned_int_to_network_bytes(r_node_idx, 4, r_node_idx_bytes);
|
MBEDTLS_PUT_UINT32_BE(r_node_idx, r_node_idx_bytes, 0);
|
||||||
status = psa_hash_update(&op, r_node_idx_bytes, 4);
|
status = psa_hash_update(&op, r_node_idx_bytes, 4);
|
||||||
if (status != PSA_SUCCESS) {
|
if (status != PSA_SUCCESS) {
|
||||||
goto exit;
|
goto exit;
|
||||||
|
@ -237,10 +237,7 @@ int mbedtls_lms_import_public_key(mbedtls_lms_public_t *ctx,
|
||||||
mbedtls_lms_algorithm_type_t type;
|
mbedtls_lms_algorithm_type_t type;
|
||||||
mbedtls_lmots_algorithm_type_t otstype;
|
mbedtls_lmots_algorithm_type_t otstype;
|
||||||
|
|
||||||
type = (mbedtls_lms_algorithm_type_t) mbedtls_lms_network_bytes_to_unsigned_int(
|
type = (mbedtls_lms_algorithm_type_t) MBEDTLS_GET_UINT32_BE(key, PUBLIC_KEY_TYPE_OFFSET);
|
||||||
MBEDTLS_LMS_TYPE_LEN,
|
|
||||||
key +
|
|
||||||
PUBLIC_KEY_TYPE_OFFSET);
|
|
||||||
if (type != MBEDTLS_LMS_SHA256_M32_H10) {
|
if (type != MBEDTLS_LMS_SHA256_M32_H10) {
|
||||||
return MBEDTLS_ERR_LMS_BAD_INPUT_DATA;
|
return MBEDTLS_ERR_LMS_BAD_INPUT_DATA;
|
||||||
}
|
}
|
||||||
|
@ -250,10 +247,8 @@ int mbedtls_lms_import_public_key(mbedtls_lms_public_t *ctx,
|
||||||
return MBEDTLS_ERR_LMS_BAD_INPUT_DATA;
|
return MBEDTLS_ERR_LMS_BAD_INPUT_DATA;
|
||||||
}
|
}
|
||||||
|
|
||||||
otstype = (mbedtls_lmots_algorithm_type_t) mbedtls_lms_network_bytes_to_unsigned_int(
|
otstype = (mbedtls_lmots_algorithm_type_t)
|
||||||
MBEDTLS_LMOTS_TYPE_LEN,
|
MBEDTLS_GET_UINT32_BE(key, PUBLIC_KEY_OTSTYPE_OFFSET);
|
||||||
key +
|
|
||||||
PUBLIC_KEY_OTSTYPE_OFFSET);
|
|
||||||
if (otstype != MBEDTLS_LMOTS_SHA256_N32_W8) {
|
if (otstype != MBEDTLS_LMOTS_SHA256_N32_W8) {
|
||||||
return MBEDTLS_ERR_LMS_BAD_INPUT_DATA;
|
return MBEDTLS_ERR_LMS_BAD_INPUT_DATA;
|
||||||
}
|
}
|
||||||
|
@ -282,12 +277,8 @@ int mbedtls_lms_export_public_key(const mbedtls_lms_public_t *ctx,
|
||||||
return MBEDTLS_ERR_LMS_BAD_INPUT_DATA;
|
return MBEDTLS_ERR_LMS_BAD_INPUT_DATA;
|
||||||
}
|
}
|
||||||
|
|
||||||
mbedtls_lms_unsigned_int_to_network_bytes(
|
MBEDTLS_PUT_UINT32_BE(ctx->params.type, key, PUBLIC_KEY_TYPE_OFFSET);
|
||||||
ctx->params.type,
|
MBEDTLS_PUT_UINT32_BE(ctx->params.otstype, key, PUBLIC_KEY_OTSTYPE_OFFSET);
|
||||||
MBEDTLS_LMS_TYPE_LEN, key + PUBLIC_KEY_TYPE_OFFSET);
|
|
||||||
mbedtls_lms_unsigned_int_to_network_bytes(ctx->params.otstype,
|
|
||||||
MBEDTLS_LMOTS_TYPE_LEN,
|
|
||||||
key + PUBLIC_KEY_OTSTYPE_OFFSET);
|
|
||||||
memcpy(key + PUBLIC_KEY_I_KEY_ID_OFFSET,
|
memcpy(key + PUBLIC_KEY_I_KEY_ID_OFFSET,
|
||||||
ctx->params.I_key_identifier,
|
ctx->params.I_key_identifier,
|
||||||
MBEDTLS_LMOTS_I_KEY_ID_LEN);
|
MBEDTLS_LMOTS_I_KEY_ID_LEN);
|
||||||
|
@ -339,9 +330,7 @@ int mbedtls_lms_verify(const mbedtls_lms_public_t *ctx,
|
||||||
return MBEDTLS_ERR_LMS_VERIFY_FAILED;
|
return MBEDTLS_ERR_LMS_VERIFY_FAILED;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (mbedtls_lms_network_bytes_to_unsigned_int(MBEDTLS_LMOTS_TYPE_LEN,
|
if (MBEDTLS_GET_UINT32_BE(sig, SIG_OTS_SIG_OFFSET + MBEDTLS_LMOTS_SIG_TYPE_OFFSET)
|
||||||
sig + SIG_OTS_SIG_OFFSET +
|
|
||||||
MBEDTLS_LMOTS_SIG_TYPE_OFFSET)
|
|
||||||
!= MBEDTLS_LMOTS_SHA256_N32_W8) {
|
!= MBEDTLS_LMOTS_SHA256_N32_W8) {
|
||||||
return MBEDTLS_ERR_LMS_VERIFY_FAILED;
|
return MBEDTLS_ERR_LMS_VERIFY_FAILED;
|
||||||
}
|
}
|
||||||
|
@ -350,15 +339,13 @@ int mbedtls_lms_verify(const mbedtls_lms_public_t *ctx,
|
||||||
return MBEDTLS_ERR_LMS_VERIFY_FAILED;
|
return MBEDTLS_ERR_LMS_VERIFY_FAILED;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (mbedtls_lms_network_bytes_to_unsigned_int(MBEDTLS_LMS_TYPE_LEN,
|
if (MBEDTLS_GET_UINT32_BE(sig, SIG_TYPE_OFFSET(ctx->params.otstype))
|
||||||
sig + SIG_TYPE_OFFSET(ctx->params.otstype))
|
|
||||||
!= MBEDTLS_LMS_SHA256_M32_H10) {
|
!= MBEDTLS_LMS_SHA256_M32_H10) {
|
||||||
return MBEDTLS_ERR_LMS_VERIFY_FAILED;
|
return MBEDTLS_ERR_LMS_VERIFY_FAILED;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
q_leaf_identifier = mbedtls_lms_network_bytes_to_unsigned_int(
|
q_leaf_identifier = MBEDTLS_GET_UINT32_BE(sig, SIG_Q_LEAF_ID_OFFSET);
|
||||||
MBEDTLS_LMOTS_Q_LEAF_ID_LEN, sig + SIG_Q_LEAF_ID_OFFSET);
|
|
||||||
|
|
||||||
if (q_leaf_identifier >= MERKLE_TREE_LEAF_NODE_AM(ctx->params.type)) {
|
if (q_leaf_identifier >= MERKLE_TREE_LEAF_NODE_AM(ctx->params.type)) {
|
||||||
return MBEDTLS_ERR_LMS_VERIFY_FAILED;
|
return MBEDTLS_ERR_LMS_VERIFY_FAILED;
|
||||||
|
@ -367,9 +354,7 @@ int mbedtls_lms_verify(const mbedtls_lms_public_t *ctx,
|
||||||
memcpy(ots_params.I_key_identifier,
|
memcpy(ots_params.I_key_identifier,
|
||||||
ctx->params.I_key_identifier,
|
ctx->params.I_key_identifier,
|
||||||
MBEDTLS_LMOTS_I_KEY_ID_LEN);
|
MBEDTLS_LMOTS_I_KEY_ID_LEN);
|
||||||
mbedtls_lms_unsigned_int_to_network_bytes(q_leaf_identifier,
|
MBEDTLS_PUT_UINT32_BE(q_leaf_identifier, ots_params.q_leaf_identifier, 0);
|
||||||
MBEDTLS_LMOTS_Q_LEAF_ID_LEN,
|
|
||||||
ots_params.q_leaf_identifier);
|
|
||||||
ots_params.type = ctx->params.otstype;
|
ots_params.type = ctx->params.otstype;
|
||||||
|
|
||||||
ret = mbedtls_lmots_calculate_public_key_candidate(&ots_params,
|
ret = mbedtls_lmots_calculate_public_key_candidate(&ots_params,
|
||||||
|
@ -753,12 +738,8 @@ int mbedtls_lms_sign(mbedtls_lms_private_t *ctx,
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
mbedtls_lms_unsigned_int_to_network_bytes(ctx->params.type,
|
MBEDTLS_PUT_UINT32_BE(ctx->params.type, sig, SIG_TYPE_OFFSET(ctx->params.otstype));
|
||||||
MBEDTLS_LMS_TYPE_LEN,
|
MBEDTLS_PUT_UINT32_BE(q_leaf_identifier, sig, SIG_Q_LEAF_ID_OFFSET);
|
||||||
sig + SIG_TYPE_OFFSET(ctx->params.otstype));
|
|
||||||
mbedtls_lms_unsigned_int_to_network_bytes(q_leaf_identifier,
|
|
||||||
MBEDTLS_LMOTS_Q_LEAF_ID_LEN,
|
|
||||||
sig + SIG_Q_LEAF_ID_OFFSET);
|
|
||||||
|
|
||||||
ret = get_merkle_path(ctx,
|
ret = get_merkle_path(ctx,
|
||||||
MERKLE_TREE_INTERNAL_NODE_AM(ctx->params.type) + q_leaf_identifier,
|
MERKLE_TREE_INTERNAL_NODE_AM(ctx->params.type) + q_leaf_identifier,
|
||||||
|
|
Loading…
Reference in a new issue