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

it.auties.whatsapp.model.signal.auth.ClientHelloBuilder Maven / Gradle / Ivy

package it.auties.whatsapp.model.signal.auth;

public class ClientHelloBuilder {
    private byte[] ephemeral;
    private byte[] _static;
    private byte[] payload;

    public ClientHelloBuilder() {
        ephemeral = null;
        _static = null;
        payload = null;
    }

    public ClientHelloBuilder ephemeral(byte[] ephemeral) {
        this.ephemeral = ephemeral;
        return this;
    }
    public ClientHelloBuilder _static(byte[] _static) {
        this._static = _static;
        return this;
    }
    public ClientHelloBuilder payload(byte[] payload) {
        this.payload = payload;
        return this;
    }

    public it.auties.whatsapp.model.signal.auth.ClientHello build() {
        return new it.auties.whatsapp.model.signal.auth.ClientHello(ephemeral, _static, payload);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy