Lines Matching defs:nonce
11 static unsigned char nonce[24] = { 0x69, 0x69, 0x6e, 0xe9, 0x55, 0xb6,
41 crypto_secretbox_easy(c, m, 131, nonce, firstkey);
47 crypto_secretbox_detached(c, mac, m, 131, nonce, firstkey);
59 crypto_secretbox_easy(c, c + 1, 131, nonce, firstkey);
66 crypto_secretbox_easy(c + 1, c, 131, nonce, firstkey);
73 crypto_secretbox_easy(c, c, 131, nonce, firstkey);
79 assert(crypto_secretbox_easy(c, m, 0, nonce, firstkey) == 0);
83 crypto_secretbox_easy(c, c, 0, nonce, firstkey);
88 if (crypto_secretbox_open_easy(c, c, crypto_secretbox_MACBYTES, nonce,
97 if (crypto_secretbox_open_easy(c, c, crypto_secretbox_MACBYTES, nonce,
106 crypto_secretbox_easy(c, c + 10, 10, nonce, firstkey);
114 crypto_secretbox_easy(c + 10, c, 10, nonce, firstkey);