Home | History | Annotate | Download | only in jsse

Lines Matching refs:length

71         certificate_authorities = new X500Principal[accepted.length];
72 encoded_principals = new byte[accepted.length][];
73 for (int i = 0; i < accepted.length; i++) {
76 totalPrincipalsLength += encoded_principals[i].length + 2;
79 length = 3 + certificate_types.length + totalPrincipalsLength;
86 * @param length
89 public CertificateRequest(HandshakeIODataStream in, int length) throws IOException {
104 this.length = 3 + certificate_types.length + totalPrincipalsLength;
105 if (this.length != length) {
118 out.writeUint8(certificate_types.length);
119 for (int i = 0; i < certificate_types.length; i++) {
123 for (int i = 0; i < certificate_authorities.length; i++) {
124 authoritiesLength += encoded_principals[i].length +2;
127 for (int i = 0; i < certificate_authorities.length; i++) {
128 out.writeUint16(encoded_principals[i].length);
148 types = new String[certificate_types.length];
149 for (int i = 0; i < types.length; i++) {