HomeSort by relevance Sort by last modified time
    Searched defs:expected_tag (Results 1 - 4 of 4) sorted by null

  /external/openssh/
cipher-chachapoly.c 57 u_char expected_tag[POLY1305_TAGLEN], poly_key[POLY1305_KEYLEN]; local
74 poly1305_auth(expected_tag, src, aadlen + len, poly_key);
75 if (timingsafe_bcmp(expected_tag, tag, POLY1305_TAGLEN) != 0) {
99 explicit_bzero(expected_tag, sizeof(expected_tag));
  /external/harfbuzz_ng/test/api/
test-ot-tag.c 483 hb_tag_t expected_tag = hb_tag_from_string (va_arg (expected_tags, const char *), -1); local
485 g_assert_cmphex (actual_tag, ==, expected_tag);
  /external/boringssl/src/crypto/cipher_extra/
e_aesgcmsiv.c 799 uint8_t expected_tag[EVP_AEAD_AES_GCM_SIV_TAG_LEN]; local
800 gcm_siv_polyval(expected_tag, out, in_len, ad, ad_len, keys.auth_key, nonce);
801 keys.enc_block(expected_tag, expected_tag, &keys.enc_key.ks);
803 if (CRYPTO_memcmp(expected_tag, in_tag, sizeof(expected_tag)) != 0) {
  /external/libusb/examples/
xusb.c 371 static int get_mass_storage_status(libusb_device_handle *handle, uint8_t endpoint, uint32_t expected_tag)
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) == -2)
    [all...]

Completed in 291 milliseconds