org.telegram.mtproto.tl.pq.DhGenResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of telegramapi Show documentation
Show all versions of telegramapi Show documentation
Java library to create Telegram Clients
package org.telegram.mtproto.tl.pq;
import org.telegram.tl.TLContext;
import org.telegram.tl.TLObject;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import static org.telegram.tl.StreamingUtils.readBytes;
import static org.telegram.tl.StreamingUtils.writeByteArray;
/**
* Created with IntelliJ IDEA.
* User: Ruben Bermudez
* Date: 03.11.13
* Time: 7:19
*/
public abstract class DhGenResult extends TLObject {
protected byte[] nonce;
protected byte[] serverNonce;
protected byte[] newNonceHash;
protected DhGenResult(byte[] nonce, byte[] serverNonce, byte[] newNonceHash) {
this.nonce = nonce;
this.serverNonce = serverNonce;
this.newNonceHash = newNonceHash;
}
public DhGenResult() {
}
public byte[] getNonce() {
return this.nonce;
}
public byte[] getServerNonce() {
return this.serverNonce;
}
public byte[] getNewNonceHash() {
return this.newNonceHash;
}
@Override
public void serializeBody(OutputStream stream) throws IOException {
writeByteArray(this.nonce, stream);
writeByteArray(this.serverNonce, stream);
writeByteArray(this.newNonceHash, stream);
}
@Override
public void deserializeBody(InputStream stream, TLContext context) throws IOException {
this.nonce = readBytes(16, stream);
this.serverNonce = readBytes(16, stream);
this.newNonceHash = readBytes(16, stream);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy