encryptme/aes.html
dogeystamp f51ee13176
major refactoring
- created a package.json
- refactor with eslint
- use modules
2023-01-30 17:43:00 -05:00

17 lines
578 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="style.css">
<title>encryptme: Simple AES encryption/decryption</title>
<meta name="description" content="Easy to use and simple online tool for AES encryption and decryption.
Advanced settings allow control over the IV, AES mode, and PBKDF2 parameters.">
</head>
<body>
<script src="scripts/header-template.js"></script>
<h1>AES</h1>
<script type="module" src="scripts/aes.js"></script>
</body>
</html>