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

/libcore/ojluni/src/main/java/sun/security/ssl/
H A DHelloExtensions.java791 private int algorithmsLen; // length of supported_signature_algorithms field in class:SignatureAlgorithmsExtension
799 algorithmsLen =
807 algorithmsLen = s.getInt16();
808 if (algorithmsLen == 0 || algorithmsLen + 2 != len) {
813 int remains = algorithmsLen;
836 return 6 + algorithmsLen;
842 s.putInt16(algorithmsLen + 2);
843 s.putInt16(algorithmsLen);
H A DHandshakeMessage.java1272 private int algorithmsLen; field in class:HandshakeMessage.CertificateRequest
1300 algorithmsLen =
1304 algorithmsLen = 0;
1318 algorithmsLen = input.getInt16();
1319 if (algorithmsLen < 2) {
1325 int remains = algorithmsLen;
1344 algorithmsLen = 0;
1385 len += algorithmsLen + 2;
1402 output.putInt16(algorithmsLen);

Completed in 1271 milliseconds