Initial commit

This commit is contained in:
2023-02-24 01:41:06 +01:00
commit 49cbb85e7b
21 changed files with 5107 additions and 0 deletions

19
static/index.pug Normal file
View File

@ -0,0 +1,19 @@
extends layout.pug
block body
h1 TryCrypt
br
div#general
p Please enter your KEY and IV
input#keyField(type="password" placeholder="Passkey" style="width:30%;")
input#ivField(type="password" placeholder="IV" style="width:16%;")
button#keyRefresh 👁
button#keySave Save
button#generateRandom Generate
br
br
div#boxes
textarea#userTB(placeholder="Your encrypted or plain text" style="width: 48.5%; margin-left: 1%; height: 50%; float:left;")
textarea#systemTB(placeholder="The decrypted/encrypted text" readonly="readonly" style="width: 48.5%; margin-left: 1%; height: 50%; float:left")
button#btnEncrypt Encrypt
button#btnDecrypt Decrypt