/************************************************************************************************** Phyplus Microelectronics Limited confidential and proprietary. All rights reserved. IMPORTANT: All rights of this software belong to Phyplus Microelectronics Limited ("Phyplus"). Your use of this Software is limited to those specific rights granted under the terms of the business contract, the confidential agreement, the non-disclosure agreement and any other forms of agreements as a customer or a partner of Phyplus. You may not use this Software unless you agree to abide by the terms of these agreements. You acknowledge that the Software may not be modified, copied, distributed or disclosed unless embedded on a Phyplus Bluetooth Low Energy (BLE) integrated circuit, either as a product or is integrated into your products. Other than for the aforementioned purposes, you may not use, reproduce, copy, prepare derivative works of, modify, distribute, perform, display or sell this Software and/or its documentation for any purposes. YOU FURTHER ACKNOWLEDGE AND AGREE THAT THE SOFTWARE AND DOCUMENTATION ARE PROVIDED AS IS WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY, TITLE, NON-INFRINGEMENT AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL PHYPLUS OR ITS SUBSIDIARIES BE LIABLE OR OBLIGATED UNDER CONTRACT, NEGLIGENCE, STRICT LIABILITY, CONTRIBUTION, BREACH OF WARRANTY, OR OTHER LEGAL EQUITABLE THEORY ANY DIRECT OR INDIRECT DAMAGES OR EXPENSES INCLUDING BUT NOT LIMITED TO ANY INCIDENTAL, SPECIAL, INDIRECT, PUNITIVE OR CONSEQUENTIAL DAMAGES, LOST PROFITS OR LOST DATA, COST OF PROCUREMENT OF SUBSTITUTE GOODS, TECHNOLOGY, SERVICES, OR ANY CLAIMS BY THIRD PARTIES (INCLUDING BUT NOT LIMITED TO ANY DEFENSE THEREOF), OR OTHER SIMILAR COSTS. **************************************************************************************************/ /******************************************************************************* * @file ali_genie_profile.c * @brief Contains all functions support for ali genie profile * @version 1.0 * @date 28. Feb. 2019 * @author Zhongqi Yang * * Copyright(C) 2016, PhyPlus Semiconductor * All rights reserved. * *******************************************************************************/ #include "sha256.h" #include "flash.h" #include #include #include #include "ali_genie_profile.h" #define ALI_GENIE_PID_LEN 4 #define ALI_GENIE_SEC_LEN 16 #define VENDOR_PRODUCT_ID_ADDR 0x4030 #define VENDOR_PRODUCT_SECRERT_ADDR 0x4010 #define VENDOR_PRODUCT_MAC_ADDR 0x4000 unsigned char ali_genie_pid[4] ={0x00}; unsigned char ali_genie_mac[6] ={0x00}; unsigned char ali_genie_macStr[12]; unsigned char ali_genie_sec[16] ={0x00}; unsigned char ali_genie_auth[16]={0x00}; void hex2Str( unsigned char* pIn,unsigned char*pOut ,int len ,int reverse) { int i; unsigned char hex[] = "0123456789abcdef"; // Start from end of addr if(reverse) { pIn += len; for ( i = len; i > 0; i-- ) { *pOut++ = hex[*--pIn >> 4]; *pOut++ = hex[*pIn & 0x0F]; } } else { for ( i = 0; i > 4]; *pOut++ = hex[*pIn++ & 0x0F]; } } } int gen_aligenie_auth_val(void) { int i, buflen, ret = 0; //unsigned char buf[]="000293e2,abcdf0f1f2f3,53daed805bc534a4a93c825ed20a7063"; unsigned char buf[54]; // unsigned char pidStr[8]; // unsigned char macAddrStr[12]; // unsigned char secStr[32]; unsigned char sha256sum[32]; mbedtls_sha256_context ctx; //load ProductID for(i=0;i<4;i++) ali_genie_pid[i]=(uint8_t)ReadFlash(VENDOR_PRODUCT_ID_ADDR+i); hex2Str(ali_genie_pid,buf,4,0); printf("\n === PID === \n"); for(i=0;i<4;i++) printf("%02X ",ali_genie_pid[i]); printf("\n"); buf[8]=0x2c; //load MAC uint32 address = VENDOR_PRODUCT_MAC_ADDR; ali_genie_mac[3] = (uint8_t)ReadFlash(address ++); ali_genie_mac[2] = (uint8_t)ReadFlash(address ++); ali_genie_mac[1] = (uint8_t)ReadFlash(address ++); ali_genie_mac[0] = (uint8_t)ReadFlash(address ++); ali_genie_mac[5] = (uint8_t)ReadFlash(address ++); ali_genie_mac[4] = (uint8_t)ReadFlash(address); printf("\n === MAC === \n"); for(i=0;i<6;i++) printf("%02X ",ali_genie_mac[5-i]); printf("\n"); //hex2Str(ali_genie_mac,buf+9,6,1); hex2Str(ali_genie_mac,ali_genie_macStr,6,1); for(i=0;i<12;i++) buf[9+i]=ali_genie_macStr[i]; buf[21]=0x2c; //load secert for(i=0;i<16;i++) ali_genie_sec[i]=(uint8_t)ReadFlash(VENDOR_PRODUCT_SECRERT_ADDR+i); hex2Str(ali_genie_sec,buf+22,16,0); mbedtls_sha256_init( &ctx ); if( ( ret = mbedtls_sha256_starts_ret( &ctx, 0 ) ) != 0 ) goto fail; buflen = 54; // printf("\n input %d ",buflen); // for(i=0;i