JSSE Provider implementation.
This implementation is based on TLS v 1.0 and SSL v3 protocol specifications.
See Also: TLS See Also: v 1.0 Protocol specification (http://www.ietf.org/rfc/rfc2246.txt) See Also: SSL See Also: v3 Protocol specification (http://wp.netscape.com/eng/ssl3) See Also: Provider implementation supports the following cipher suites: See Also: TLS_NULL_WITH_NULL_NULL See Also: TLS_RSA_WITH_NULL_MD5 See Also: TLS_RSA_WITH_NULL_SHA See Also: TLS_RSA_EXPORT_WITH_RC4_40_MD5 See Also: TLS_RSA_WITH_RC4_128_MD5 See Also: TLS_RSA_WITH_RC4_128_SHA See Also: TLS_RSA_EXPORT_WITH_RC2_CBC_40_MD5 See Also: TLS_RSA_WITH_IDEA_CBC_SHA See Also: TLS_RSA_EXPORT_WITH_DES40_CBC_SHA See Also: TLS_RSA_WITH_DES_CBC_SHA See Also: TLS_RSA_WITH_3DES_EDE_CBC_SHA See Also: TLS_DH_DSS_EXPORT_WITH_DES40_CBC_SHA See Also: TLS_DH_DSS_WITH_DES_CBC_SHA See Also: TLS_DH_DSS_WITH_3DES_EDE_CBC_SHA See Also: TLS_DH_RSA_EXPORT_WITH_DES40_CBC_SHA See Also: TLS_DH_RSA_WITH_DES_CBC_SHA See Also: TLS_DH_RSA_WITH_3DES_EDE_CBC_SHA See Also: TLS_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA See Also: TLS_DHE_DSS_WITH_DES_CBC_SHA See Also: TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA See Also: TLS_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA See Also: TLS_DHE_RSA_WITH_DES_CBC_SHA See Also: TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA See Also: TLS_DH_anon_EXPORT_WITH_RC4_40_MD5 See Also: TLS_DH_anon_WITH_RC4_128_MD5 See Also: TLS_DH_anon_EXPORT_WITH_DES40_CBC_SHA See Also: TLS_DH_anon_WITH_DES_CBC_SHA See Also: TLS_DH_anon_WITH_3DES_EDE_CBC_SHA See Also: The real set of available cipher suites depends on set of available See Also: crypto algorithms. These algorithms must be provided by some crypto See Also: provider. See Also: The following cipher algorithms are used by different cipher suites: See Also: IDEA/CBC/NoPadding See Also: RC2/CBC/NoPadding See Also: RC4 See Also: DES/CBC/NoPadding See Also: DES/CBC/NoPadding See Also: DESede/CBC/NoPadding See Also: Also the current JSSE provider implementation uses the following See Also: crypto algorithms: See Also: Algorithms that MUST be provided by crypto provider: See Also: Mac HmacMD5 See Also: Mac HmacSHA1 See Also: MessageDigest MD5 See Also: MessageDigest SHA-1 See Also: CertificateFactory X509 See Also: The cipher suites with RSA key exchange may also require: See Also: Cipher RSA See Also: KeyPairGenerator RSA See Also: KeyFactory RSA See Also: The cipher suites with DH key exchange may also require: See Also: Signature NONEwithDSA See Also: KeyPairGenerator DiffieHellman or DH See Also: KeyFactory DiffieHellman or DH See Also: KeyAgreement DiffieHellman or DH See Also: KeyPairGenerator DiffieHellman or DH See Also: Trust manager implementation requires: See Also: CertPathValidator PKIX See Also: CertificateFactory X509