Back to project page CipherChat.
The source code is released under:
MIT License
If you think the Android project CipherChat listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.desperate.common.replies; /* w w w . j av a 2s .co m*/ import java.net.InetAddress; public class IPReplyMessage extends ReplyMessage { private static final long serialVersionUID = -6416881186994491806L; public InetAddress IPaddress; public String username; @Override public String getStringToHMAC() { return timestamp + IPaddress.toString() + username; } }