Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libdap-crypto
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
2
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
cellframe
libdap-crypto
Compare revisions
c81202ba5d48e5d77afcc8aea9962a10560527f3 to 16a16e71b9cfae4fd8df530ed8cd6146010ae7e0
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
cellframe/libdap-crypto
Select target project
No results found
16a16e71b9cfae4fd8df530ed8cd6146010ae7e0
Select Git revision
Swap
Target
cellframe/libdap-crypto
Select target project
car/libdap-crypto
1 result
c81202ba5d48e5d77afcc8aea9962a10560527f3
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
[+] C++ defines
· 16a16e71
Dmitriy A. Gerasimov
authored
5 years ago
16a16e71
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/dap_hash.h
+8
-0
8 additions, 0 deletions
include/dap_hash.h
with
8 additions
and
0 deletions
include/dap_hash.h
View file @
16a16e71
...
...
@@ -45,6 +45,10 @@ typedef union dap_chain_hash_fast{
uint8_t
raw
[
DAP_CHAIN_HASH_FAST_SIZE
];
}
dap_chain_hash_fast_t
;
#ifdef __cplusplus
extern
"C"
{
#endif
//size_t dap_chain_hash_fast_to_str(dap_chain_hash_fast_t * a_hash, char * a_str, size_t a_str_max);
int
dap_chain_str_to_hash_fast
(
const
char
*
a_hash_str
,
dap_chain_hash_fast_t
*
a_hash
);
...
...
@@ -106,3 +110,7 @@ static inline char *dap_chain_hash_fast_to_str_new(dap_chain_hash_fast_t * a_has
dap_chain_hash_fast_to_str
(
a_hash
,
ret
,
c_hash_str_size
);
return
ret
;
}
#ifdef __cplusplus
}
#endif
This diff is collapsed.
Click to expand it.