OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ALERT
(Results
1 - 4
of
4
) sorted by null
/external/nist-sip/java/javax/sip/header/
ContentDispositionHeader.java
11
String
ALERT
= "
Alert
";
/external/nist-sip/java/gov/nist/javax/sip/header/
ParameterNames.java
109
public static final String
ALERT
= "
alert
";
/cts/tests/tests/security/src/android/security/cts/
OpenSSLHeartbleedTest.java
139
// the handshake with unexpected_message
alert
(if heartbeats are not supported).
149
// fatal
alert
unexpected_message
152
fail("Handshake failed without a fatal
alert
");
155
"First fatal
alert
description received from server",
425
case TlsProtocols.
ALERT
:
427
AlertMessage
alert
= AlertMessage.tryParse(record);
local
428
if ((
alert
!= null) && (
alert
.level == AlertMessage.LEVEL_FATAL)) {
429
setFatalAlertDetected(
alert
.description);
484
case TlsProtocols.
ALERT
[
all
...]
OpenSSLEarlyCCSTest.java
68
// aborting the TLS handshake with an unexpected_message fatal
alert
.
141
// to abort the handshake immediately with unexpected_message
alert
.
155
if (firstRecordReceivedAfterCCSWasInjected.protocol == TlsProtocols.
ALERT
) {
156
AlertMessage
alert
= AlertMessage.tryParse(firstRecordReceivedAfterCCSWasInjected);
local
157
if ((
alert
!= null)
158
&& (
alert
.level == AlertMessage.LEVEL_FATAL)
159
&& (
alert
.description == AlertMessage.DESCRIPTION_UNEXPECTED_MESSAGE)) {
460
case TlsProtocols.
ALERT
:
461
return "
alert
";
479
case TlsProtocols.
ALERT
[
all
...]
Completed in 430 milliseconds