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 “提交”
Uuid.h@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 | 10:aabd720e632c | 1 | /* |
webmaster | 10:aabd720e632c | 2 | * create UUID |
webmaster | 10:aabd720e632c | 3 | **/ |
webmaster | 10:aabd720e632c | 4 | #pragma once |
webmaster | 8:f2a567ee3a46 | 5 | |
webmaster | 8:f2a567ee3a46 | 6 | #include <string> |
webmaster | 8:f2a567ee3a46 | 7 | #include <stdio.h> |
webmaster | 8:f2a567ee3a46 | 8 | #include <iostream> |
webmaster | 8:f2a567ee3a46 | 9 | using namespace std; |
webmaster | 8:f2a567ee3a46 | 10 | |
webmaster | 10:aabd720e632c | 11 | #include "uniqueCPUID.h" |
webmaster | 10:aabd720e632c | 12 | |
webmaster | 10:aabd720e632c | 13 | class Uuid |
webmaster | 10:aabd720e632c | 14 | { |
webmaster | 10:aabd720e632c | 15 | public: |
webmaster | 10:aabd720e632c | 16 | std::string getUuid(); |
webmaster | 10:aabd720e632c | 17 | protected: |
webmaster | 10:aabd720e632c | 18 | private: |
webmaster | 10:aabd720e632c | 19 | }; |
webmaster | 10:aabd720e632c | 20 | |
webmaster | 10:aabd720e632c | 21 | |
webmaster | 10:aabd720e632c | 22 | /* |
webmaster | 8:f2a567ee3a46 | 23 | #ifdef WIN32 |
webmaster | 8:f2a567ee3a46 | 24 | #include <objbase.h> |
webmaster | 8:f2a567ee3a46 | 25 | #else |
webmaster | 8:f2a567ee3a46 | 26 | #include <uuid/uuid.h> |
webmaster | 8:f2a567ee3a46 | 27 | #endif |
webmaster | 8:f2a567ee3a46 | 28 | |
webmaster | 10:aabd720e632c | 29 | class Uuid |
webmaster | 8:f2a567ee3a46 | 30 | { |
webmaster | 10:aabd720e632c | 31 | public: |
webmaster | 10:aabd720e632c | 32 | // GUID CreateGuid(); |
webmaster | 10:aabd720e632c | 33 | // std::string GuidToString(const GUID &guid); |
webmaster | 10:aabd720e632c | 34 | |
webmaster | 10:aabd720e632c | 35 | GUID CreateGuid() |
webmaster | 10:aabd720e632c | 36 | { |
webmaster | 10:aabd720e632c | 37 | GUID guid; |
webmaster | 8:f2a567ee3a46 | 38 | #ifdef WIN32 |
webmaster | 10:aabd720e632c | 39 | CoCreateGuid(&guid); |
webmaster | 8:f2a567ee3a46 | 40 | #else |
webmaster | 10:aabd720e632c | 41 | uuid_generate(reinterpret_cast<unsigned char *>(&guid)); |
webmaster | 8:f2a567ee3a46 | 42 | #endif |
webmaster | 10:aabd720e632c | 43 | return guid; |
webmaster | 10:aabd720e632c | 44 | }; |
webmaster | 10:aabd720e632c | 45 | |
webmaster | 8:f2a567ee3a46 | 46 | |
webmaster | 10:aabd720e632c | 47 | std::string GuidToString(const GUID &guid) |
webmaster | 10:aabd720e632c | 48 | { |
webmaster | 10:aabd720e632c | 49 | char buf[64] = {0}; |
webmaster | 8:f2a567ee3a46 | 50 | #ifdef __GNUC__ |
webmaster | 10:aabd720e632c | 51 | snprintf( |
webmaster | 8:f2a567ee3a46 | 52 | #else // MSVC |
webmaster | 10:aabd720e632c | 53 | _snprintf_s( |
webmaster | 8:f2a567ee3a46 | 54 | #endif |
webmaster | 10:aabd720e632c | 55 | buf, |
webmaster | 10:aabd720e632c | 56 | sizeof(buf), |
webmaster | 10:aabd720e632c | 57 | "%08X-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X", |
webmaster | 10:aabd720e632c | 58 | guid.Data1, guid.Data2, guid.Data3, |
webmaster | 10:aabd720e632c | 59 | guid.Data4[0], guid.Data4[1], |
webmaster | 10:aabd720e632c | 60 | guid.Data4[2], guid.Data4[3], |
webmaster | 10:aabd720e632c | 61 | guid.Data4[4], guid.Data4[5], |
webmaster | 10:aabd720e632c | 62 | guid.Data4[6], guid.Data4[7]); |
webmaster | 10:aabd720e632c | 63 | return std::string(buf); |
webmaster | 10:aabd720e632c | 64 | }; |
webmaster | 10:aabd720e632c | 65 | |
webmaster | 10:aabd720e632c | 66 | }; |
webmaster | 10:aabd720e632c | 67 | */ |