org.telegram.mtproto.secure.aes.AESImplementation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of telegramapi Show documentation
Show all versions of telegramapi Show documentation
Java library to create Telegram Clients
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