Searched refs:plainSize (Results 1 – 2 of 2) sorted by relevance
| /TwlSDK-5.3.1/build/demos.TWL/aes/encrypt-and-sign/src/ |
| D | main.c | 78 u32 plainSize; in SampleMain() local 86 plainSize = (u32)STD_GetStringLength(pPlainText) + 1; in SampleMain() 87 cipherSize = plainSize + AES_SIGN_HEADER_SIZE; in SampleMain() 89 pDecrypted = OS_Alloc(plainSize); in SampleMain() 121 plainSize, // Size of the data to encrypt in SampleMain() 147 DEMO_PrintBytes(pPlainText, plainSize); in SampleMain() 186 DEMO_PrintBytes(pDecrypted, plainSize); in SampleMain() 194 if( MI_CpuComp8(pDecrypted, pPlainText, plainSize) == 0 ) in SampleMain()
|
| /TwlSDK-5.3.1/build/demos.TWL/aes/encrypt/src/ |
| D | main.c | 78 u32 plainSize; in SampleMain() local 86 plainSize = (u32)STD_GetStringLength(pPlainText) + 1; in SampleMain() 87 cipherSize = plainSize + AES_ENCRYPT_HEADER_SIZE; in SampleMain() 89 pDecrypted = OS_Alloc(plainSize); in SampleMain() 120 plainSize, // Size of the data to encrypt in SampleMain() 146 DEMO_PrintBytes(pPlainText, plainSize); in SampleMain() 181 DEMO_PrintBytes(pDecrypted, plainSize); in SampleMain() 189 if( MI_CpuComp8(pDecrypted, pPlainText, plainSize) == 0 ) in SampleMain()
|