Home
last modified time | relevance | path

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

/external/grpc-grpc-java/alts/src/test/java/io/grpc/alts/internal/
DAltsTsiFrameProtectorTest.java80 AltsTsiFrameProtector.Unprotector unprotector = in parserHeader_frameLengthNegativeFails()
81 new AltsTsiFrameProtector.Unprotector(crypter, alloc); in parserHeader_frameLengthNegativeFails()
100 AltsTsiFrameProtector.Unprotector unprotector = in parserHeader_frameTooSmall()
101 new AltsTsiFrameProtector.Unprotector(crypter, alloc); in parserHeader_frameTooSmall()
122 AltsTsiFrameProtector.Unprotector unprotector = in parserHeader_frameTooLarge()
123 new AltsTsiFrameProtector.Unprotector(crypter, alloc); in parserHeader_frameTooLarge()
147 AltsTsiFrameProtector.Unprotector unprotector = in parserHeader_frameTypeInvalid()
148 new AltsTsiFrameProtector.Unprotector(crypter, alloc); in parserHeader_frameTypeInvalid()
169 AltsTsiFrameProtector.Unprotector unprotector = in parserHeader_frameZeroOk()
170 new AltsTsiFrameProtector.Unprotector(crypter, alloc); in parserHeader_frameZeroOk()
[all …]
/external/grpc-grpc-java/alts/src/main/java/io/grpc/alts/internal/
DAltsTsiFrameProtector.java41 private final Unprotector unprotector;
49 unprotector = new Unprotector(crypter, alloc); in AltsTsiFrameProtector()
189 static final class Unprotector { class in AltsTsiFrameProtector
201 Unprotector(ChannelCrypterNetty crypter, ByteBufAllocator alloc) { in Unprotector() method in AltsTsiFrameProtector.Unprotector