⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 keyexchanges.as

📁 As3 Crypto is a cryptography library written in Actionscript 3 that provides several common algorith
💻 AS
字号:
/**
 * 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);
		}
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -