OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:expected_tag
(Results
1 - 3
of
3
) sorted by null
/external/openssh/
cipher-chachapoly.c
56
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/
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
...]
/external/boringssl/src/crypto/cipher/
e_aes.c
1710
uint8_t
expected_tag
[EVP_AEAD_AES_GCM_SIV_TAG_LEN];
local
[
all
...]
Completed in 914 milliseconds