Searched refs:seq_no (Results 1 – 2 of 2) sorted by relevance
1551 BYTE seq_no[4]; in ntlm_CreateSignature() local1558 seq_no[0] = (helper->crypt.ntlm2.send_seq_no >> 0) & 0xff; in ntlm_CreateSignature()1559 seq_no[1] = (helper->crypt.ntlm2.send_seq_no >> 8) & 0xff; in ntlm_CreateSignature()1560 seq_no[2] = (helper->crypt.ntlm2.send_seq_no >> 16) & 0xff; in ntlm_CreateSignature()1561 seq_no[3] = (helper->crypt.ntlm2.send_seq_no >> 24) & 0xff; in ntlm_CreateSignature()1569 seq_no[0] = (helper->crypt.ntlm2.recv_seq_no >> 0) & 0xff; in ntlm_CreateSignature()1570 seq_no[1] = (helper->crypt.ntlm2.recv_seq_no >> 8) & 0xff; in ntlm_CreateSignature()1571 seq_no[2] = (helper->crypt.ntlm2.recv_seq_no >> 16) & 0xff; in ntlm_CreateSignature()1572 seq_no[3] = (helper->crypt.ntlm2.recv_seq_no >> 24) & 0xff; in ntlm_CreateSignature()1579 HMACMD5Update(&hmac_md5_ctx, seq_no, 4); in ntlm_CreateSignature()[all …]
141 DWORD seq_no; /* Clipboard sequence number corresponding to this snapshot */ member1726 static snapshot *snapshot_construct(DWORD seq_no) in snapshot_construct() argument1735 This->seq_no = seq_no; in snapshot_construct()2253 DWORD seq_no; in OleGetClipboard() local2262 seq_no = GetClipboardSequenceNumber(); in OleGetClipboard()2264 if(clipbrd->latest_snapshot && clipbrd->latest_snapshot->seq_no != seq_no) in OleGetClipboard()2269 clipbrd->latest_snapshot = snapshot_construct(seq_no); in OleGetClipboard()