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

org.rx.net.shadowsocks.encryption.ICrypto Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
package org.rx.net.shadowsocks.encryption;

import io.netty.buffer.ByteBuf;

public interface ICrypto {
    void setForUdp(boolean forUdp);

    void encrypt(byte[] data, ByteBuf stream);

    void encrypt(byte[] data, int length, ByteBuf stream);

    void decrypt(byte[] data, ByteBuf stream);

    void decrypt(byte[] data, int length, ByteBuf stream);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy