Home | History | Annotate | Download | only in default

Lines Matching defs:output

16 static unsigned char output[4194304];
26 randombytes_buf(output, sizeof output);
27 crypto_stream(output, sizeof output, nonce, firstkey);
28 crypto_hash_sha256(h, output, sizeof output);
32 assert(sizeof output > 4000);
34 crypto_stream_xsalsa20_xor_ic(output, output, 4000, nonce, 0U, firstkey);
36 assert(output[i] == 0);
38 crypto_stream_xsalsa20_xor_ic(output, output, 4000, nonce, 1U, firstkey);
39 crypto_hash_sha256(h, output, sizeof output);
44 memset(output, i, 64);
45 crypto_stream(output, (int) (i & 0xff), nonce, firstkey);
46 sodium_bin2hex(hex, sizeof hex, output, 64);
50 memset(output, 0, 192);
51 crypto_stream_xsalsa20_xor_ic(output, output, 192, nonce,
53 sodium_bin2hex(hex, 192 * 2 + 1, output, 192);