Lines Matching defs:outsize
1028 wg_algo_mac(uint8_t out[], const size_t outsize,
1035 blake2s_init(&state, outsize, key, keylen);
1044 wg_algo_mac_mac1(uint8_t out[], const size_t outsize,
1058 blake2s_init(&state, outsize, key, sizeof(key));
1065 wg_algo_mac_cookie(uint8_t out[], const size_t outsize,
1072 blake2s_init(&state, outsize, NULL, 0);
1204 outsize;
1209 error = crypto_aead_chacha20poly1305_ietf_encrypt(out, &outsize, plain,
1212 KASSERT(outsize == expected_outsize);
1223 long long unsigned int outsize;
1228 error = crypto_aead_chacha20poly1305_ietf_decrypt(out, &outsize, NULL,
1231 KASSERT(outsize == expected_outsize);
1242 long long unsigned int outsize;
1246 error = crypto_aead_xchacha20poly1305_ietf_encrypt(out, &outsize,
1249 KASSERT(outsize == expected_outsize);
1259 long long unsigned int outsize;
1262 error = crypto_aead_xchacha20poly1305_ietf_decrypt(out, &outsize, NULL,
1265 KASSERT(outsize == expected_outsize);
3029 WG_DLOG("outsize=%u\n", (u_int)decrypted_len);