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; //w ww. jav a 2 s.c o m import java.io.Serializable; import javax.crypto.spec.SecretKeySpec; /** * Contains information for a session key, made by the KDC server. Used in message 4. * * @author SIRS-2013 * */ public class SessionKeyRequestInfo implements Serializable { /** */ private static final long serialVersionUID = 7384857163198979138L; public String usernameB; public Long nonceA; public SecretKeySpec sessionKey; /** Type NoncePacket */ public byte[] cipheredBPacket; public SessionKeyRequestInfo(String usernameB, Long nonceA, SecretKeySpec sessionKey, byte[] cipheredBPacket) { this.usernameB = usernameB; this.nonceA = nonceA; this.sessionKey = sessionKey; this.cipheredBPacket = cipheredBPacket; } }