blockchain , sdchain cpp sdk and demo

Dependencies:   EthernetInterface mbed-rtos mbed uniqueCPUID

Fork of bcsdk by SDchain C Plus Plus Team

Uuid.cpp

Committer:
webmaster
Date:
2018-08-08
Revision:
18:ec6cd7cfe3f8
Parent:
10:aabd720e632c

File content as of revision 18:ec6cd7cfe3f8:

#include "Uuid.h"

std::string Uuid::getUuid()
{
    string str = "17e48179-3500-48db-9335-b69d9af1117f";
    char pUUID[128] = {0};
    getUniqueIDAsStr(pUUID);
    printf("CPUID = %s \n",pUUID);
    
    return str;
}