/flash-src/third-party/com/hurlant/crypto/tls/TLSError.as
http://github.com/gimite/web-socket-js · ActionScript · 39 lines · 29 code · 1 blank · 9 comment · 0 complexity · 3adf5bdb71ddf25b5bbda6ba672d2caf MD5 · raw file
- /**
- * TLSError
- *
- * A error that can be thrown when something wrong happens in the TLS protocol.
- * This is handled in TLSEngine by generating a TLS ALERT as appropriate.
- * Copyright (c) 2007 Henri Torgemane
- *
- * See LICENSE.txt for full license information.
- */
- package com.hurlant.crypto.tls {
- public class TLSError extends Error {
- public static const close_notify:uint = 0;
- public static const unexpected_message:uint = 10;
- public static const bad_record_mac:uint = 20;
- public static const decryption_failed:uint = 21;
- public static const record_overflow:uint = 22;
- public static const decompression_failure:uint = 30;
- public static const handshake_failure:uint = 40;
- public static const bad_certificate:uint = 42;
- public static const unsupported_certificate:uint = 43;
- public static const certificate_revoked:uint = 44;
- public static const certificate_expired:uint = 45;
- public static const certificate_unknown:uint = 46;
- public static const illegal_parameter:uint = 47;
- public static const unknown_ca:uint = 48;
- public static const access_denied:uint = 49;
- public static const decode_error:uint = 50;
- public static const decrypt_error:uint = 51;
- public static const protocol_version:uint = 70;
- public static const insufficient_security:uint = 71;
- public static const internal_error:uint = 80;
- public static const user_canceled:uint = 90;
- public static const no_renegotiation:uint = 100;
-
- public function TLSError(message:String, id:int) {
- super(message,id);
- }
- }
- }