Home
last modified time | relevance | path

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

/freebsd/crypto/heimdal/kdc/
H A Dkdc-replay.c184 unsigned int tag2; in main() local
186 &cl, &ty, &tag2, NULL); in main()
192 if (tag != tag2) in main()
/freebsd/sys/opencrypto/
H A Dcryptosoft.c326 u_char tag2[GMAC_DIGEST_LEN]; in swcr_gmac() member
387 s.tag2); in swcr_gmac()
388 if (timingsafe_bcmp(s.tag, s.tag2, swa->sw_mlen) != 0) in swcr_gmac()
404 u_char tag2[GMAC_DIGEST_LEN]; in swcr_gcm() member
551 s.tag2); in swcr_gcm()
552 r = timingsafe_bcmp(s.tag, s.tag2, swa->sw_mlen); in swcr_gcm()
679 u_char tag2[AES_CBC_MAC_HASH_LEN]; in swcr_ccm_cbc_mac() member
719 s.tag2); in swcr_ccm_cbc_mac()
720 if (timingsafe_bcmp(s.tag, s.tag2, swa->sw_mlen) != 0) in swcr_ccm_cbc_mac()
738 u_char tag2[AES_CBC_MAC_HASH_LEN]; in swcr_ccm() member
[all …]
/freebsd/contrib/byacc/test/
H A Derr_syntax26.y6 %type <tag2
H A Derr_syntax23.y11 %type <tag2> recur
H A Derr_syntax24.y12 %type <tag2> expr
H A Derr_syntax25.y17 %type <tag2> expr
/freebsd/contrib/dialog/samples/
H A Dtreeview11 tag2 two off 1 \
H A Dtreeview413 tag2 two off 1 second \
H A Dtreeview219 tag2:two:off:1
/freebsd/sys/crypto/openssl/
H A Dossl_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/sys/dev/etherswitch/micrel/
H A Dksz8995ma.c483 int tag1, tag2, portreg; in ksz8995ma_getport() local
494 tag2 = ksz8995ma_readreg(dev, KSZ8995MA_PC4_BASE + in ksz8995ma_getport()
496 p->es_pvid = (tag1 & 0x0f) << 8 | tag2; in ksz8995ma_getport()
/freebsd/usr.sbin/bsdconfig/share/
H A Ddialog.subr878 # $tag1 $item1 $tag2 $item2 ...
971 # $tag1 $item1 $help1 $tag2 $item2 $help2 ...
1076 # $tag1 $item1 $status1 $tag2 $item2 $status2 ...
1172 # $tag1 $item1 $status1 $tag2 $item2 $status2 ...
1197 # $tag2 $item2 $status2 $help2 ...
1313 # $tag2 $item2 $status2 $help2 ...
1988 # f_dialog_menutag2item $tag_chosen $tag1 $item1 $tag2 $item2 ...
2022 # $tag2 $item2 $help2 ...
2055 # f_dialog_menutag2index $tag_chosen $tag1 $item1 $tag2 $item2 ...
2090 # $tag2 $item2 $help2 ...
[all …]
/freebsd/contrib/unbound/doc/
H A Dexample.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/sys/netpfil/ipfilter/netinet/
H A Dfil.c6671 ipf_matchtag(ipftag_t *tag1, ipftag_t *tag2) argument
6673 if (tag1 == tag2)
6676 if ((tag1->ipt_num[0] == 0) && (tag2->ipt_num[0] == 0))
6679 if ((tag1->ipt_num[0] == tag2->ipt_num[0]) &&
6680 (tag1->ipt_num[1] == tag2->ipt_num[1]) &&
6681 (tag1->ipt_num[2] == tag2->ipt_num[2]) &&
6682 (tag1->ipt_num[3] == tag2->ipt_num[3]))
/freebsd/contrib/bearssl/test/
H A Dtest_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/crypto/openssl/test/
H A Devp_extra_test.c4171 const unsigned char *tag2; member
4279 if (!TEST_mem_eq(t->tag2, taglen, tag, taglen)) { in test_gcm_reinit()