/* * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Interface.java to edit this template */ package com.megatim.module.encryption.ifaces; /** * * @author STEPHANIE */ public interface EncryptionFace { public void encryptFile(String password, int keyLength, String inputPath, String outputPath) throws Exception ; public void decryptFile(String password, int keyLength, String inputPath, String outputPath) throws Exception ; public String encryptString(String password, int keyLength, String strToEncrypt); public String decryptString(String password, int keyLength, String strToDecrypt); }