Searched refs:remaining_hsh_data (Results 1 - 1 of 1) sorted by relevance

/libcore/crypto/src/main/java/org/conscrypt/
H A DSSLEngineImpl.java77 private byte[] remaining_hsh_data = null; field in class:SSLEngineImpl
692 if (remaining_hsh_data == null) {
693 remaining_hsh_data = handshakeProtocol.wrap();
695 if (capacity < remaining_hsh_data.length) {
699 // so we just remember the data into remaining_hsh_data
705 dst.put(remaining_hsh_data);
706 produced = remaining_hsh_data.length;
707 remaining_hsh_data = null;

Completed in 36 milliseconds