/src/sys/external/isc/libsodium/dist/test/default/ |
core2.c | 18 static unsigned char secondkey[32]; variable in typeref:typename:unsigned char[32] 25 crypto_core_hsalsa20(secondkey, nonceprefix, firstkey, c); 32 printf("0x%02x", (unsigned int) secondkey[i]);
|
stream2.c | 5 static unsigned char secondkey[32] = { 0xdc, 0x90, 0x8d, 0xda, 0x0b, 0x93, 0x44, variable in typeref:typename:unsigned char[32] 22 crypto_stream_salsa20(output, sizeof output, noncesuffix, secondkey); 31 secondkey); 36 secondkey);
|
core2.c | 18 static unsigned char secondkey[32]; variable in typeref:typename:unsigned char[32] 25 crypto_core_hsalsa20(secondkey, nonceprefix, firstkey, c); 32 printf("0x%02x", (unsigned int) secondkey[i]);
|
stream2.c | 5 static unsigned char secondkey[32] = { 0xdc, 0x90, 0x8d, 0xda, 0x0b, 0x93, 0x44, variable in typeref:typename:unsigned char[32] 22 crypto_stream_salsa20(output, sizeof output, noncesuffix, secondkey); 31 secondkey); 36 secondkey);
|
core3.c | 5 static unsigned char SECONDKEY[32] = { 0xdc, 0x90, 0x8d, 0xda, 0x0b, 0x93, 0x44, 20 unsigned char *secondkey; local in function:main 31 secondkey = (unsigned char *) sodium_malloc(32); 32 memcpy(secondkey, SECONDKEY, 32); 49 crypto_core_salsa20(output + pos, in, secondkey, c); 67 crypto_core_salsa2012(output + pos, in, secondkey, c); 84 crypto_core_salsa208(output + pos, in, secondkey, c); 107 sodium_free(secondkey);
|
core3.c | 5 static unsigned char SECONDKEY[32] = { 0xdc, 0x90, 0x8d, 0xda, 0x0b, 0x93, 0x44, 20 unsigned char *secondkey; local in function:main 31 secondkey = (unsigned char *) sodium_malloc(32); 32 memcpy(secondkey, SECONDKEY, 32); 49 crypto_core_salsa20(output + pos, in, secondkey, c); 67 crypto_core_salsa2012(output + pos, in, secondkey, c); 84 crypto_core_salsa208(output + pos, in, secondkey, c); 107 sodium_free(secondkey);
|