/libcore/crypto/src/main/java/org/conscrypt/ |
CertificateVerify.java | 41 fatalAlert(AlertProtocol.INTERNAL_ERROR, 58 fatalAlert(AlertProtocol.DECODE_ERROR, 62 fatalAlert(AlertProtocol.DECODE_ERROR,
|
HelloRequest.java | 47 fatalAlert(AlertProtocol.DECODE_ERROR, "DECODE ERROR: incorrect HelloRequest");
|
ServerHelloDone.java | 47 fatalAlert(AlertProtocol.DECODE_ERROR, "DECODE ERROR: incorrect ServerHelloDone");
|
CertificateMessage.java | 56 fatalAlert(AlertProtocol.DECODE_ERROR, 68 fatalAlert(AlertProtocol.INTERNAL_ERROR, "INTERNAL ERROR", e); 80 fatalAlert(AlertProtocol.DECODE_ERROR, "DECODE ERROR", e); 88 fatalAlert(AlertProtocol.DECODE_ERROR, "DECODE ERROR: incorrect CertificateMessage"); 111 fatalAlert(AlertProtocol.INTERNAL_ERROR, "INTERNAL ERROR", 137 fatalAlert(AlertProtocol.INTERNAL_ERROR, "INTERNAL ERROR",
|
SSLEngineAppData.java | 46 AlertProtocol.INTERNAL_ERROR, 84 AlertProtocol.INTERNAL_ERROR,
|
ClientHello.java | 98 fatalAlert(AlertProtocol.DECODE_ERROR, 114 fatalAlert(AlertProtocol.DECODE_ERROR, "DECODE ERROR: incorrect ClientHello"); 130 fatalAlert(AlertProtocol.DECODE_ERROR, "DECODE ERROR: incorrect V2ClientHello"); 139 fatalAlert(AlertProtocol.DECODE_ERROR, 144 fatalAlert(AlertProtocol.DECODE_ERROR, "DECODE ERROR: incorrect V2ClientHello, short challenge data"); 165 fatalAlert(AlertProtocol.DECODE_ERROR, "DECODE ERROR: incorrect V2ClientHello, extra data");
|
Finished.java | 55 fatalAlert(AlertProtocol.DECODE_ERROR, "DECODE ERROR: incorrect Finished");
|
SSLRecordProtocol.java | 83 private AlertProtocol alertProtocol; 104 * @param alertProtocol: AlertProtocol 109 AlertProtocol alertProtocol, 114 this.alertProtocol = alertProtocol; 115 this.alertProtocol.setRecordProtocol(this); 204 AlertProtocol.INTERNAL_ERROR [all...] |
AlertProtocol.java | 25 public class AlertProtocol { 138 * Creates the instance of AlertProtocol. 143 protected AlertProtocol() {}
|
SSLEngineImpl.java | 62 private AlertProtocol alertProtocol; 113 alertProtocol = new AlertProtocol(); 116 alertProtocol, recProtIS, appData); 142 alertProtocol.alert(AlertProtocol.FATAL, 143 AlertProtocol.INTERNAL_ERROR); 169 alertProtocol.alert(AlertProtocol.WARNING [all...] |
CertificateRequest.java | 65 fatalAlert(AlertProtocol.INTERNAL_ERROR, 106 fatalAlert(AlertProtocol.DECODE_ERROR, "DECODE ERROR: incorrect CertificateRequest"); 150 fatalAlert(AlertProtocol.DECODE_ERROR,
|
ServerHandshakeImpl.java | 140 fatalAlert(AlertProtocol.HANDSHAKE_FAILURE, 149 fatalAlert(AlertProtocol.BAD_CERTIFICATE, 187 fatalAlert(AlertProtocol.DECRYPT_ERROR, 222 fatalAlert(AlertProtocol.INTERNAL_ERROR, 249 fatalAlert(AlertProtocol.INTERNAL_ERROR, 330 fatalAlert(AlertProtocol.HANDSHAKE_FAILURE, 340 fatalAlert(AlertProtocol.PROTOCOL_VERSION, 370 sendWarningAlert(AlertProtocol.NO_RENEGOTIATION); 376 fatalAlert(AlertProtocol.HANDSHAKE_FAILURE, "SSL Session may not be created"); 394 fatalAlert(AlertProtocol.HANDSHAKE_FAILURE [all...] |
HandshakeProtocol.java | 268 fatalAlert(AlertProtocol.HANDSHAKE_FAILURE, 295 recordProtocol.alert(AlertProtocol.WARNING, description); 356 fatalAlert(AlertProtocol.INTERNAL_ERROR, "PRF error", e); 383 fatalAlert(AlertProtocol.INTERNAL_ERROR, 406 fatalAlert(AlertProtocol.INTERNAL_ERROR, "INTERNAL ERROR", e); 419 fatalAlert(AlertProtocol.HANDSHAKE_FAILURE, "Incorrect FINISED"); 428 fatalAlert(AlertProtocol.UNEXPECTED_MESSAGE, "UNEXPECTED MESSAGE"); 456 fatalAlert(AlertProtocol.INTERNAL_ERROR, "PRF error", e);
|
SSLSocketImpl.java | 53 private AlertProtocol alertProtocol; 470 alertProtocol = new AlertProtocol(); 472 alertProtocol, new SSLStreamedInput(input), 550 alertProtocol.alert(AlertProtocol.WARNING, 551 AlertProtocol.CLOSE_NOTIFY); 553 output.write(alertProtocol.wrap()); 555 alertProtocol.setProcessed() [all...] |
ClientHandshakeImpl.java | 97 fatalAlert(AlertProtocol.HANDSHAKE_FAILURE, "SSL Session may not be created "); 120 sendWarningAlert(AlertProtocol.NO_RENEGOTIATION); 150 this.fatalAlert(AlertProtocol.HANDSHAKE_FAILURE, "Error in delegated task", e); 201 fatalAlert(AlertProtocol.HANDSHAKE_FAILURE, 207 fatalAlert(AlertProtocol.HANDSHAKE_FAILURE, 219 fatalAlert(AlertProtocol.HANDSHAKE_FAILURE, 231 fatalAlert(AlertProtocol.HANDSHAKE_FAILURE, 234 fatalAlert(AlertProtocol.HANDSHAKE_FAILURE, 425 fatalAlert(AlertProtocol.INTERNAL_ERROR, 437 fatalAlert(AlertProtocol.INTERNAL_ERROR [all...] |
ClientKeyExchange.java | 115 fatalAlert(AlertProtocol.DECODE_ERROR, "DECODE ERROR: incorrect ClientKeyExchange");
|
SSLSocketInputStream.java | 151 throw new AlertException(AlertProtocol.INTERNAL_ERROR,
|
DigitalSignature.java | 110 throw new AlertException(AlertProtocol.BAD_CERTIFICATE, 127 throw new AlertException(AlertProtocol.BAD_CERTIFICATE,
|
PRF.java | 48 throw new AlertException(AlertProtocol.INTERNAL_ERROR, 59 throw new AlertException(AlertProtocol.INTERNAL_ERROR,
|
ConnectionStateSSLv3.java | 217 throw new AlertException(AlertProtocol.INTERNAL_ERROR, 278 throw new AlertException(AlertProtocol.INTERNAL_ERROR, 301 AlertProtocol.DECRYPTION_FAILED, 341 throw new AlertException(AlertProtocol.BAD_RECORD_MAC,
|
ConnectionStateTLS.java | 225 throw new AlertException(AlertProtocol.INTERNAL_ERROR, 287 throw new AlertException(AlertProtocol.INTERNAL_ERROR, 311 AlertProtocol.DECRYPTION_FAILED, 342 throw new AlertException(AlertProtocol.BAD_RECORD_MAC,
|
ServerHello.java | 100 fatalAlert(AlertProtocol.DECODE_ERROR, "DECODE ERROR: incorrect ServerHello");
|
HandshakeIODataStream.java | 199 AlertProtocol.UNEXPECTED_MESSAGE, 252 AlertProtocol.INTERNAL_ERROR,
|
/external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/ |
ServerHandshakeImplTest.java | 60 AlertProtocol alertProtocol = new AlertProtocol(); 63 alertProtocol, recProtIS, appData);
|
HandshakeProtocolTest.java | 93 AlertProtocol.HANDSHAKE_FAILURE); 196 AlertProtocol.UNEXPECTED_MESSAGE);
|