Home
last modified time | relevance | path

Searched refs:h3 (Results 1 – 18 of 18) sorted by relevance

/dragonfly/sys/crypto/poly1305/
H A Dpoly1305.c89 h3 = st->h[3]; in poly1305_blocks()
154 st->h[3] = h3; in poly1305_blocks()
217 h3 = st->h[3]; in poly1305_finish()
225 h3 += c; in poly1305_finish()
226 c = h3 >> 26; in poly1305_finish()
227 h3 = h3 & 0x3ffffff; in poly1305_finish()
246 g3 = h3 + c; in poly1305_finish()
262 h3 = (h3 & mask) | g3; in poly1305_finish()
269 h3 = ((h3 >> 18) | (h4 << 8)) & 0xffffffff; in poly1305_finish()
279 h3 = (unsigned long)f; in poly1305_finish()
[all …]
/dragonfly/crypto/libressl/crypto/poly1305/
H A Dpoly1305-donna.c107 h3 = st->h[3]; in poly1305_blocks()
172 st->h[3] = h3; in poly1305_blocks()
237 h3 = st->h[3]; in poly1305_finish()
245 h3 += c; in poly1305_finish()
246 c = h3 >> 26; in poly1305_finish()
247 h3 = h3 & 0x3ffffff; in poly1305_finish()
266 g3 = h3 + c; in poly1305_finish()
282 h3 = (h3 & mask) | g3; in poly1305_finish()
289 h3 = ((h3 >> 18) | (h4 << 8)) & 0xffffffff; in poly1305_finish()
299 h3 = (unsigned long)f; in poly1305_finish()
[all …]
/dragonfly/crypto/openssh/
H A Dpoly1305.c36 uint32_t h0,h1,h2,h3,h4; in poly1305_auth() local
69 h3 = 0; in poly1305_auth()
86 h3 += ((((uint64_t)t3 << 32) | t2) >> 14) & 0x3ffffff; in poly1305_auth()
91 …t[0] = mul32x32_64(h0,r0) + mul32x32_64(h1,s4) + mul32x32_64(h2,s3) + mul32x32_64(h3,s2) + mul32x… in poly1305_auth()
100 t[3] += b; h3 = (uint32_t)t[3] & 0x3ffffff; b = (uint32_t)(t[3] >> 26); in poly1305_auth()
123 h3 += ((((uint64_t)t3 << 32) | t2) >> 14) & 0x3ffffff; in poly1305_auth()
132 h3 += b; b = h3 >> 26; h3 = h3 & 0x3ffffff; in poly1305_auth()
140 g3 = h3 + b; b = g3 >> 26; g3 &= 0x3ffffff; in poly1305_auth()
148 h3 = (h3 & nb) | (g3 & b); in poly1305_auth()
153 f2 = ((h2 >> 12) | (h3 << 14)) + (uint64_t)U8TO32_LE(&key[24]); in poly1305_auth()
[all …]
H A Dumac.c418 UINT64 h1,h2,h3; in nh_aux() local
428 h3 = *((UINT64 *)hp + 2); in nh_aux()
441 h3 += MUL64((k8 + d0), (k12 + d4)); in nh_aux()
445 h3 += MUL64((k9 + d1), (k13 + d5)); in nh_aux()
449 h3 += MUL64((k10 + d2), (k14 + d6)); in nh_aux()
463 ((UINT64 *)hp)[2] = h3; in nh_aux()
473 UINT64 h1,h2,h3,h4; in nh_aux() local
484 h3 = *((UINT64 *)hp + 2); in nh_aux()
499 h3 += MUL64((k8 + d0), (k12 + d4)); in nh_aux()
504 h3 += MUL64((k9 + d1), (k13 + d5)); in nh_aux()
[all …]
/dragonfly/nrelease/root/autorun/
H A Dstylesheet.css5 h1,h2,h3,h4,h5,h6,p,a,ul,li{margin:0; padding:0;} selector
6 h3 span {display:none;}
8 h3 {margin-top:25px;margin-bottom:10px;} selector
17 #welcome h3 {display:block;width:272px;height:22px;background:url("welcome.png");}
18 #started h3 {display:block;width:272px;height:22px;background:url("started.png");}
24 #links h3 {margin:0;margin-top:5px;margin-left:2px;}
/dragonfly/crypto/libressl/crypto/curve25519/
H A Dcurve25519.c85 carry3 = h3 + (1 << 24); h4 += carry3 >> 25; h3 -= carry3 & kTop39Bits; in fe_frombytes()
98 h[3] = h3; in fe_frombytes()
133 int32_t h3 = h[3]; in fe_tobytes() local
161 h4 += h3 >> 25; h3 &= kBottom25Bits; in fe_tobytes()
185 s[10] = h3 >> 3; in fe_tobytes()
186 s[11] = h3 >> 11; in fe_tobytes()
489 h[3] = h3; in fe_mul()
630 h[3] = h3; in fe_sq()
868 h3 += h3; in fe_sq2()
898 h[3] = h3; in fe_sq2()
[all …]
/dragonfly/crypto/libressl/crypto/sha/
H A Dsha_locl.h75 ll=(c)->h3; HOST_l2c(ll,(s)); \
112 c->h3=INIT_DATA_h3; in SHA1_Init()
204 D=c->h3; in HASH_BLOCK_DATA_ORDER()
328 c->h3=(c->h3+B)&0xffffffffL; in HASH_BLOCK_DATA_ORDER()
336 D=c->h3; in HASH_BLOCK_DATA_ORDER()
385 D=c->h3; in HASH_BLOCK_DATA_ORDER()
404 c->h3=(c->h3+D)&0xffffffffL; in HASH_BLOCK_DATA_ORDER()
412 D=c->h3; in HASH_BLOCK_DATA_ORDER()
/dragonfly/contrib/wpa_supplicant/src/crypto/
H A Dfips_prf_openssl.c36 context.h3 = state[3]; in sha1_transform()
42 state[3] = context.h3; in sha1_transform()
/dragonfly/usr.sbin/rpcbind/
H A Dpmap_svc.c288 int h1, h2, h3, h4, p1, p2; in pmapproc_getport() local
301 if (sscanf(ua, "%d.%d.%d.%d.%d.%d", &h1, &h2, &h3, in pmapproc_getport()
306 "%d.%d.%d.%d.%d.%d", h1, h2, h3, h4, p1, p2); in pmapproc_getport()
H A Drpcb_svc_com.c455 int h1, h2, h3, h4, p1, p2; in xdr_rmtcall_result() local
460 &h1, &h2, &h3, &h4, &p1, &p2) != 6) in xdr_rmtcall_result()
1398 int h1, h2, h3, h4, p1, p2; in add_pmaplist() local
1412 &h1, &h2, &h3, &h4, &p1, &p2) != 6) in add_pmaplist()
/dragonfly/contrib/openbsd_libm/src/ld80/
H A De_lgammal.c139 h3 = 5.869021995186925517228323497501767586078E3L, variable
372 p2 = h0 + y * (h1 + y * (h2 + y * (h3 + y * (h4 + y * (h5 + y))))); in lgammal()
/dragonfly/crypto/libressl/crypto/evp/
H A De_aes_cbc_hmac_sha1.c350 pmac->u[3] |= key->md.h3 & mask; in aesni_cbc_hmac_sha1_cipher()
368 pmac->u[3] |= key->md.h3 & mask; in aesni_cbc_hmac_sha1_cipher()
380 pmac->u[3] |= key->md.h3 & mask; in aesni_cbc_hmac_sha1_cipher()
/dragonfly/crypto/libressl/include/openssl/
H A Dsha.h94 SHA_LONG h0,h1,h2,h3,h4; member
/dragonfly/contrib/zstd/lib/compress/
H A Dzstd_double_fast.c431 size_t const h3 = ZSTD_hashPtr(ip+1, hBitsL, 8); in ZSTD_compressBlock_doubleFast_extDict_generic() local
432 U32 const matchIndex3 = hashLong[h3]; in ZSTD_compressBlock_doubleFast_extDict_generic()
436 hashLong[h3] = curr + 1; in ZSTD_compressBlock_doubleFast_extDict_generic()
/dragonfly/crypto/libressl/ssl/
H A Ds3_cbc.c309 l2n(sha1->h3, md_out); in tls1_sha1_final_raw()
/dragonfly/contrib/binutils-2.27/gas/doc/
H A Dc-vax.texi108 (@samp{-h3}) implies that case should be preserved. The value 1 is
/dragonfly/contrib/gcc-4.7/gcc/config/i386/
H A Di386.c36469 unsigned HOST_WIDE_INT h1, h2, h3, h4; in expand_vec_perm_interleave2() local
36474 h3 = h2 << nelt2; in expand_vec_perm_interleave2()
36475 h4 = h3 << nelt2; in expand_vec_perm_interleave2()
36480 if ((contents & (h1 | h3)) == contents) in expand_vec_perm_interleave2()
36525 else if ((contents & (h2 | h3)) == contents) in expand_vec_perm_interleave2()
/dragonfly/contrib/gcc-8.0/gcc/config/i386/
H A Di386.c47404 unsigned HOST_WIDE_INT h1, h2, h3, h4; in expand_vec_perm_interleave2() local
47409 h3 = h2 << nelt2; in expand_vec_perm_interleave2()
47410 h4 = h3 << nelt2; in expand_vec_perm_interleave2()
47415 if ((contents & (h1 | h3)) == contents) in expand_vec_perm_interleave2()
47460 else if ((contents & (h2 | h3)) == contents) in expand_vec_perm_interleave2()