Searched refs:requiredCiphertextBytes (Results 1 – 1 of 1) sorted by relevance
275 int requiredCiphertextBytes = requiredProtectedBytes - suffixBytes; in handlePayload() local276 int firstFrameUnprotectedLen = requiredCiphertextBytes; in handlePayload()280 while (requiredCiphertextBytes > 0) { in handlePayload()282 if (buf.readableBytes() <= requiredCiphertextBytes) { in handlePayload()285 requiredCiphertextBytes -= buf.readableBytes(); in handlePayload()288 firstFrameCiphertext.add(buf.readSlice(requiredCiphertextBytes)); in handlePayload()289 requiredCiphertextBytes = 0; in handlePayload()