├── .gitignore ├── Additional Keystore Formats └── Additional Keystore Formats.md ├── Code Examples ├── Code Examples.md ├── Converting an Unsecure Socket to a Secure Socket.md ├── Creating a Keystore to Use with JSSE.md ├── Running the JSSE Sample Code.md └── Using the Server Name Indication Extension.md ├── Customizing JSSE └── Customizing JSSE.md ├── Hardware Acceleration and Smartcard Support └── Hardware Acceleration and Smartcard Support.md ├── Introduction ├── Features and Benefits.md ├── Introduction.md ├── JSSE Standard API.md ├── Related Documentation.md └── SunJSSE Provider.md ├── JSSE Classes and Interfaces ├── Core Classes and Interfaces.md ├── JSSE Classes and Interfaces.md ├── Secondary Support Classes and Interfaces.md └── Support Classes and Interfacess.md ├── Kerberos Cipher Suites └── Kerberos Cipher Suites.md ├── LICENSE ├── README.md ├── SUMMARY.md ├── Secure Sockets Layer Protocol Overview ├── How SSL Works.md ├── Secure Sockets Layer Protocol Overview.md └── Why Use SSL.md ├── Server Name Indication Extension └── Server Name Indication Extension.md ├── Terms and Definitions └── Terms and Definitions.md ├── The JRE Installation Directory └── The JRE Installation Directory.md ├── Transport Layer Security Renegotiation Issue └── Transport Layer Security Renegotiation Issue.md ├── Troubleshooting └── Troubleshooting.md └── images ├── classes1.jpg └── sslmessages.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/jsse-reference-guide/HEAD/.gitignore -------------------------------------------------------------------------------- /Additional Keystore Formats/Additional Keystore Formats.md: -------------------------------------------------------------------------------- 1 | # 额外的 Keystore 格式(PKCS12) 2 | -------------------------------------------------------------------------------- /Code Examples/Code Examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/jsse-reference-guide/HEAD/Code Examples/Code Examples.md -------------------------------------------------------------------------------- /Code Examples/Converting an Unsecure Socket to a Secure Socket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/jsse-reference-guide/HEAD/Code Examples/Converting an Unsecure Socket to a Secure Socket.md -------------------------------------------------------------------------------- /Code Examples/Creating a Keystore to Use with JSSE.md: -------------------------------------------------------------------------------- 1 | # 使用 JSSE 创建 Keystore 2 | -------------------------------------------------------------------------------- /Code Examples/Running the JSSE Sample Code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/jsse-reference-guide/HEAD/Code Examples/Running the JSSE Sample Code.md -------------------------------------------------------------------------------- /Code Examples/Using the Server Name Indication Extension.md: -------------------------------------------------------------------------------- 1 | # 使用 SNI 扩展 2 | -------------------------------------------------------------------------------- /Customizing JSSE/Customizing JSSE.md: -------------------------------------------------------------------------------- 1 | # 自定义 JSSE 2 | -------------------------------------------------------------------------------- /Hardware Acceleration and Smartcard Support/Hardware Acceleration and Smartcard Support.md: -------------------------------------------------------------------------------- 1 | # 硬件加速和智能卡的支持 2 | -------------------------------------------------------------------------------- /Introduction/Features and Benefits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/jsse-reference-guide/HEAD/Introduction/Features and Benefits.md -------------------------------------------------------------------------------- /Introduction/Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/jsse-reference-guide/HEAD/Introduction/Introduction.md -------------------------------------------------------------------------------- /Introduction/JSSE Standard API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/jsse-reference-guide/HEAD/Introduction/JSSE Standard API.md -------------------------------------------------------------------------------- /Introduction/Related Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/jsse-reference-guide/HEAD/Introduction/Related Documentation.md -------------------------------------------------------------------------------- /Introduction/SunJSSE Provider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/jsse-reference-guide/HEAD/Introduction/SunJSSE Provider.md -------------------------------------------------------------------------------- /JSSE Classes and Interfaces/Core Classes and Interfaces.md: -------------------------------------------------------------------------------- 1 | # 核心类和接口 2 | -------------------------------------------------------------------------------- /JSSE Classes and Interfaces/JSSE Classes and Interfaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/jsse-reference-guide/HEAD/JSSE Classes and Interfaces/JSSE Classes and Interfaces.md -------------------------------------------------------------------------------- /JSSE Classes and Interfaces/Secondary Support Classes and Interfaces.md: -------------------------------------------------------------------------------- 1 | # 次要支持类和接口 2 | -------------------------------------------------------------------------------- /JSSE Classes and Interfaces/Support Classes and Interfacess.md: -------------------------------------------------------------------------------- 1 | # 支持类和接口 2 | -------------------------------------------------------------------------------- /Kerberos Cipher Suites/Kerberos Cipher Suites.md: -------------------------------------------------------------------------------- 1 | # Kerberos密码套件 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/jsse-reference-guide/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/jsse-reference-guide/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/jsse-reference-guide/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /Secure Sockets Layer Protocol Overview/How SSL Works.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/jsse-reference-guide/HEAD/Secure Sockets Layer Protocol Overview/How SSL Works.md -------------------------------------------------------------------------------- /Secure Sockets Layer Protocol Overview/Secure Sockets Layer Protocol Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/jsse-reference-guide/HEAD/Secure Sockets Layer Protocol Overview/Secure Sockets Layer Protocol Overview.md -------------------------------------------------------------------------------- /Secure Sockets Layer Protocol Overview/Why Use SSL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/jsse-reference-guide/HEAD/Secure Sockets Layer Protocol Overview/Why Use SSL.md -------------------------------------------------------------------------------- /Server Name Indication Extension/Server Name Indication Extension.md: -------------------------------------------------------------------------------- 1 | # SNI 扩展 2 | -------------------------------------------------------------------------------- /Terms and Definitions/Terms and Definitions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/jsse-reference-guide/HEAD/Terms and Definitions/Terms and Definitions.md -------------------------------------------------------------------------------- /The JRE Installation Directory/The JRE Installation Directory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/jsse-reference-guide/HEAD/The JRE Installation Directory/The JRE Installation Directory.md -------------------------------------------------------------------------------- /Transport Layer Security Renegotiation Issue/Transport Layer Security Renegotiation Issue.md: -------------------------------------------------------------------------------- 1 | # TLS 重新协商问题 2 | -------------------------------------------------------------------------------- /Troubleshooting/Troubleshooting.md: -------------------------------------------------------------------------------- 1 | # 问题解决 2 | -------------------------------------------------------------------------------- /images/classes1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/jsse-reference-guide/HEAD/images/classes1.jpg -------------------------------------------------------------------------------- /images/sslmessages.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/jsse-reference-guide/HEAD/images/sslmessages.gif --------------------------------------------------------------------------------