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

com.virjar.sekiro.api.compress.Compressor Maven / Gradle / Ivy

Go to download

ratel api,used for developer on ratel system,an extension for xposed framewrok,ratel api compatable with original xposed framework

There is a newer version: 1.0.5
Show newest version
package com.virjar.sekiro.api.compress;

import java.io.IOException;

/**
 * 数据压缩传输
 */
public interface Compressor {
    /**
     * 压缩算法
     *
     * @return gzip\Snappy\等
     */
    String method();

    byte[] compress(byte[] input) throws IOException;

    byte[] decompress(byte[] input) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy