forked from skalenetwork/sgxwallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TestUtils.h
96 lines (66 loc) · 2.96 KB
/
TestUtils.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/*
Copyright (C) 2019-Present SKALE Labs
This file is part of sgxwallet.
sgxwallet is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
sgxwallet is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with sgxwallet. If not, see <https://www.gnu.org/licenses/>.
@file TestUtils.h
@author Stan Kladko
@date 2020
*/
#ifndef SGXWALLET_TESTUTILS_H
#define SGXWALLET_TESTUTILS_H
#include "abstractstubserver.h"
#include "secure_enclave_u.h"
#include "sgxwallet_common.h"
#include "stubclient.h"
#include "third_party/intel/create_enclave.h"
#include "third_party/intel/sgx_detect.h"
#include "zmq_src/ZMQClient.h"
#include <dkg/dkg.h>
#include <gmp.h>
#include <jsonrpccpp/client/connectors/httpclient.h>
#include <jsonrpccpp/server/connectors/httpserver.h>
#include <libff/algebra/curves/alt_bn128/alt_bn128_pp.hpp>
#include <sgx_tcrypto.h>
#include <sgx_urts.h>
#include <stdio.h>
using namespace std;
using namespace jsonrpc;
class TestUtils {
public:
static default_random_engine randGen;
static string stringFromFr(libff::alt_bn128_Fr &el, size_t base = 10);
static string convertDecToHex(string dec, int numBytes = 32);
static void genTestKeys();
static void resetDB();
static shared_ptr<string> encryptTestKey();
static vector<libff::alt_bn128_Fr> splitStringToFr(const char *coeffs,
const char symbol);
static vector<string> splitStringTest(const char *coeffs, const char symbol);
static libff::alt_bn128_G2 vectStringToG2(const vector<string> &G2_str_vect);
static void sendRPCRequest();
static void sendRPCRequestV2();
static void destroyEnclave();
static void doDKG(StubClient &c, int n, int t, vector<string> &_ecdsaKeyNames,
vector<string> &_blsKeyNames, int schainID, int dkgID);
static void doDKGV2(StubClient &c, int n, int t,
vector<string> &_ecdsaKeyNames,
vector<string> &_blsKeyNames, int schainID, int dkgID);
static void doZMQBLS(shared_ptr<ZMQClient> _zmqClient, StubClient &c, int n,
int t, vector<string> &_ecdsaKeyNames,
vector<string> &_blsKeyNames, int schainID, int dkgID);
static void sendRPCRequestZMQ();
};
int sessionKeyRecoverDH(const char *skey_str, const char *sshare,
char *common_key);
int xorDecryptDH(char *key, const char *cypher, vector<char> &message);
int xorDecryptDHV2(char *key, const char *cypher, vector<char> &message);
#endif // SGXWALLET_TESTW_H