Embedded SDK
Embedded SDK
Loading...
Searching...
No Matches
address_book_crypto.h
Go to the documentation of this file.
1/*****************************************************************************
2 * (c) 2026 Ledger SAS.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 *****************************************************************************/
16#pragma once
17
18#include <stdint.h>
19#include <stddef.h>
20#include <stdbool.h>
21#include "bip32.h"
22#include "lcx_sha256.h"
23#include "address_book.h"
24#include "identity.h"
25
26#ifdef HAVE_ADDRESS_BOOK
27
28bool address_book_generate_group_handle(const path_bip32_t *bip32_path,
29 uint8_t group_handle[GROUP_HANDLE_SIZE]);
30
31bool address_book_verify_group_handle(const path_bip32_t *bip32_path,
32 const uint8_t group_handle[GROUP_HANDLE_SIZE],
33 uint8_t gid_out[GID_SIZE]);
34
35bool address_book_compute_hmac_proof(const path_bip32_t *bip32_path,
36 const uint8_t gid[GID_SIZE],
37 const char *name,
38 uint8_t hmac_out[CX_SHA256_SIZE]);
39
40bool address_book_verify_hmac_proof(const path_bip32_t *bip32_path,
41 const uint8_t gid[GID_SIZE],
42 const char *name,
43 const uint8_t hmac_expected[CX_SHA256_SIZE]);
44
45bool address_book_compute_hmac_rest(const path_bip32_t *bip32_path,
46 const uint8_t gid[GID_SIZE],
47 const char *scope,
48 const uint8_t *identifier,
49 uint8_t identifier_len,
51 uint64_t chain_id,
52 uint8_t hmac_out[CX_SHA256_SIZE]);
53
54bool address_book_verify_hmac_rest(const path_bip32_t *bip32_path,
55 const uint8_t gid[GID_SIZE],
56 const char *scope,
57 const uint8_t *identifier,
58 uint8_t identifier_len,
60 uint64_t chain_id,
61 const uint8_t hmac_expected[CX_SHA256_SIZE]);
62
63#ifdef HAVE_ADDRESS_BOOK_LEDGER_ACCOUNT
64
65bool address_book_compute_hmac_proof_ledger_account(const path_bip32_t *bip32_path,
66 const char *name,
68 uint64_t chain_id,
69 uint8_t hmac_out[CX_SHA256_SIZE]);
70
71bool address_book_verify_hmac_proof_ledger_account(const path_bip32_t *bip32_path,
72 const char *name,
74 uint64_t chain_id,
75 const uint8_t hmac_expected[CX_SHA256_SIZE]);
76
77#endif // HAVE_ADDRESS_BOOK_LEDGER_ACCOUNT
78
80bool address_book_send_hmac_proof(uint8_t type, const uint8_t hmac_proof[CX_SHA256_SIZE]);
81
83bool address_book_send_register_identity_response(const uint8_t group_handle[GROUP_HANDLE_SIZE],
84 const uint8_t hmac_proof[CX_SHA256_SIZE],
85 const uint8_t hmac_rest[CX_SHA256_SIZE]);
86
87#endif // HAVE_ADDRESS_BOOK
blockchain_family_e
Register / Edit Contact Name / Edit Scope / Edit Identifier.
SHA-2 (Secure Hash Algorithm 2)