Hello
I have problem with my project, The point is to send simple text to hardware hashing, and send back the result hash, i made the code
Here is the code: http://wklej.to/lh0DD
And password for open this link : d32f32
The problem is whatever i sent no matter which letter or number im always getting as result decoded 536806312, and before something like this
z P?rşőQ[©¸¤JĐä?`ŻčîĄqEs
Even when i changed code to
for(;;)
{
Error = AS1_ReceiveBlock(MySerialPtr, InpData, 1U);
while (!DataReceivedFlg);
mmcau_sha256_initialize_output(out);
sprintf(hashed, "%d ", out);
Error = AS1_SendBlock(MySerialPtr, hashed, sizeof(hashed)); /*
DataReceivedFlg = FALSE;
}
Or without sprintf, always was the same result, i really dont know where the problem is, i tried to rewiev few's pdf, change the variables type with no positive result. say nothing of week waiting for library , it should be included in CW btw. Im looking forward for helpful reply.
Regards Alex