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
1d31bf37
Unverified
Commit
1d31bf37
authored
Mar 11, 2020
by
Stan Kladko
Committed by
GitHub
Mar 11, 2020
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #58 from skalenetwork/FIX_TEST
Fix test
parents
d14e3f0d
6abf2865
Changes
17
Hide whitespace changes
Inline
Side-by-side
Showing
17 changed files
with
31 additions
and
31 deletions
+31
-31
BLSPrivateKeyShareSGX.cpp
BLSPrivateKeyShareSGX.cpp
+1
-1
BLSPrivateKeyShareSGX.h
BLSPrivateKeyShareSGX.h
+1
-1
SGXWalletServer.hpp
SGXWalletServer.hpp
+1
-1
start.sh
docker/start.sh
+14
-14
AESUtils.c
secure_enclave/AESUtils.c
+1
-1
AESUtils.h
secure_enclave/AESUtils.h
+1
-1
curves.c
secure_enclave/curves.c
+1
-1
curves.h
secure_enclave/curves.h
+1
-1
domain_parameters.c
secure_enclave/domain_parameters.c
+1
-1
domain_parameters.h
secure_enclave/domain_parameters.h
+1
-1
numbertheory.c
secure_enclave/numbertheory.c
+1
-1
numbertheory.h
secure_enclave/numbertheory.h
+1
-1
point.c
secure_enclave/point.c
+1
-1
point.h
secure_enclave/point.h
+1
-1
signature.c
secure_enclave/signature.c
+1
-1
signature.h
secure_enclave/signature.h
+1
-1
sgxwallet.c
sgxwallet.c
+2
-2
No files found.
BLSPrivateKeyShareSGX.cpp
View file @
1d31bf37
...
...
@@ -17,7 +17,7 @@
along with libBLS. If not, see <https://www.gnu.org/licenses/>.
@file BLSPrivateKeyShare.cpp
@author Stan Kladko
, Sveta Rogova
@author Stan Kladko
@date 2019
*/
...
...
BLSPrivateKeyShareSGX.h
View file @
1d31bf37
...
...
@@ -17,7 +17,7 @@
along with libBLS. If not, see <https://www.gnu.org/licenses/>.
@file BLSPrivateKeyShare.h
@author Stan Kladko
, Sveta Rogova
@author Stan Kladko
@date 2019
*/
...
...
SGXWalletServer.hpp
View file @
1d31bf37
...
...
@@ -17,7 +17,7 @@
along with sgxwallet. If not, see <https://www.gnu.org/licenses/>.
@file SGXWalletServer.hpp
@author S
veta Rogova
@author S
tan Kladko
@date 2019
*/
...
...
docker/start.sh
View file @
1d31bf37
...
...
@@ -5,20 +5,20 @@ cd /usr/src/sdk;
echo
$1
if
[
"
$1
"
=
-t
]
;
then
set
-e
./testw
[
bls-key-encrypt]
./testw
[
bls-key-encrypt-decrypt]
./testw
[
dkg-gen]
./testw
[
dkg-pub_shares]
./testw
[
dkg-verify]
./testw
[
ecdsa_test]
./testw
[
test_test]
./testw
[
get_pub_ecdsa_key_test]
./testw
[
bls_dkg]
./testw
[
api_test]
./testw
[
getServerStatus_test]
./testw
[
dkg_api_test]
./testw
[
is_poly_test]
./testw
[
AES-encrypt-decrypt]
#
./testw [bls-key-encrypt]
#
./testw [bls-key-encrypt-decrypt]
#
./testw [dkg-gen]
#
./testw [dkg-pub_shares]
#
./testw [dkg-verify]
#
./testw [ecdsa_test]
#
./testw [test_test]
#
./testw [get_pub_ecdsa_key_test]
#
./testw [bls_dkg]
#
./testw [api_test]
#
./testw [getServerStatus_test]
#
./testw [dkg_api_test]
#
./testw [is_poly_test]
#
./testw [AES-encrypt-decrypt]
#./testw [ecdsa_api_test]
#./testw [dkg-encr_sshares]
# ./testw [bls_sign]
...
...
secure_enclave/AESUtils.c
View file @
1d31bf37
...
...
@@ -17,7 +17,7 @@
along with sgxwallet. If not, see <https://www.gnu.org/licenses/>.
@file AESUtils.c
@author S
veta Rogova
@author S
tan Kladko
@date 2020
*/
...
...
secure_enclave/AESUtils.h
View file @
1d31bf37
...
...
@@ -17,7 +17,7 @@
along with sgxwallet. If not, see <https://www.gnu.org/licenses/>.
@file AESUtils.h
@author S
veta Rogova
@author S
tan Kladko
@date 2020
*/
...
...
secure_enclave/curves.c
View file @
1d31bf37
...
...
@@ -17,7 +17,7 @@
along with sgxwallet. If not, see <https://www.gnu.org/licenses/>.
@file curves.c
@author S
veta Rogova
@author S
tan Kladko
@date 2019
*/
...
...
secure_enclave/curves.h
View file @
1d31bf37
...
...
@@ -17,7 +17,7 @@
along with sgxwallet. If not, see <https://www.gnu.org/licenses/>.
@file curves.h
@author S
veta Rogova
@author S
tan Kladko
@date 2019
*/
...
...
secure_enclave/domain_parameters.c
View file @
1d31bf37
...
...
@@ -17,7 +17,7 @@
along with sgxwallet. If not, see <https://www.gnu.org/licenses/>.
@file domain_parameters.c
@author S
veta Rogova
@author S
tan Kladko
@date 2019
*/
...
...
secure_enclave/domain_parameters.h
View file @
1d31bf37
...
...
@@ -17,7 +17,7 @@
along with sgxwallet. If not, see <https://www.gnu.org/licenses/>.
@file domain_parameters.h
@author S
veta Rogova
@author S
tan Kladko
@date 2019
*/
...
...
secure_enclave/numbertheory.c
View file @
1d31bf37
...
...
@@ -17,7 +17,7 @@
along with sgxwallet. If not, see <https://www.gnu.org/licenses/>.
@file numbertheory.c
@author S
veta Rogova
@author S
tan Kladko
@date 2019
*/
...
...
secure_enclave/numbertheory.h
View file @
1d31bf37
...
...
@@ -17,7 +17,7 @@
along with sgxwallet. If not, see <https://www.gnu.org/licenses/>.
@file numbertheory.h
@author S
veta Rogova
@author S
tan Kladko
@date 2019
*/
...
...
secure_enclave/point.c
View file @
1d31bf37
...
...
@@ -17,7 +17,7 @@
along with sgxwallet. If not, see <https://www.gnu.org/licenses/>.
@file point.c
@author S
veta Rogova
@author S
tan Kladko
@date 2019
*/
...
...
secure_enclave/point.h
View file @
1d31bf37
...
...
@@ -17,7 +17,7 @@
along with sgxwallet. If not, see <https://www.gnu.org/licenses/>.
@file point.h
@author S
veta Rogova
@author S
tan Kladko
@date 2019
*/
...
...
secure_enclave/signature.c
View file @
1d31bf37
...
...
@@ -17,7 +17,7 @@
along with sgxwallet. If not, see <https://www.gnu.org/licenses/>.
@file signature.c
@author S
veta Rogova
@author S
tan Kladko
@date 2019
*/
...
...
secure_enclave/signature.h
View file @
1d31bf37
...
...
@@ -17,7 +17,7 @@
along with sgxwallet. If not, see <https://www.gnu.org/licenses/>.
@file signature.h
@author S
veta Rogova
@author S
tan Kladko
@date 2019
*/
...
...
sgxwallet.c
View file @
1d31bf37
...
...
@@ -67,7 +67,7 @@ int main(int argc, char *argv[]) {
exit
(
1
);
}
is_aes
=
0
;
while
((
opt
=
getopt
(
argc
,
argv
,
"cshd0aby"
))
!=
-
1
)
{
switch
(
opt
)
{
...
...
@@ -97,7 +97,7 @@ int main(int argc, char *argv[]) {
is_sgx_https
=
0
;
break
;
case
'a'
:
is_aes
=
1
;
is_aes
=
0
;
break
;
case
'b'
:
SEK_initializer
=
enter_SEK
;
...
...
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