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; /*from www.j a v a 2 s. c o m*/ import com.desperate.common.Message; /** * Implements the following message of the Needham-Shroeder-revisited algorithm: * <p> * 1. <b>A -> B:</b> A * * @author SIRS-RAR * */ public class StartChatMessage extends Message { private static final long serialVersionUID = -6406198061595412305L; /** User name of A */ public String requesterUserName; public StartChatMessage(String requesterUserName) { this.requesterUserName = requesterUserName; } @Override public String getStringToHMAC() { return null; } }