Including the node_modules folder for socket.io code.
[KiwiIRC.git] / node / node_modules / socket.io-client / lib / vendor / web-socket-js / flash-src / com / hurlant / util / der / OID.as
1 /**
2 * OID
3 *
4 * A list of various ObjectIdentifiers.
5 * Copyright (c) 2007 Henri Torgemane
6 *
7 * See LICENSE.txt for full license information.
8 */
9 package com.hurlant.util.der
10 {
11 public class OID
12 {
13
14 public static const RSA_ENCRYPTION:String = "1.2.840.113549.1.1.1";
15 public static const MD2_WITH_RSA_ENCRYPTION:String = "1.2.840.113549.1.1.2";
16 public static const MD5_WITH_RSA_ENCRYPTION:String = "1.2.840.113549.1.1.4";
17 public static const SHA1_WITH_RSA_ENCRYPTION:String = "1.2.840.113549.1.1.5";
18 public static const MD2_ALGORITHM:String = "1.2.840.113549.2.2";
19 public static const MD5_ALGORITHM:String = "1.2.840.113549.2.5";
20 public static const DSA:String = "1.2.840.10040.4.1";
21 public static const DSA_WITH_SHA1:String = "1.2.840.10040.4.3";
22 public static const DH_PUBLIC_NUMBER:String = "1.2.840.10046.2.1";
23 public static const SHA1_ALGORITHM:String = "1.3.14.3.2.26";
24
25 public static const COMMON_NAME:String = "2.5.4.3";
26 public static const SURNAME:String = "2.5.4.4";
27 public static const COUNTRY_NAME:String = "2.5.4.6";
28 public static const LOCALITY_NAME:String = "2.5.4.7";
29 public static const STATE_NAME:String = "2.5.4.8";
30 public static const ORGANIZATION_NAME:String = "2.5.4.10";
31 public static const ORG_UNIT_NAME:String = "2.5.4.11";
32 public static const TITLE:String = "2.5.4.12";
33
34 }
35 }