/src/sys/external/isc/libsodium/dist/src/libsodium/crypto_stream/xchacha20/ |
stream_xchacha20.c | 32 unsigned char k2[crypto_core_hchacha20_OUTPUTBYTES]; local in function:crypto_stream_xchacha20 34 crypto_core_hchacha20(k2, n, k, NULL); 35 COMPILER_ASSERT(crypto_stream_chacha20_KEYBYTES <= sizeof k2); 41 k2); 49 unsigned char k2[crypto_core_hchacha20_OUTPUTBYTES]; local in function:crypto_stream_xchacha20_xor_ic 51 crypto_core_hchacha20(k2, n, k, NULL); 53 c, m, mlen, n + crypto_core_hchacha20_INPUTBYTES, ic, k2);
|
/src/lib/libc/db/btree/ |
bt_utils.c | 152 DBT k2; local in function:__bt_cmp 173 k2.data = bl->bytes; 174 k2.size = bl->ksize; 181 k2.data = bi->bytes; 182 k2.size = bi->ksize; 188 &k2.size, &t->bt_rdata.data, &t->bt_rdata.size)) 190 k2.data = t->bt_rdata.data; 192 return ((*t->bt_cmp)(k1, &k2));
|
/src/sys/external/isc/libsodium/dist/src/libsodium/crypto_aead/xchacha20poly1305/sodium/ |
aead_xchacha20poly1305.c | 28 unsigned char k2[crypto_core_hchacha20_OUTPUTBYTES]; local in function:crypto_aead_xchacha20poly1305_ietf_encrypt_detached 32 crypto_core_hchacha20(k2, npub, k, NULL); 36 (c, mac, maclen_p, m, mlen, ad, adlen, nsec, npub2, k2); 37 sodium_memzero(k2, crypto_core_hchacha20_OUTPUTBYTES); 81 unsigned char k2[crypto_core_hchacha20_OUTPUTBYTES]; local in function:crypto_aead_xchacha20poly1305_ietf_decrypt_detached 85 crypto_core_hchacha20(k2, npub, k, NULL); 89 (m, nsec, c, clen, mac, ad, adlen, npub2, k2); 90 sodium_memzero(k2, crypto_core_hchacha20_OUTPUTBYTES);
|
/src/sys/opencrypto/ |
aesxcbcmac.h | 16 u_int8_t k2[AES_BLOCKSIZE]; member in struct:__anon3c94b97d0108
|
/src/tests/lib/libc/gen/ |
t_ftok.c | 65 key_t k1, k2, k3; local in function:ATF_TC_BODY 76 k2 = ftok(hlnk, key); 80 ATF_REQUIRE(k2 != -1); 83 if (k1 != k2)
|
/src/sys/external/isc/libsodium/dist/test/default/ |
box_easy2.c | 21 unsigned char *k2; local in function:main 44 k2 = (unsigned char *) sodium_malloc(crypto_box_BEFORENMBYTES); 81 ret = crypto_box_beforenm(k2, small_order_p, alicesk); 86 ret = crypto_box_beforenm(k2, bobpk, alicesk); 99 k2) != 0) { 104 k2) == 0) { 130 nonce, k2) != 0) { 142 sodium_free(k2);
|
/src/sys/external/bsd/compiler_rt/dist/lib/tsan/tests/rtl/ |
tsan_posix.cc | 62 thread_key k2 = thread_key(key, &mtx, 43, &cnt); local in function:TEST 65 EXPECT_EQ(__interceptor_pthread_create(&th[1], 0, dtors_thread, &k2), 0);
|
/src/sys/crypto/skipjack/ |
skipjack.c | 86 #define g(k0, k1, k2, k3, ih, il, oh, ol) \ 90 oh = k##k2 [ol] ^ oh; \ 101 #define g_inv(k0, k1, k2, k3, ih, il, oh, ol) \ 104 oh = k##k2 [ol] ^ ih; \ 143 u_int8_t * k2 = key_tables [2]; local in function:skipjack_forwards 211 u_int8_t * k2 = key_tables [2]; local in function:skipjack_backwards
|
/src/usr.bin/tset/ |
tset.c | 69 const char *k1, *k2; local in function:main 207 k2 = ";\nunset noglob;\n"; 210 k2 = ";\nexport TERM;\n"; 212 (void)printf("%s%s%s", k1, ttype, k2);
|
/src/games/adventure/ |
init.c | 68 int loc, newloc, oldloc, oldloc2, wasdark, gaveup, kq, k, k2; variable in typeref:typename:int
|
/src/sys/crypto/adiantum/ |
adiantum.c | 225 uint64_t k0, k1, k2, k3, k4; /* 64-bit extension of h */ 262 k2 = h2 + (m2 & 0x03ffffff); 267 p0 = r0*k0 + 5*r4*k1 + 5*r3*k2 + 5*r2*k3 + 5*r1*k4; 268 p1 = r1*k0 + r0*k1 + 5*r4*k2 + 5*r3*k3 + 5*r2*k4; 269 p2 = r2*k0 + r1*k1 + r0*k2 + 5*r4*k3 + 5*r3*k4; 270 p3 = r3*k0 + r2*k1 + r1*k2 + r0*k3 + 5*r4*k4; 271 p4 = r4*k0 + r3*k1 + r2*k2 + r1*k3 + r0*k4; 223 uint64_t k0, k1, k2, k3, k4; \/* 64-bit extension of h *\/ local in function:poly1305_update_blocks
|