Home
last modified time | relevance | path

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

/dports/net-p2p/libktorrent/libktorrent-21.12.3/src/mse/
H A Dencryptedauthenticate.cpp38 pad_D_len = 0; in EncryptedAuthenticate()
166 pad_D_len = ReadUint16(buf, vc_off + 12); in handleCryptoSelect()
167 if (pad_D_len > 512) { in handleCryptoSelect()
173 end_of_crypto_handshake = vc_off + 14 + pad_D_len; in handleCryptoSelect()
174 if (!(vc_off + 14 + pad_D_len < buf_size)) { in handleCryptoSelect()
186 our_rc4->decrypt(buf + (vc_off + 14), pad_D_len); in handlePadD()
202 if (buf_size > vc_off + 14 + pad_D_len) { in handlePadD()
203 Uint32 off = vc_off + 14 + pad_D_len; in handlePadD()
245 if (pad_D_len > 0 && buf_size + ba > vc_off + 14 + pad_D_len) in onReadyRead()
246 ba = (vc_off + 14 + pad_D_len) - buf_size; in onReadyRead()
H A Dencryptedauthenticate.h65 Uint16 pad_D_len; variable