javax.microedition.io
Interface SecurityInfo


public interface SecurityInfo

This interface defines methods to access information about a secure network connection. Protocols that implement secure connections may use this interface to report the security parameters of the connection.

It provides the certificate, protocol, version, and cipher suite, etc. in use.

Blocking Operations

This interface performs blocking Input and Output operations. An application will lock if an implementation of this interface opens a connection from within the main event thread. Prevent an application from locking by opening a connection from within a thread that is separate from the main event thread. SeeConnector for more information.

See Also:
CertificateException, SecureConnection, HttpsConnection
Since:
BlackBerry API 4.0.0, MIDP 2.0

Method Summary
 String getCipherSuite()
          Returns the name of the cipher suite in use for the connection.
 String getProtocolName()
          Returns the secure protocol name.
 String getProtocolVersion()
          Returns the protocol version.
 Certificate getServerCertificate()
          Returns the Certificate used to establish the secure connection with the server.
 



Method Detail

getServerCertificate

Certificate getServerCertificate()
Returns the Certificate used to establish the secure connection with the server.

Returns:
the Certificate used to establish the secure connection with the server.
Since:
BlackBerry API 4.0.0

getProtocolVersion

String getProtocolVersion()
Returns the protocol version. If appropriate, it should contain the major and minor versions for the protocol separated with a "." (Unicode U+002E).
     For SSL V3 it MUST return "3.0"
     For TLS 1.0 it MUST return "3.1"
     For WTLS (WAP-199) it MUST return "1"
     For WAP TLS Profile and Tunneling Specification it MUST return "3.1"

Returns:
a String containing the version of the protocol; the return value MUST NOT be null.
Since:
BlackBerry API 4.0.0

getProtocolName

String getProtocolName()
Returns the secure protocol name.

Returns:
a String containing the secure protocol identifier; if TLS (RFC 2246) or WAP TLS Profile and Tunneling (WAP-219-TLS) is used for the connection the return value is "TLS"; if SSL V3 (The SSL Protocol Version 3.0) is used for the connection; the return value is "SSL"); if WTLS (WAP 199) is used for the connection the return value is "WTLS".
Since:
BlackBerry API 4.0.0

getCipherSuite

String getCipherSuite()
Returns the name of the cipher suite in use for the connection. The name returned is from the CipherSuite column of the CipherSuite definitions table in Appendix C of RFC 2246. If the cipher suite is not in Appendix C, the name returned is non-null and its contents are not specified. For non-TLS implementions the cipher suite name should be selected according to the actual key exchange, cipher, and hash combination used to establish the connection, so that regardless of whether the secure connection uses SSL V3 or TLS 1.0 or WTLS or WAP TLS Profile and Tunneling, equivalent cipher suites have the same name.

Returns:
a String containing the name of the cipher suite in use.
Since:
BlackBerry API 4.0.0





Copyright 1999-2011 Research In Motion Limited. 295 Phillip Street, Waterloo, Ontario, Canada, N2L 3W8. All Rights Reserved.
Java is a trademark of Oracle America Inc. in the US and other countries.
Legal