Home
last modified time | relevance | path

Searched refs:expected_tag (Results 1 – 6 of 6) sorted by relevance

/freebsd/crypto/openssh/
H A Dcipher-chachapoly.c74 u_char expected_tag[POLY1305_TAGLEN], poly_key[POLY1305_KEYLEN]; in chachapoly_crypt() local
91 poly1305_auth(expected_tag, src, aadlen + len, poly_key); in chachapoly_crypt()
92 if (timingsafe_bcmp(expected_tag, tag, POLY1305_TAGLEN) != 0) { in chachapoly_crypt()
116 explicit_bzero(expected_tag, sizeof(expected_tag)); in chachapoly_crypt()
H A Dcipher-chachapoly-libcrypto.c90 u_char expected_tag[POLY1305_TAGLEN], poly_key[POLY1305_KEYLEN]; in chachapoly_crypt() local
110 poly1305_auth(expected_tag, src, aadlen + len, poly_key); in chachapoly_crypt()
111 if (timingsafe_bcmp(expected_tag, tag, POLY1305_TAGLEN) != 0) { in chachapoly_crypt()
141 explicit_bzero(expected_tag, sizeof(expected_tag)); in chachapoly_crypt()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DAppleDWARFIndex.cpp94 dw_tag_t expected_tag) { in EntryHasMatchingTag() argument
103 return tag == expected_tag || in EntryHasMatchingTag()
104 (IsClassOrStruct(tag) && IsClassOrStruct(expected_tag)); in EntryHasMatchingTag()
234 const dw_tag_t expected_tag = context[0].tag; in GetTypes() local
239 SearchFor(*m_apple_types_up, expected_name, callback, expected_tag, in GetTypes()
264 const dw_tag_t expected_tag = context[0].tag; in GetTypes() local
265 SearchFor(*m_apple_types_up, expected_name, callback, expected_tag); in GetTypes()
/freebsd/crypto/openssl/providers/implementations/ciphers/
H A Dciphercommon_ccm_hw.c50 unsigned char *expected_tag, size_t taglen) in ossl_ccm_generic_auth_decrypt() argument
63 || CRYPTO_memcmp(tag, expected_tag, taglen) != 0) in ossl_ccm_generic_auth_decrypt()
H A Dcipher_aes_ccm_hw_s390x.inc236 unsigned char *expected_tag,
244 if (CRYPTO_memcmp(sctx->ccm.s390x.kmac.icv.b, expected_tag, ctx->m) != 0)
/freebsd/crypto/openssl/providers/implementations/include/prov/
H A Dciphercommon_ccm.h100 unsigned char *expected_tag, size_t taglen);