Skip to content

Instantly share code, notes, and snippets.

View maobon's full-sized avatar

Bob maobon

  • PEK
View GitHub Profile
@maobon
maobon / gist:a996c7d158ad930de56a3803b9eb3b0f
Created May 19, 2020 06:20
打印uint8_t格式的证书
// in xcode print uint8_t kRsaAttestRootCert
void printHex(uint8_t *arr, int len){
for (int i = 0; i < len; i++){
printf("%02X", arr[i]);
}
printf("\n");
}