File: connected-users-websocket/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/KeyExchanges.as

Recommend this page to a friend!
  Classes of Igor Escobar   Terminal Crossword   connected-users-websocket/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/KeyExchanges.as   Download  
File: connected-users-websocket/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/KeyExchanges.as
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Terminal Crossword
Generate a crosswords board on a text console
Author: By
Last change:
Date: 2 years ago
Size: 664 bytes
 

Contents

Class file image Download
/** * KeyExchanges * * An enumeration of key exchange methods defined by TLS * ( right now, only RSA is actually implemented ) * Copyright (c) 2007 Henri Torgemane * * See LICENSE.txt for full license information. */ package com.hurlant.crypto.tls { public class KeyExchanges { public static const NULL:uint = 0; public static const RSA:uint = 1; public static const DH_DSS:uint = 2; public static const DH_RSA:uint = 3; public static const DHE_DSS:uint = 4; public static const DHE_RSA:uint = 5; public static const DH_anon:uint = 6; public static function useRSA(p:uint):Boolean { return (p==RSA); } } }