Home
last modified time | relevance | path

Searched refs:tag2 (Results 1 – 16 of 16) sorted by relevance

/freebsd-14-stable/crypto/heimdal/kdc/
HDkdc-replay.c184 unsigned int tag2; in main() local
186 &cl, &ty, &tag2, NULL); in main()
192 if (tag != tag2) in main()
/freebsd-14-stable/sys/opencrypto/
HDcryptosoft.c327 u_char tag2[GMAC_DIGEST_LEN]; in swcr_gmac() member
388 s.tag2); in swcr_gmac()
389 if (timingsafe_bcmp(s.tag, s.tag2, swa->sw_mlen) != 0) in swcr_gmac()
405 u_char tag2[GMAC_DIGEST_LEN]; in swcr_gcm() member
552 s.tag2); in swcr_gcm()
553 r = timingsafe_bcmp(s.tag, s.tag2, swa->sw_mlen); in swcr_gcm()
680 u_char tag2[AES_CBC_MAC_HASH_LEN]; in swcr_ccm_cbc_mac() member
720 s.tag2); in swcr_ccm_cbc_mac()
721 if (timingsafe_bcmp(s.tag, s.tag2, swa->sw_mlen) != 0) in swcr_ccm_cbc_mac()
739 u_char tag2[AES_CBC_MAC_HASH_LEN]; in swcr_ccm() member
[all …]
/freebsd-14-stable/contrib/byacc/test/
HDerr_syntax26.y6 %type <tag2
HDerr_syntax23.y11 %type <tag2> recur
HDerr_syntax24.y12 %type <tag2> expr
HDerr_syntax25.y17 %type <tag2> expr
/freebsd-14-stable/contrib/dialog/samples/
HDtreeview11 tag2 two off 1 \
HDtreeview413 tag2 two off 1 second \
HDtreeview219 tag2:two:off:1
/freebsd-14-stable/sys/crypto/openssl/
HDossl_chacha20.c308 unsigned char tag[POLY1305_HASH_LEN], tag2[POLY1305_HASH_LEN]; in ossl_chacha20_poly1305_decrypt() local
367 crypto_copydata(crp, crp->crp_digest_start, mlen, tag2); in ossl_chacha20_poly1305_decrypt()
368 if (timingsafe_bcmp(tag, tag2, mlen) != 0) { in ossl_chacha20_poly1305_decrypt()
/freebsd-14-stable/sys/dev/etherswitch/micrel/
HDksz8995ma.c484 int tag1, tag2, portreg; in ksz8995ma_getport() local
495 tag2 = ksz8995ma_readreg(dev, KSZ8995MA_PC4_BASE + in ksz8995ma_getport()
497 p->es_pvid = (tag1 & 0x0f) << 8 | tag2; in ksz8995ma_getport()
/freebsd-14-stable/usr.sbin/bsdconfig/share/
HDdialog.subr869 # $tag1 $item1 $tag2 $item2 ...
962 # $tag1 $item1 $help1 $tag2 $item2 $help2 ...
1067 # $tag1 $item1 $status1 $tag2 $item2 $status2 ...
1163 # $tag1 $item1 $status1 $tag2 $item2 $status2 ...
1188 # $tag2 $item2 $status2 $help2 ...
1304 # $tag2 $item2 $status2 $help2 ...
1979 # f_dialog_menutag2item $tag_chosen $tag1 $item1 $tag2 $item2 ...
2013 # $tag2 $item2 $help2 ...
2046 # f_dialog_menutag2index $tag_chosen $tag1 $item1 $tag2 $item2 ...
2081 # $tag2 $item2 $help2 ...
[all …]
/freebsd-14-stable/contrib/unbound/doc/
HDexample.conf.in267 # define-tag: "tag1 tag2 tag3"
346 # access-control-tag: 192.0.2.0/24 "tag2 tag3"
355 # access-control-tag-data: 192.0.2.0/24 tag2 "A 127.0.0.1"
383 # interface-tag: eth0@5003 "tag2 tag3"
402 # interface-tag-data: eth0@5003 tag2 "A 127.0.0.1"
910 # local-zone-tag: "example.com" "tag2 tag3"
/freebsd-14-stable/sys/netpfil/ipfilter/netinet/
HDfil.c6675 ipf_matchtag(ipftag_t *tag1, ipftag_t *tag2) argument
6677 if (tag1 == tag2)
6680 if ((tag1->ipt_num[0] == 0) && (tag2->ipt_num[0] == 0))
6683 if ((tag1->ipt_num[0] == tag2->ipt_num[0]) &&
6684 (tag1->ipt_num[1] == tag2->ipt_num[1]) &&
6685 (tag1->ipt_num[2] == tag2->ipt_num[2]) &&
6686 (tag1->ipt_num[3] == tag2->ipt_num[3]))
/freebsd-14-stable/contrib/bearssl/test/
HDtest_crypto.c5151 unsigned char key[32], iv[12], tag1[16], tag2[16]; in test_Poly1305_inner() local
5162 iref(key, iv, tmp, u, aad, u, tag2, in test_Poly1305_inner()
5168 if (memcmp(tag1, tag2, sizeof tag1) != 0) { in test_Poly1305_inner()
/freebsd-14-stable/crypto/openssl/test/
HDevp_extra_test.c4171 const unsigned char *tag2; member
4279 if (!TEST_mem_eq(t->tag2, taglen, tag, taglen)) { in test_gcm_reinit()