Searched defs:expected_tag (Results 1 - 3 of 3) sorted by relevance

/external/openssh/
H A Dcipher-chachapoly.c56 u_char expected_tag[POLY1305_TAGLEN], poly_key[POLY1305_KEYLEN]; local
73 poly1305_auth(expected_tag, src, aadlen + len, poly_key);
74 if (timingsafe_bcmp(expected_tag, tag, POLY1305_TAGLEN) != 0) {
98 explicit_bzero(expected_tag, sizeof(expected_tag));
/external/libusb/examples/
H A Dxusb.c371 static int get_mass_storage_status(libusb_device_handle *handle, uint8_t endpoint, uint32_t expected_tag) argument
394 if (csw.dCSWTag != expected_tag) {
396 expected_tag, csw.dCSWTag);
401 if (csw.dCSWTag != expected_tag)
422 uint32_t expected_tag; local
433 send_mass_storage_command(handle, endpoint_out, 0, cdb, LIBUSB_ENDPOINT_IN, REQUEST_SENSE_LENGTH, &expected_tag);
450 get_mass_storage_status(handle, endpoint_in, expected_tag);
458 uint32_t expected_tag; local
486 send_mass_storage_command(handle, endpoint_out, lun, cdb, LIBUSB_ENDPOINT_IN, INQUIRY_LENGTH, &expected_tag);
499 if (get_mass_storage_status(handle, endpoint_in, expected_tag)
[all...]
/external/boringssl/src/crypto/cipher/
H A De_aes.c1710 uint8_t expected_tag[EVP_AEAD_AES_GCM_SIV_TAG_LEN]; local
1711 gcm_siv_polyval(expected_tag, out, plaintext_len, ad, ad_len, keys.auth_key,
1713 keys.enc_block(expected_tag, expected_tag, &keys.enc_key.ks);
1715 if (CRYPTO_memcmp(expected_tag, &in[plaintext_len], sizeof(expected_tag)) !=

Completed in 395 milliseconds