Home
last modified time | relevance | path

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

/external/grpc-grpc-java/alts/src/main/java/io/grpc/alts/internal/
DAltsTsiFrameProtector.java275 int requiredCiphertextBytes = requiredProtectedBytes - suffixBytes; in handlePayload() local
276 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()