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

com.radiance.tonclient.AppEncryptionBox Maven / Gradle / Ivy

The newest version!
package com.radiance.tonclient;

import java.util.concurrent.CompletableFuture;

public interface AppEncryptionBox {
    CompletableFuture getInfo();
    CompletableFuture encrypt(String data);
    CompletableFuture decrypt(String data);
}