Home
last modified time | relevance | path

Searched refs:seq_no (Results 1 – 2 of 2) sorted by relevance

/reactos/dll/win32/secur32/wine/
H A Dntlm.c1551 BYTE seq_no[4]; in ntlm_CreateSignature() local
1558 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 …]
/reactos/dll/win32/ole32/
H A Dclipboard.c141 DWORD seq_no; /* Clipboard sequence number corresponding to this snapshot */ member
1726 static snapshot *snapshot_construct(DWORD seq_no) in snapshot_construct() argument
1735 This->seq_no = seq_no; in snapshot_construct()
2253 DWORD seq_no; in OleGetClipboard() local
2262 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()