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

org.telegram.mtproto.secure.aes.AESImplementation Maven / Gradle / Ivy

The newest version!
package org.telegram.mtproto.secure.aes;

import java.io.IOException;

/**
 * Created by Ruben Bermudez on 12.02.14.
 */
public interface AESImplementation {
    void AES256IGEDecrypt(byte[] src, byte[] dest, int len, byte[] iv, byte[] key);

    void AES256IGEEncrypt(byte[] src, byte[] dest, int len, byte[] iv, byte[] key);

    void AES256IGEEncrypt(String sourceFile, String destFile, byte[] iv, byte[] key) throws IOException;

    void AES256IGEDecrypt(String sourceFile, String destFile, byte[] iv, byte[] key) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy