mirror of
https://github.com/jedisct1/libsodium.git
synced 2026-08-25 08:37:13 +09:00
Keep ming Visual C++ happy
This commit is contained in:
+2
-2
@@ -5,14 +5,14 @@
|
||||
|
||||
/* "Test Case 2" from RFC 4231 */
|
||||
unsigned char key[32] = "Jefe";
|
||||
unsigned char c[28] = "what do ya want for nothing?";
|
||||
unsigned char c[] = "what do ya want for nothing?";
|
||||
|
||||
unsigned char a[32];
|
||||
|
||||
int main(void)
|
||||
{
|
||||
int i;
|
||||
crypto_auth_hmacsha512256(a,c,sizeof c,key);
|
||||
crypto_auth_hmacsha512256(a,c,sizeof c - 1U,key);
|
||||
for (i = 0;i < 32;++i) {
|
||||
printf(",0x%02x",(unsigned int) a[i]);
|
||||
if (i % 8 == 7) printf("\n");
|
||||
|
||||
Reference in New Issue
Block a user