hwelltech block chain cpp sdk
Dependencies: EthernetInterface SDFileSystem mbed-rtos mbed uniqueCPUID
Fork of bcsdk by
bcsdk 是 block chain sdk 的简写。它是由江苏恒为信息科技有限公司开发的 BlockChain 的 基于 mbed os 的 C++ 版本SDK,它能帮助开发者快速的在支持 mbed os 的芯片上开发 BlockChain 的应用。 bcsdk 的demo文件中包含了BlockChain中的 Key、Account、Asset、Transaction等方面的示例。其中: (1) Key 加密私钥是区块链上的主要授权机制。他们控制资产单位的发行和转让。 资产或帐户将定义发行或转移所需的单个密钥。 在 Key_test.cpp 中,我们实现了: 创建HSM密钥 键入密钥别名的名称(例如'gold','silver','bronze'),密钥别名是用于区分密钥的标签。
(2) Asset 资产是一种可以在区块链上发布的值类型。资产的所有单位均可互换,可以在各方之间直接交易,无需发行人参与。 在 Asset_test.cpp 中,我们实现了: 创建资产 键入资产别名的名称(例如'gold','silver','bronze'),资产别名是用于区分资产的标签。 选择“Key”键以使用现有的HSM密键,此密钥将用于此帐户中资产单位的发放和转移。
(3) Account 加帐户是恒为区块链核心平台中的一个对象,通过创建和跟踪控制程序来跟踪区块链上的资产的所有权。创建帐户时,您提供一个或多个“root”密钥和仲裁。 在 Account_test.cpp 中,我们实现了: 创建帐户 1 输入帐户别名的名称(例如'alice','bob'),帐户别名是用于区分帐户的标签。 2 键入名称以生成新的HSM密钥(例如'alice key','bob key'),此密钥将用于此帐户中资产单位的发放和转移。
(4) Transaction 交易包含一个或多个输入,以及一个或多个输出。恒为区块链核心平台的API允许您使用操作(包括发出,支出和返还)构建交易。 在 Transaction_test.cpp 中,我们实现了: 资产的交易 1 添加“账户支出”操作 2 为资产别名选择“Asset” 3 输入“100”作为金额 4 添加“使用帐户控制”操作 5 为帐户别名选择“Account” 6 为资产别名选择“Asset” 7 输入“100”作为金额 8 “提交”
MockHsm.cpp@10:aabd720e632c, 2017-11-03 (annotated)
- Committer:
- webmaster
- Date:
- Fri Nov 03 01:07:32 2017 +0000
- Revision:
- 10:aabd720e632c
- Parent:
- 8:f2a567ee3a46
publish v0.1
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
webmaster | 8:f2a567ee3a46 | 1 | #include "MockHsm.h" |
webmaster | 10:aabd720e632c | 2 | //#include "Uuid.h" |
webmaster | 8:f2a567ee3a46 | 3 | |
webmaster | 8:f2a567ee3a46 | 4 | MockHsm::MockHsm() |
webmaster | 8:f2a567ee3a46 | 5 | { |
webmaster | 10:aabd720e632c | 6 | // Uuid u; |
webmaster | 10:aabd720e632c | 7 | // GUID guid = u.CreateGuid(); |
webmaster | 10:aabd720e632c | 8 | // string strUuid = u.GuidToString(guid); |
webmaster | 10:aabd720e632c | 9 | |
webmaster | 8:f2a567ee3a46 | 10 | alias = ""; |
webmaster | 10:aabd720e632c | 11 | client_token = "962cd39d-6496-4b23-a2c5-85e445069a12"; |
webmaster | 8:f2a567ee3a46 | 12 | } |
webmaster | 8:f2a567ee3a46 | 13 | |
webmaster | 8:f2a567ee3a46 | 14 | MockHsm::~MockHsm() |
webmaster | 8:f2a567ee3a46 | 15 | { |
webmaster | 8:f2a567ee3a46 | 16 | alias = ""; |
webmaster | 8:f2a567ee3a46 | 17 | client_token = ""; |
webmaster | 8:f2a567ee3a46 | 18 | } |
webmaster | 8:f2a567ee3a46 | 19 | |
webmaster | 8:f2a567ee3a46 | 20 | |
webmaster | 8:f2a567ee3a46 | 21 | string MockHsm::getAlias() |
webmaster | 8:f2a567ee3a46 | 22 | { |
webmaster | 8:f2a567ee3a46 | 23 | return this->alias; |
webmaster | 8:f2a567ee3a46 | 24 | } |
webmaster | 8:f2a567ee3a46 | 25 | |
webmaster | 8:f2a567ee3a46 | 26 | void MockHsm::setAlias(string newAlias) |
webmaster | 8:f2a567ee3a46 | 27 | { |
webmaster | 8:f2a567ee3a46 | 28 | this->alias = newAlias; |
webmaster | 8:f2a567ee3a46 | 29 | } |
webmaster | 8:f2a567ee3a46 | 30 | |
webmaster | 8:f2a567ee3a46 | 31 | string MockHsm::createKey() |
webmaster | 8:f2a567ee3a46 | 32 | { |
webmaster | 8:f2a567ee3a46 | 33 | string strJson = ""; |
webmaster | 8:f2a567ee3a46 | 34 | |
webmaster | 8:f2a567ee3a46 | 35 | MbedJSONValue val; |
webmaster | 8:f2a567ee3a46 | 36 | |
webmaster | 8:f2a567ee3a46 | 37 | //fill the object |
webmaster | 8:f2a567ee3a46 | 38 | val["alias"] = this->alias; |
webmaster | 8:f2a567ee3a46 | 39 | val["client_token"] = this->client_token; |
webmaster | 8:f2a567ee3a46 | 40 | |
webmaster | 8:f2a567ee3a46 | 41 | //serialize it into a JSON string |
webmaster | 8:f2a567ee3a46 | 42 | strJson = val.serialize(); |
webmaster | 8:f2a567ee3a46 | 43 | printf("json: %s\r\n", strJson.c_str()); |
webmaster | 8:f2a567ee3a46 | 44 | |
webmaster | 8:f2a567ee3a46 | 45 | string strRep = ""; |
webmaster | 10:aabd720e632c | 46 | string strUrl = "/mockhsm/create-key"; |
webmaster | 8:f2a567ee3a46 | 47 | client.http_post(strUrl,strJson,strRep); |
webmaster | 8:f2a567ee3a46 | 48 | //cout<< "HTTP Response:\n" << strRep.length() << endl << strRep.c_str() << endl; |
webmaster | 8:f2a567ee3a46 | 49 | |
webmaster | 8:f2a567ee3a46 | 50 | return strJson; |
webmaster | 8:f2a567ee3a46 | 51 | } |
webmaster | 8:f2a567ee3a46 | 52 | |
webmaster | 8:f2a567ee3a46 | 53 | string MockHsm::listKeys() |
webmaster | 8:f2a567ee3a46 | 54 | { |
webmaster | 8:f2a567ee3a46 | 55 | string strJson = ""; |
webmaster | 8:f2a567ee3a46 | 56 | |
webmaster | 8:f2a567ee3a46 | 57 | MbedJSONValue val; |
webmaster | 8:f2a567ee3a46 | 58 | |
webmaster | 8:f2a567ee3a46 | 59 | //serialize it into a JSON string |
webmaster | 8:f2a567ee3a46 | 60 | strJson = val.serialize(); |
webmaster | 8:f2a567ee3a46 | 61 | if ("null" == strJson) |
webmaster | 8:f2a567ee3a46 | 62 | { |
webmaster | 8:f2a567ee3a46 | 63 | strJson = "{}"; |
webmaster | 8:f2a567ee3a46 | 64 | } |
webmaster | 8:f2a567ee3a46 | 65 | //printf("json: %s\r\n", strJson.c_str()); |
webmaster | 8:f2a567ee3a46 | 66 | |
webmaster | 8:f2a567ee3a46 | 67 | string strRep = ""; |
webmaster | 8:f2a567ee3a46 | 68 | string strUrl = "/mockhsm/list-keys"; |
webmaster | 8:f2a567ee3a46 | 69 | client.http_post(strUrl,strJson,strRep); |
webmaster | 8:f2a567ee3a46 | 70 | //cout<< "HTTP Response:\n" << strRep.length() << endl << strRep.c_str() << endl; |
webmaster | 8:f2a567ee3a46 | 71 | |
webmaster | 8:f2a567ee3a46 | 72 | return strJson; |
webmaster | 8:f2a567ee3a46 | 73 | } |
webmaster | 10:aabd720e632c | 74 | |
webmaster | 10:aabd720e632c | 75 | |
webmaster | 10:aabd720e632c | 76 | string MockHsm::listTransactionFeeds() |
webmaster | 10:aabd720e632c | 77 | { |
webmaster | 10:aabd720e632c | 78 | string strJson = ""; |
webmaster | 10:aabd720e632c | 79 | |
webmaster | 10:aabd720e632c | 80 | MbedJSONValue val; |
webmaster | 10:aabd720e632c | 81 | |
webmaster | 10:aabd720e632c | 82 | strJson = val.serialize(); |
webmaster | 10:aabd720e632c | 83 | if ("null" == strJson) |
webmaster | 10:aabd720e632c | 84 | { |
webmaster | 10:aabd720e632c | 85 | strJson = "{}"; |
webmaster | 10:aabd720e632c | 86 | } |
webmaster | 10:aabd720e632c | 87 | |
webmaster | 10:aabd720e632c | 88 | string strRep = ""; |
webmaster | 10:aabd720e632c | 89 | string strUrl = "/list-transaction-feeds"; |
webmaster | 10:aabd720e632c | 90 | client.http_post(strUrl,strJson,strRep); |
webmaster | 10:aabd720e632c | 91 | |
webmaster | 10:aabd720e632c | 92 | return strJson; |
webmaster | 10:aabd720e632c | 93 | } |