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.messages; /*w w w . ja va 2s . com*/ import com.desperate.common.Message; public class IPMessage extends Message { private static final long serialVersionUID = 3923056733462088710L; public String username; public IPMessage(String username) { this.username = username; } @Override public String getStringToHMAC() { return timestamp + username; } }