Kenmegne
6 days ago 4575de680f208fe13833116470664c7252e84bc8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * 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);
}