All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.telegram.mtproto.state.KnownSalt Maven / Gradle / Ivy

There is a newer version: 66.2
Show newest version
package org.telegram.mtproto.state;

/**
 * Created with IntelliJ IDEA.
 * User: Ruben Bermudez
 * Date: 07.11.13
 * Time: 7:16
 */
public class KnownSalt {
    private int validSince;
    private int validUntil;
    private long salt;

    public KnownSalt(int validSince, int validUntil, long salt) {
        this.validSince = validSince;
        this.validUntil = validUntil;
        this.salt = salt;
    }

    public int getValidSince() {
        return this.validSince;
    }

    public int getValidUntil() {
        return this.validUntil;
    }

    public long getSalt() {
        return this.salt;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy