15 lines
266 B
C
15 lines
266 B
C
|
|
||
|
#include <stdint.h>
|
||
|
#include "cerdef.h"
|
||
|
#include "cert_export.h"
|
||
|
/*
|
||
|
默认生成 MAC地址 + 主板序列号 + 磁盘ID的SHA-256哈希
|
||
|
用于硬件唯一标识
|
||
|
*/
|
||
|
|
||
|
namespace os {
|
||
|
|
||
|
// 获取mac地址
|
||
|
extern void CEREXPORT GetMacAddress(MacAddr_t* mac);
|
||
|
|
||
|
} // os
|