Advertisement
wojtek327

Untitled

Aug 8th, 2023
16
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. uint8_t encryptBuffer[32] = {0x00};
  2.  
  3. for(uint8_t i = 0; i<20; i++)
  4. {
  5. encryptBuffer[i] = rand() % (200 - 100 + 1)) + 1;
  6. }
  7.  
  8. aes128_encrypt(&encryptBuffer[0], aesKey128);
  9. aes128_encrypt(&encryptBuffer[16], aesKey128);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement