org.jboss.crypto
public class: CipherClientSocketFactory [javadoc |
source]
java.lang.Object
org.jboss.crypto.CipherClientSocketFactory
All Implemented Interfaces:
RMIClientSocketFactory, Serializable
An implementation of RMIClientSocketFactory that uses the JCE Cipher
with an SRP session key to create an encrypted stream.
- author:
Scott.Stark - @jboss.org
- version:
$ - Revision: 58708 $
| Method from org.jboss.crypto.CipherClientSocketFactory Detail: |
public Socket createSocket(String host,
int port) throws IOException {
CipherSocket socket = null;
return socket;
}
Create a client socket connected to the specified host and port. |
public boolean equals(Object obj) {
return obj instanceof CipherClientSocketFactory;
}
|
public int hashCode() {
return getClass().getName().hashCode();
}
|