HomeSort by relevance Sort by last modified time
    Searched refs:compression_methods (Results 1 - 4 of 4) sorted by null

  /libcore/crypto/src/main/java/org/conscrypt/
ClientHello.java 57 final byte[] compression_methods; field in class:ClientHello
77 compression_methods = new byte[] { 0 }; // CompressionMethod.null
79 + compression_methods.length;
109 compression_methods = new byte[size];
110 in.read(compression_methods, 0, size);
112 + compression_methods.length;
154 compression_methods = new byte[] { 0 }; // CompressionMethod.null
168 + compression_methods.length;
186 out.writeUint8(compression_methods.length);
187 for (int i = 0; i < compression_methods.length; i++)
    [all...]
ServerHandshakeImpl.java 325 for (int i = 0; i < clientHello.compression_methods.length; i++) {
326 if (clientHello.compression_methods[i] == 0) {
  /external/chromium_org/net/third_party/nss/ssl/
ssl3prot.h 155 SSLCompressionMethod compression_methods[MAX_COMPRESSION_METHODS]; member in struct:__anon11483
  /external/chromium_org/third_party/tlslite/tlslite/
messages.py 131 self.compression_methods = [] # a list of 8-bit values
142 self.compression_methods = [0]
158 self.compression_methods = [0]#Fake this value
167 self.compression_methods = p.getVarList(1, 1)
193 w.addVarSeq(self.compression_methods, 1, 1)

Completed in 44 milliseconds