Searched refs:plainSize (Results 1 – 2 of 2) sorted by relevance
| /TwlSDK-5.5/build/demos.TWL/aes/encrypt/src/ |
| D | main.c | 79 u32 plainSize; in SampleMain() local 87 plainSize = (u32)STD_GetStringLength(pPlainText) + 1; in SampleMain() 88 cipherSize = plainSize + AES_ENCRYPT_HEADER_SIZE; in SampleMain() 90 pDecrypted = OS_Alloc(plainSize); in SampleMain() 121 plainSize, // Size of the data to encrypt in SampleMain() 147 DEMO_PrintBytes(pPlainText, plainSize); in SampleMain() 182 DEMO_PrintBytes(pDecrypted, plainSize); in SampleMain() 190 if( MI_CpuComp8(pDecrypted, pPlainText, plainSize) == 0 ) in SampleMain()
|
| /TwlSDK-5.5/build/demos.TWL/aes/encrypt-and-sign/src/ |
| D | main.c | 79 u32 plainSize; in SampleMain() local 87 plainSize = (u32)STD_GetStringLength(pPlainText) + 1; in SampleMain() 88 cipherSize = plainSize + AES_SIGN_HEADER_SIZE; in SampleMain() 90 pDecrypted = OS_Alloc(plainSize); in SampleMain() 122 plainSize, // Size of the data to encrypt in SampleMain() 148 DEMO_PrintBytes(pPlainText, plainSize); in SampleMain() 187 DEMO_PrintBytes(pDecrypted, plainSize); in SampleMain() 195 if( MI_CpuComp8(pDecrypted, pPlainText, plainSize) == 0 ) in SampleMain()
|