File size: 955 Bytes
6ee0af3
c6925b9
6ee0af3
 
 
c6925b9
 
6ee0af3
 
c6925b9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6ee0af3
 
c6925b9
6ee0af3
d85000f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Encryption Demo</title>
    <link rel="stylesheet" href="style.css">
</head>
<body>
    <div class="container">
        <h1>Encryption Demo</h1>
        <textarea id="inputText" placeholder="Enter text to encrypt..."></textarea>

        <div>
            <label for="encryptionMethod">Select Encryption Method:</label>
            <select id="encryptionMethod">
                <option value="caesar">Caesar Cipher</option>
                <option value="vigenere">Vigenère Cipher</option>
                <option value="aes">AES Encryption</option>
            </select>
        </div>

        <button onclick="encryptText()">Encrypt</button>

        <h2>Encrypted Text:</h2>
        <textarea id="outputText" readonly></textarea>
    </div>

    <script src="script.js"></script>
</body>
</html>