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; /*from w w w .j a v a2 s .c om*/ public class UserListReplyMessage extends ReplyMessage { private static final long serialVersionUID = 7884010982761333606L; public String[] usernames; @Override public String getStringToHMAC() { String total = ""; for (String u : usernames) total += u; return timestamp + total; } }