Source Code Cross Referenced for ServletSSL.java in  » Sevlet-Container » jetty-modules » org » mortbay » jetty » security » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Sevlet Container » jetty modules » org.mortbay.jetty.security 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        // ========================================================================
02:        // Copyright 2001-2005 Mort Bay Consulting Pty. Ltd.
03:        // ------------------------------------------------------------------------
04:        // Licensed under the Apache License, Version 2.0 (the "License");
05:        // you may not use this file except in compliance with the License.
06:        // You may obtain a copy of the License at 
07:        // http://www.apache.org/licenses/LICENSE-2.0
08:        // Unless required by applicable law or agreed to in writing, software
09:        // distributed under the License is distributed on an "AS IS" BASIS,
10:        // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11:        // See the License for the specific language governing permissions and
12:        // limitations under the License.
13:        // ========================================================================
14:
15:        package org.mortbay.jetty.security;
16:
17:        /* --------------------------------------------------------------------- */
18:        /**
19:         * Jetty Servlet SSL support utilities.
20:         * <p>
21:         * A collection of utilities required to support the SSL requirements of the Servlet 2.2 and 2.3
22:         * specs.
23:         * 
24:         * <p>
25:         * Used by the SSL listener classes.
26:         * 
27:         * @author Brett Sealey
28:         */
29:        public class ServletSSL {
30:            /* ------------------------------------------------------------ */
31:            /**
32:             * Given the name of a TLS/SSL cipher suite, return an int representing it effective stream
33:             * cipher key strength. i.e. How much entropy material is in the key material being fed into the
34:             * encryption routines.
35:             * 
36:             * <p>
37:             * This is based on the information on effective key lengths in RFC 2246 - The TLS Protocol
38:             * Version 1.0, Appendix C. CipherSuite definitions:
39:             * 
40:             * <pre>
41:             *                         Effective 
42:             *     Cipher       Type    Key Bits 
43:             * 		       	       
44:             *     NULL       * Stream     0     
45:             *     IDEA_CBC     Block    128     
46:             *     RC2_CBC_40 * Block     40     
47:             *     RC4_40     * Stream    40     
48:             *     RC4_128      Stream   128     
49:             *     DES40_CBC  * Block     40     
50:             *     DES_CBC      Block     56     
51:             *     3DES_EDE_CBC Block    168     
52:             * </pre>
53:             * 
54:             * @param cipherSuite String name of the TLS cipher suite.
55:             * @return int indicating the effective key entropy bit-length.
56:             */
57:            public static final int deduceKeyLength(String cipherSuite) {
58:                // Roughly ordered from most common to least common.
59:                if (cipherSuite == null)
60:                    return 0;
61:                else if (cipherSuite.indexOf("WITH_AES_256_") >= 0)
62:                    return 256;
63:                else if (cipherSuite.indexOf("WITH_RC4_128_") >= 0)
64:                    return 128;
65:                else if (cipherSuite.indexOf("WITH_AES_128_") >= 0)
66:                    return 128;
67:                else if (cipherSuite.indexOf("WITH_RC4_40_") >= 0)
68:                    return 40;
69:                else if (cipherSuite.indexOf("WITH_3DES_EDE_CBC_") >= 0)
70:                    return 168;
71:                else if (cipherSuite.indexOf("WITH_IDEA_CBC_") >= 0)
72:                    return 128;
73:                else if (cipherSuite.indexOf("WITH_RC2_CBC_40_") >= 0)
74:                    return 40;
75:                else if (cipherSuite.indexOf("WITH_DES40_CBC_") >= 0)
76:                    return 40;
77:                else if (cipherSuite.indexOf("WITH_DES_CBC_") >= 0)
78:                    return 56;
79:                else
80:                    return 0;
81:            }
82:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.