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
b7c399acc2554a76fd98fd367ee096f9f8083d9b to 1d79ffc6a05da7b4d561509647ee00e66e4c537c
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
1d79ffc6a05da7b4d561509647ee00e66e4c537c
Select Git revision
Swap
Target
cellframe/libdap-crypto
Select target project
car/libdap-crypto
1 result
b7c399acc2554a76fd98fd367ee096f9f8083d9b
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
bugs-3380
· e6b00bf1
Roman Khlopkov
authored
4 years ago
and
dmitriy.gerasimov
committed
4 years ago
e6b00bf1
Merge branch 'bugs-3380' into 'master'
· 1d79ffc6
dmitriy.gerasimov
authored
4 years ago
bugs-3380 See merge request
!21
1d79ffc6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/sig_tesla/tesla_params.h
+2
-2
2 additions, 2 deletions
src/sig_tesla/tesla_params.h
test/CMakeLists.txt
+4
-1
4 additions, 1 deletion
test/CMakeLists.txt
with
6 additions
and
3 deletions
src/sig_tesla/tesla_params.h
View file @
1d79ffc6
...
@@ -85,8 +85,8 @@ void tesla_private_and_public_keys_delete(tesla_private_key_t *private_key, tesl
...
@@ -85,8 +85,8 @@ void tesla_private_and_public_keys_delete(tesla_private_key_t *private_key, tesl
void
tesla_signature_delete
(
tesla_signature_t
*
signature
);
void
tesla_signature_delete
(
tesla_signature_t
*
signature
);
///==========================================================================================
///==========================================================================================
typedef
int64_t
__attribute__
((
aligned
(
32
)))
poly
;
//[ 2048 ]; //PARAM_N
typedef
int64_t
poly
;
//[ 2048 ]; //PARAM_N
__attribute__ ((aligned(32)))
typedef
int64_t
__attribute__
((
aligned
(
32
)))
poly_k
;
//[ 5 * 2048]; // PARAM_K * PARAM_N
typedef
int64_t
poly_k
;
//[ 5 * 2048]; // PARAM_K * PARAM_N
__attribute__ ((aligned(32)))
int64_t
init_mass_poly
(
poly
*
zeta
,
poly
*
zetainv
,
tesla_param_t
*
p
);
int64_t
init_mass_poly
(
poly
*
zeta
,
poly
*
zetainv
,
tesla_param_t
*
p
);
int64_t
reduce
(
int64_t
a
,
tesla_param_t
*
p
);
int64_t
reduce
(
int64_t
a
,
tesla_param_t
*
p
);
...
...
This diff is collapsed.
Click to expand it.
test/CMakeLists.txt
View file @
1d79ffc6
...
@@ -3,6 +3,9 @@ project(test)
...
@@ -3,6 +3,9 @@ project(test)
set
(
CMAKE_C_STANDARD 11
)
set
(
CMAKE_C_STANDARD 11
)
#add_subdirectory(libdap-test)
if
(
NOT SUBMODULES_NO_BUILD
)
add_subdirectory
(
libdap-test
)
endif
()
add_subdirectory
(
crypto
)
add_subdirectory
(
crypto
)
add_subdirectory
(
cert
)
add_subdirectory
(
cert
)
This diff is collapsed.
Click to expand it.