Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
sgxwallet
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
董子豪
sgxwallet
Commits
35d7a1ab
Unverified
Commit
35d7a1ab
authored
Jan 25, 2020
by
kladko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed add README toc
parent
af37afa7
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
90 additions
and
1 deletion
+90
-1
dockerimagesim.yml
.github/workflows/dockerimagesim.yml
+1
-1
.gitignore
.gitignore
+4
-0
CMakeLists.txt
CMakeLists.txt
+85
-0
No files found.
.github/workflows/dockerimagesim.yml
View file @
35d7a1ab
...
@@ -22,6 +22,6 @@ jobs:
...
@@ -22,6 +22,6 @@ jobs:
run
:
docker push skalenetwork/sgxwalletsim:latest
run
:
docker push skalenetwork/sgxwalletsim:latest
-
name
:
run docker image
-
name
:
run docker image
run
:
docker run -d --network=host skalenetwork/sgxwalletsim:latest
run
:
docker run -d --network=host skalenetwork/sgxwalletsim:latest
-
name
:
sleep and chec
l
-
name
:
sleep and chec
k
run
:
sleep 3; ls sgx_data;
run
:
sleep 3; ls sgx_data;
.gitignore
View file @
35d7a1ab
...
@@ -13,6 +13,10 @@ secure_enclave.edl
...
@@ -13,6 +13,10 @@ secure_enclave.edl
am--include-marker
am--include-marker
*.o
*.o
aclocal.m4
aclocal.m4
missing
compile
depcomp
ltmain.sh
secure_enclave.signed.so
secure_enclave.signed.so
sgxgmpmath
sgxgmpmath
sgxgmppi
sgxgmppi
...
...
CMakeLists.txt
0 → 100644
View file @
35d7a1ab
cmake_minimum_required
(
VERSION 3.15
)
project
(
sgxwallet
)
set
(
CMAKE_CXX_STANDARD 14
)
include_directories
(
.
)
include_directories
(
secure_enclave
)
include_directories
(
sgx-software-enable
)
include_directories
(
tgmp-build
)
include_directories
(
tgmp-build/include
)
add_executable
(
sgxwallet
secure_enclave/AESUtils.c
secure_enclave/AESUtils.h
secure_enclave/BLSEnclave.cpp
secure_enclave/BLSEnclave.h
secure_enclave/curves.c
secure_enclave/curves.h
secure_enclave/DH_dkg.c
secure_enclave/DH_dkg.h
secure_enclave/DKGUtils.cpp
secure_enclave/DKGUtils.h
secure_enclave/domain_parameters.c
secure_enclave/domain_parameters.h
secure_enclave/enclave_common.h
secure_enclave/numbertheory.c
secure_enclave/numbertheory.h
secure_enclave/point.c
secure_enclave/point.h
secure_enclave/secure_enclave.c
secure_enclave/secure_enclave.i
secure_enclave/secure_enclave_t.c
secure_enclave/secure_enclave_t.h
secure_enclave/signature.c
secure_enclave/signature.h
sgx-software-enable/sgx_capable.h
sgx-software-enable/sgx_enable.c
tgmp-build/include/sgx_tgmp.h
abstractCSRManagerServer.h
abstractregserver.h
abstractstubserver.h
BLSCrypto.cpp
BLSCrypto.h
BLSPrivateKeyShareSGX.cpp
BLSPrivateKeyShareSGX.h
catch.hpp
cert_util.cpp
common.h
create_enclave.c
create_enclave.h
CSRManagerServer.cpp
CSRManagerServer.h
DKGCrypto.cpp
DKGCrypto.h
ECDSACrypto.cpp
ECDSACrypto.h
LevelDB.cpp
LevelDB.h
oc_alloc.c
RPCException.cpp
RPCException.h
secure_enclave_u.c
secure_enclave_u.h
SEKManager.cpp
SEKManager.h
ServerDataChecker.cpp
ServerDataChecker.h
ServerInit.cpp
ServerInit.h
sgx_detect.h
sgx_detect_linux.c
sgx_stub.c
sgx_stub.h
sgx_tgmp.h
SGXRegistrationServer.cpp
SGXRegistrationServer.h
sgxwallet.c
sgxwallet.h
sgxwallet_common.h
SGXWalletServer.cpp
SGXWalletServer.h
SGXWalletServer.hpp
stubclient.cpp
stubclient.h
testw.cpp
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment