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 140 int challenge_length = in.readUint16(); local
141 if (challenge_length < 16) {
154 if (challenge_length < 32) {
155 Arrays.fill(random, 0, 32 - challenge_length, (byte)0);
156 System.arraycopy(in.read(challenge_length), 0, random, 32 - challenge_length, challenge_length); local
157 } else if (challenge_length == 32) {
160 System.arraycopy(in.read(challenge_length), challenge_length - 32, random, 0, 32)
    [all...]
  /external/openssl/include/openssl/
ssl2.h 197 unsigned int challenge_length; member in struct:ssl2_state_st
  /external/openssl/ssl/
ssl2.h 197 unsigned int challenge_length; member in struct:ssl2_state_st

Completed in 20 milliseconds