Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dap-sdk
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
5
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
Show more breadcrumbs
dap
dap-sdk
Commits
d8d0b808
Commit
d8d0b808
authored
1 year ago
by
Constantin P.
💬
Browse files
Options
Downloads
Plain Diff
Merge branch 'develop' of gitlab.demlabs.net:dap/dap-sdk into develop
parents
a98981d6
f19f7eff
No related branches found
No related tags found
No related merge requests found
Pipeline
#34206
passed with stage
in 7 minutes and 20 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
crypto/include/dap_pkey.h
+3
-3
3 additions, 3 deletions
crypto/include/dap_pkey.h
with
3 additions
and
3 deletions
crypto/include/dap_pkey.h
+
3
−
3
View file @
d8d0b808
...
@@ -155,10 +155,10 @@ DAP_STATIC_INLINE dap_pkey_type_t dap_pkey_type_from_enc_key_type(dap_enc_key_ty
...
@@ -155,10 +155,10 @@ DAP_STATIC_INLINE dap_pkey_type_t dap_pkey_type_from_enc_key_type(dap_enc_key_ty
typedef
struct
dap_pkey
{
typedef
struct
dap_pkey
{
struct
{
struct
{
dap_pkey_type_t
type
;
// Pkey type
dap_pkey_type_t
type
;
// Pkey type
uint32_t
size
;
// Pkey size
uint32_t
size
DAP_ALIGNED
(
4
)
;
// Pkey size
}
DAP_
ALIGN_
PACKED
header
;
}
DAP_PACKED
header
;
uint8_t
pkey
[];
// Raw pkey data
uint8_t
pkey
[];
// Raw pkey data
}
DAP_
ALIGN_
PACKED
dap_pkey_t
;
}
DAP_PACKED
dap_pkey_t
;
DAP_STATIC_INLINE
size_t
dap_pkey_get_size
(
dap_pkey_t
*
a_pkey
)
{
return
sizeof
(
dap_pkey_t
)
+
a_pkey
->
header
.
size
;
}
DAP_STATIC_INLINE
size_t
dap_pkey_get_size
(
dap_pkey_t
*
a_pkey
)
{
return
sizeof
(
dap_pkey_t
)
+
a_pkey
->
header
.
size
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment