From 4575de680f208fe13833116470664c7252e84bc8 Mon Sep 17 00:00:00 2001
From: Kenmegne <stephanie.kenmegne@gmail.com>
Date: Fri, 19 Jun 2026 11:07:23 +0000
Subject: [PATCH] move to new repo

---
 Encryption/src/main/java/com/megatim/module/encryption/ifaces/EncryptionFace.java |   20 ++++++++++++++++++++
 1 files changed, 20 insertions(+), 0 deletions(-)

diff --git a/Encryption/src/main/java/com/megatim/module/encryption/ifaces/EncryptionFace.java b/Encryption/src/main/java/com/megatim/module/encryption/ifaces/EncryptionFace.java
new file mode 100644
index 0000000..f549a09
--- /dev/null
+++ b/Encryption/src/main/java/com/megatim/module/encryption/ifaces/EncryptionFace.java
@@ -0,0 +1,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);
+}

--
Gitblit v1.10.0