HomeSort by relevance Sort by last modified time
    Searched defs:challenge_length (Results 1 - 3 of 3) sorted by null

  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
ClientHello.java 142 int challenge_length = in.readUint16(); local
143 if (challenge_length < 16) {
156 if (challenge_length < 32) {
157 Arrays.fill(random, 0, 32 - challenge_length, (byte)0);
158 System.arraycopy(in.read(challenge_length), 0, random, 32 - challenge_length, challenge_length); local
159 } else if (challenge_length == 32) {
162 System.arraycopy(in.read(challenge_length), challenge_length - 32, random, 0, 32)
    [all...]
  /external/openssl/include/openssl/
ssl2.h 199 unsigned int challenge_length; member in struct:ssl2_state_st
  /external/openssl/ssl/
ssl2.h 199 unsigned int challenge_length; member in struct:ssl2_state_st

Completed in 289 milliseconds