OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AlertDescription
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/third_party/tlslite/tlslite/
constants.py
68
class
AlertDescription
:
343
badUsername: (
AlertDescription
.unknown_psk_identity, \
344
AlertDescription
.bad_record_mac),\
345
badPassword: (
AlertDescription
.bad_record_mac,),\
346
badA: (
AlertDescription
.illegal_parameter,),\
347
badPremasterPadding: (
AlertDescription
.bad_record_mac,),\
348
shortPremasterSecret: (
AlertDescription
.bad_record_mac,),\
349
badVerifyMessage: (
AlertDescription
.decrypt_error,),\
350
badFinished: (
AlertDescription
.decrypt_error,),\
351
badMAC: (
AlertDescription
.bad_record_mac,),
[
all
...]
tlsconnection.py
118
raise TLSLocalAlert(
AlertDescription
.illegal_parameter,
657
AlertDescription
.protocol_version,
662
AlertDescription
.protocol_version,
667
AlertDescription
.illegal_parameter,
672
AlertDescription
.illegal_parameter,
677
AlertDescription
.illegal_parameter,
683
AlertDescription
.illegal_parameter,
688
AlertDescription
.illegal_parameter,
693
AlertDescription
.decrypt_error,
725
AlertDescription
.illegal_parameter,
[
all
...]
errors.py
15
from .constants import
AlertDescription
, AlertLevel
44
AlertDescription
.close_notify: "close_notify",\
45
AlertDescription
.unexpected_message: "unexpected_message",\
46
AlertDescription
.bad_record_mac: "bad_record_mac",\
47
AlertDescription
.decryption_failed: "decryption_failed",\
48
AlertDescription
.record_overflow: "record_overflow",\
49
AlertDescription
.decompression_failure: "decompression_failure",\
50
AlertDescription
.handshake_failure: "handshake_failure",\
51
AlertDescription
.no_certificate: "no certificate",\
52
AlertDescription
.bad_certificate: "bad_certificate",
[
all
...]
tlsrecordlayer.py
211
if alert.description !=
AlertDescription
.close_notify:
344
AlertDescription
.close_notify, AlertLevel.warning)):
361
if alert.description ==
AlertDescription
.close_notify:
520
def _sendError(self,
alertDescription
, errorStr=None):
521
alert = Alert().create(
alertDescription
, AlertLevel.fatal)
699
alert.description ==
AlertDescription
.close_notify:
707
alertMsg.create(
AlertDescription
.close_notify,
715
AlertDescription
.close_notify:
739
alertMsg.create(
AlertDescription
.no_renegotiation,
748
AlertDescription
.unexpected_message
[
all
...]
api.py
5
from .constants import AlertLevel,
AlertDescription
, ClientCertificateType, \
/external/chromium_org/third_party/tlslite/scripts/
tls.py
218
if a.description ==
AlertDescription
.user_canceled:
224
if a.description ==
AlertDescription
.unknown_psk_identity:
229
elif a.description ==
AlertDescription
.bad_record_mac:
234
elif a.description ==
AlertDescription
.handshake_failure:
295
if a.description ==
AlertDescription
.user_canceled:
301
if a.description ==
AlertDescription
.unknown_psk_identity:
307
elif a.description ==
AlertDescription
.bad_record_mac:
313
elif a.description ==
AlertDescription
.handshake_failure:
/external/chromium_org/third_party/tlslite/tests/
tlstest.py
28
AlertDescription
, HTTPTLSConnection, TLSSocketServerMixIn, \
152
if alert.description !=
AlertDescription
.illegal_parameter:
260
if alert.description !=
AlertDescription
.bad_record_mac:
517
if alert.description !=
AlertDescription
.illegal_parameter:
625
if alert.description !=
AlertDescription
.bad_record_mac:
Completed in 172 milliseconds