{"id":6,"date":"2023-08-31T13:08:04","date_gmt":"2023-08-31T13:08:04","guid":{"rendered":"https:\/\/dycrypt.dylanwettstein.com\/?page_id=6"},"modified":"2024-01-16T10:32:43","modified_gmt":"2024-01-16T09:32:43","slug":"encrypt","status":"publish","type":"page","link":"https:\/\/dycrypt.dylanwettstein.com\/index.php\/encrypt\/","title":{"rendered":"Encrypt"},"content":{"rendered":"    <div id=\"dycrypt\">\n        <!-- Step 1: Choose Encrypt or Decrypt -->\n        <div id=\"step1\">\n\t\t\t<p style=\"font-family: Fractul; font-weight: 800;\" class=\"has-x-large-font-size\">How can we help?<\/p>\n\t\t\t<p style=\"font-family: Fractul;\">I'd like to encrypt a confidential file or text in order to send it securely to somebody else.<\/p>\n            <button id=\"encryptBtn\">Encrypt a file<\/button>\n\t\t\t<hr\/>\n\t\t\t<p style=\"font-family: Fractul;\">I received a file with the suffix .dycrypt, which I now want to decrypt to be able to read and open it.<\/p>\n            <button id=\"decryptButton\">Decrypt a file<\/button>\n        <\/div>\n\n        <!-- Step 2: Choose Text or File -->\n        <div id=\"step2\" style=\"display:none;\">\n\t\t\t<p style=\"font-family: Fractul; font-weight: 800;\" class=\"has-x-large-font-size\">What would you like to encrypt?<\/p>\n            <button id=\"textBtn\">Plain text<\/button>\n            <button id=\"fileBtn\">Any other file<\/button>\n        <\/div>\n\n        <!-- Step 3: Input Text or File -->\n        <div id=\"step3\" style=\"display:none;\">\n\t\t\t<p style=\"font-family: Fractul; font-weight: 800;\" class=\"has-x-large-font-size\">Please fill this out.<\/p>\n            <textarea id=\"inputText\" style=\"display:none;\" placeholder=\"Enter or paste your text here\"><\/textarea>\n            <input type=\"file\" id=\"inputFile\" style=\"display:none;\">\n\t\t\t<input type=\"email\" id=\"emailInput\" placeholder=\"Your E-Mail address\" style=\"display:none;\" required>\n            <button id=\"submitBtn\" style=\"display:none;\">Submit<\/button>\n\t\t\t<p style=\"font-family: Fractul;\">You'll get an encrypted file. It can be decrypted once during 90 days.<\/p>\n\t\t\t\n        <\/div>\n\n        <!-- Debug Element -->\n        <div id=\"debug\" style=\"margin-top: 20px; color: red; display: none;\"><\/div>\n    <\/div>\n\n    <script>\n\t\tdocument.getElementById('decryptButton').addEventListener('click', function() {\n\t\t\twindow.location.href = 'https:\/\/dycrypt.dylanwettstein.com\/index.php\/decrypt';\n\t\t});\n\n        document.addEventListener('DOMContentLoaded', (event) => {\n            const step1 = document.getElementById('step1');\n            const step2 = document.getElementById('step2');\n            const step3 = document.getElementById('step3');\n            const encryptBtn = document.getElementById('encryptBtn');\n            const textBtn = document.getElementById('textBtn');\n            const fileBtn = document.getElementById('fileBtn');\n            const inputText = document.getElementById('inputText');\n            const inputFile = document.getElementById('inputFile');\n            const submitBtn = document.getElementById('submitBtn');\n            const debugElement = document.getElementById('debug');\n\t\t\tconst emailInput = document.getElementById('emailInput');\n\t\t\tre = \/^[^\\s@]+@[^\\s@]+\\.[^\\s@]+$\/;\n\t\t\t\n\t\t\tdebugElement.innerHTML = '<t style=\"color: gray; font-family: Fractul; font-weight: 300;\"><i>Console is empty<\/i><\/t>';\n\t\t\t\n            encryptBtn.addEventListener('click', () => {\n                step1.style.display = 'none';\n                step2.style.display = 'block';\n            });\n\n            textBtn.addEventListener('click', () => {\n                step2.style.display = 'none';\n                step3.style.display = 'block';\n                inputText.style.display = 'block';\n\t\t\t\temailInput.style.display = 'block';\n                submitBtn.style.display = 'block';\n            });\n\n            fileBtn.addEventListener('click', () => {\n                step2.style.display = 'none';\n                step3.style.display = 'block';\n                inputFile.style.display = 'block';\n\t\t\t\temailInput.style.display = 'block';\n                submitBtn.style.display = 'block';\n            });\n\n            submitBtn.addEventListener('click', async () => {\n\t\t\t\t\/\/ Deactivate the submit button and show the loader\n\t\t\t\tsubmitBtn.disabled = true;\n\t\t\t\tdebugElement.style.display = 'block';\n\t\t\t\tconst loader = document.createElement('div');\n\t\t\t\tloader.className = 'loader';\n\t\t\t\tstep3.appendChild(loader);\n                try {\n                    let fileSize = 0;\n\t\t\t\t\ttry {\n\t\t\t\t\t\tif (inputText.style.display === 'block') {\n\t\t\t\t\t\t\tfileSize = new Blob([inputText.value]).size;\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tconst file = inputFile.files[0];\n\t\t\t\t\t\t\tfileSize = file.size;\n\t\t\t\t\t\t}\n\t\t\t\t\t} catch {}\n\t\t\t\t\tif (fileSize == 0 || fileSize < 1 || !fileSize || fileSize == null || fileSize == undefined || !re.test(emailInput.value)) {\n\t\t\t\t\t\tdebugElement.innerHTML = '<t style=\"color: black; font-family: Fractul;\">Check your entries.<\/t>';\n\t\t\t\t\t\tloader.remove();\n\t\t\t\t\t\tsubmitBtn.disabled = false;\n\t\t\t\t\t} else {\n\t\t\t\t\t\tsetTimeout(() => {\n\t\t\t\t\t\t\tloader.remove();\n\t\t\t\t\t\t\tsubmitBtn.disabled = false;\n\t\t\t\t\t\t\twindow.location.href = 'https:\/\/dycrypt.dylanwettstein.com\/index.php\/error\/';\n\t\t\t\t\t\t}, 180000);  \/\/ 180 Sekunden\n\n\n\t\t\t\t\t\tconst formData = new FormData();\n\t\t\t\t\t\tformData.append('action', 'check_limits');\n\t\t\t\t\t\tformData.append('file_size', fileSize);\n\n\t\t\t\t\t\tdebugElement.innerHTML = '<t style=\"color: black; font-family: Fractul;\">Encryption requested<\/t>';\n\n\t\t\t\t\t\tconst response = await fetch('https:\/\/dycrypt.dylanwettstein.com\/wp-admin\/admin-ajax.php', {\n\t\t\t\t\t\t\tmethod: 'POST',\n\t\t\t\t\t\t\tbody: formData\n\t\t\t\t\t\t});\n\n\t\t\t\t\t\tif (response.ok) {\n\t\t\t\t\t\t\tdebugElement.innerHTML = '<t style=\"color: lightgray; font-family: Fractul;\">Request accepted<\/t><br><t style=\"color: black; font-family: Fractul;\">Processing data\u2026<\/t>';\n\t\t\t\t\t\t\tconst data = await response.json();\n\t\t\t\t\t\t\tif (data.message === 'Fertig') {\n\t\t\t\t\t\t\t\tconst encryptFormData = new FormData();\n\t\t\t\t\t\t\t\tencryptFormData.append('action', 'encrypt_and_send_data');\n\t\t\t\t\t\t\t\tlet fileType = inputText.style.display === 'block' ? 'txt' : inputFile.files[0].name.split('.').pop();\n\t\t\t\t\t\t\t\tencryptFormData.append('type', fileType);\n\t\t\t\t\t\t\t\tencryptFormData.append('email', emailInput.value);\n\n\t\t\t\t\t\t\t\tlet a; \/\/ Declare 'a' here to make it accessible in both blocks\n\n\t\t\t\t\t\t\t\tif (inputText.style.display === 'block') {\n\t\t\t\t\t\t\t\t\tconst textBlob = new Blob([inputText.value]);\n\t\t\t\t\t\t\t\t\tconst reader = new FileReader();\n\t\t\t\t\t\t\t\t\treader.readAsDataURL(textBlob);\n\t\t\t\t\t\t\t\t\treader.onload = () => {\n\t\t\t\t\t\t\t\t\t\tencryptFormData.append('data', reader.result.split(',')[1]);\n\t\t\t\t\t\t\t\t\t\tfetch('https:\/\/dycrypt.dylanwettstein.com\/wp-admin\/admin-ajax.php', {\n\t\t\t\t\t\t\t\t\t\t\tmethod: 'POST',\n\t\t\t\t\t\t\t\t\t\t\tbody: encryptFormData\n\t\t\t\t\t\t\t\t\t\t})\n\t\t\t\t\t\t\t\t\t\t.then(response => response.json())\n\t\t\t\t\t\t\t\t\t\t.then(data => {\n\t\t\t\t\t\t\t\t\t\t\tconst blob = new Blob([data.encrypted_data], { type: 'application\/dycrypt' });\n\t\t\t\t\t\t\t\t\t\t\tconst url = window.URL.createObjectURL(blob);\n\t\t\t\t\t\t\t\t\t\t\ta = document.createElement('a');\n\t\t\t\t\t\t\t\t\t\t\ta.style.display = 'none';\n\t\t\t\t\t\t\t\t\t\t\ta.href = url;\n\t\t\t\t\t\t\t\t\t\t\tconst fileName = `${data.time}.dycrypt`;\n\t\t\t\t\t\t\t\t\t\t\ta.download = fileName;\n\t\t\t\t\t\t\t\t\t\t\tdocument.body.appendChild(a);\n\t\t\t\t\t\t\t\t\t\t\t\/\/ \u00dcberpr\u00fcfe die Dateiendung\n\t\t\t\t\t\t\t\t\t\t\tif (fileName.endsWith('.dycrypt.html')) {\n\t\t\t\t\t\t\t\t\t\t\t\twindow.location.href = 'https:\/\/dycrypt.dylanwettstein.com\/index.php\/error\/';\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\ta.click();\n\t\t\t\t\t\t\t\t\t\t\t\twindow.URL.revokeObjectURL(url);\n\t\t\t\t\t\t\t\t\t\t\t\tdebugElement.innerHTML = '<t style=\"color: lightgray; font-family: Fractul;\">Request accepted<br>Data processed<\/t><br><t style=\"color: black; font-family: Fractul;\">Done!<\/t>';\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t})\n\t\t\t\t\t\t\t\t\t\t.finally(() => {\n\t\t\t\t\t\t\t\t\t\t\tif (a) document.body.removeChild(a);\n\t\t\t\t\t\t\t\t\t\t\tloader.remove();\n\t\t\t\t\t\t\t\t\t\t\tsubmitBtn.disabled = false;\n\t\t\t\t\t\t\t\t\t\t\tsetTimeout(() => {\n\t\t\t\t\t\t\t\t\t\t\t\twindow.location.href = 'https:\/\/dycrypt.dylanwettstein.com\/index.php\/success\/';\n\t\t\t\t\t\t\t\t\t\t\t}, 2500); \/\/ Warte vor der Weiterleitung\n\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tconst file = inputFile.files[0];\n\t\t\t\t\t\t\t\t\tconst reader = new FileReader();\n\t\t\t\t\t\t\t\t\treader.readAsDataURL(file);\n\t\t\t\t\t\t\t\t\treader.onload = () => {\n\t\t\t\t\t\t\t\t\t\tencryptFormData.append('data', reader.result.split(',')[1]);\n\t\t\t\t\t\t\t\t\t\tfetch('https:\/\/dycrypt.dylanwettstein.com\/wp-admin\/admin-ajax.php', {\n\t\t\t\t\t\t\t\t\t\t\tmethod: 'POST',\n\t\t\t\t\t\t\t\t\t\t\tbody: encryptFormData\n\t\t\t\t\t\t\t\t\t\t})\n\t\t\t\t\t\t\t\t\t\t.then(response => response.json())\n\t\t\t\t\t\t\t\t\t\t.then(data => {\n\t\t\t\t\t\t\t\t\t\t\tconst blob = new Blob([data.encrypted_data], { type: 'application\/dycrypt' });\n\t\t\t\t\t\t\t\t\t\t\tconst url = window.URL.createObjectURL(blob);\n\t\t\t\t\t\t\t\t\t\t\ta = document.createElement('a');\n\t\t\t\t\t\t\t\t\t\t\ta.style.display = 'none';\n\t\t\t\t\t\t\t\t\t\t\ta.href = url;\n\t\t\t\t\t\t\t\t\t\t\tconst fileName = `${data.time}.dycrypt`;\n\t\t\t\t\t\t\t\t\t\t\ta.download = fileName;\n\t\t\t\t\t\t\t\t\t\t\tdocument.body.appendChild(a);\n\t\t\t\t\t\t\t\t\t\t\t\/\/ \u00dcberpr\u00fcfe die Dateiendung\n\t\t\t\t\t\t\t\t\t\t\tif (fileName.endsWith('.dycrypt.html')) {\n\t\t\t\t\t\t\t\t\t\t\t\twindow.location.href = 'https:\/\/dycrypt.dylanwettstein.com\/index.php\/error\/';\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\ta.click();\n\t\t\t\t\t\t\t\t\t\t\t\twindow.URL.revokeObjectURL(url);\n\t\t\t\t\t\t\t\t\t\t\t\tdebugElement.innerHTML = '<t style=\"color: lightgray; font-family: Fractul;\">Request accepted<br>Data uploaded<\/t><br><t style=\"color: black; font-family: Fractul;\">Done!<\/t>';\n\t\t\t\t\t\t\t\t\t\t\t\tsetTimeout(() => {\n\t\t\t\t\t\t\t\t\t\t\t\t\twindow.open('https:\/\/dycrypt.dylanwettstein.com\/index.php\/success\/', '_blank');\n\t\t\t\t\t\t\t\t\t\t\t\t}, 2500); \/\/ Warte vor der Weiterleitung\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t\treader.onerror = error => {\n\t\t\t\t\t\t\t\t\t\tdebugElement.innerHTML = '<t style=\"color: lightgray; font-family: Fractul;\">Request accepted<br>Data uploaded<\/t><br><t style=\"color: black; font-family: Fractul;\">An error occurred: ' + error.toString() + '<\/p>';\n\t\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\talert(data.message);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tdebugElement.innerHTML = '<t style=\"color: lightgray; font-family: Fractul;\">Encryption requested<\/t><br><t style=\"color: black; font-family: Fractul;\">An error occurred: ' + response.status + '<\/p>';\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n                } catch (error) {\n                    loader.remove();\n\t\t\t\t\tsubmitBtn.disabled = false;\n\t\t\t\t\tdebugElement.innerHTML = '<t style=\"color: black; font-family: Fractul;\">An error occurred: ' + error.toString() + '<\/p>';\n                }\n            });\n        });\n    <\/script>\n\t<style>\n\t.loader {\n\t  width:120px;\n\t  height:40px;\n\t  display: grid;\n\t  color: #000000;\n\t}\n\n\t.loader:before,\n\t.loader:after {\n\t  content: \"\";\n\t  grid-area: 1\/1;\n\t  --c1:linear-gradient(90deg,#0000 calc(100%\/3),currentColor 0 calc(2*100%\/3),#0000 0);\n\t  --c2:linear-gradient( 0deg,#0000 calc(100%\/3),currentColor 0 calc(2*100%\/3),#0000 0);\n\t  background:\n\t\tvar(--c1),\n\t\tvar(--c2),\n\t\tvar(--c1),\n\t\tvar(--c2);\n\t  background-size:300% 8px,8px 300%;\n\t  background-repeat: no-repeat;\n\t  animation: l5 3s infinite;\n\t}\n\t.loader:after {\n\t  animation-delay: -1.5s;\n\t}\n\n\t@keyframes l5 {\n\t  0%   {background-position: 50%  0,100% 100%,0    100%,0 0}\n\t  25%  {background-position: 0    0,100% 50% ,0    100%,0 0}\n\t  50%  {background-position: 0    0,100% 0   ,50%  100%,0 0}\n\t  75%  {background-position: 0    0,100% 0   ,100% 100%,0 50%}\n\t 75.01%{background-position: 100% 0,100% 0   ,100% 100%,0 50%}\n\t  100% {background-position: 50%  0,100% 0   ,100% 100%,0 100%}\n\t}\n\t\/* Container *\/\n\t#dycrypt, #dycrypt-decrypt {\n\t\tfont-family: Arial, sans-serif;\n\t\tmargin: 20px;\n\t}\n\n\t\/* Buttons *\/\n\tbutton {\n\t\tbackground-color: black;\n\t\tcolor: white;\n\t\tpadding: 10px 20px;\n\t\tborder: none;\n\t\tcursor: pointer;\n\t\tmargin: 5px;\n\t}\n\n\tbutton:hover {\n\t\tbackground-color: #333;\n\t}\n\n\t\/* Input Fields *\/\n\tinput[type=\"text\"], input[type=\"email\"], input[type=\"file\"] {\n\t\twidth: 100%;\n\t\tpadding: 10px;\n\t\tmargin: 5px 0 20px 0;\n\t\tdisplay: inline-block;\n\t\tborder: 1px solid #ccc;\n\t\tbox-sizing: border-box;\n\t}\n\n\t\/* Textarea *\/\n\ttextarea {\n\t\twidth: 100%;\n\t\tpadding: 10px;\n\t\tmargin: 5px 0 20px 0;\n\t\tborder: 1px solid #ccc;\n\t\tbox-sizing: border-box;\n\t}\n\n\t\/* Debug Element *\/\n\t#debug, #decryptDebug {\n\t\tpadding: 10px;\n\t\tbackground-color: #f2f2f2;\n\t\tborder: 1px solid #ccc;\n\t}\n\n\tinput, textarea, button {\n\t\tfont-family: \"Fractul\", sans-serif;\n\t\tfont-weight: 500; \/* 500 entspricht normalerweise der \"Medium\" Variante *\/\n\t}\n\n\t<\/style>\n    \n\n\n\n<p><a href=\"javascript:location.reload()\" style=\"font-family: Fractul;\">start over<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>start over<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"blank","meta":{"footnotes":""},"class_list":["post-6","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Encrypt a file - dycrypt<\/title>\n<meta name=\"description\" content=\"Lock your secure files effortlessly with dycrypt&#039;s encryption page. Your data privacy and security are our top priorities.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/dycrypt.dylanwettstein.com\/index.php\/encrypt\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Encrypt a file - dycrypt\" \/>\n<meta property=\"og:description\" content=\"Lock your secure files effortlessly with dycrypt&#039;s encryption page. Your data privacy and security are our top priorities.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/dycrypt.dylanwettstein.com\/index.php\/encrypt\/\" \/>\n<meta property=\"og:site_name\" content=\"dycrypt\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-16T09:32:43+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/dycrypt.dylanwettstein.com\\\/index.php\\\/encrypt\\\/\",\"url\":\"https:\\\/\\\/dycrypt.dylanwettstein.com\\\/index.php\\\/encrypt\\\/\",\"name\":\"Encrypt a file - dycrypt\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/dycrypt.dylanwettstein.com\\\/#website\"},\"datePublished\":\"2023-08-31T13:08:04+00:00\",\"dateModified\":\"2024-01-16T09:32:43+00:00\",\"description\":\"Lock your secure files effortlessly with dycrypt's encryption page. Your data privacy and security are our top priorities.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/dycrypt.dylanwettstein.com\\\/index.php\\\/encrypt\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/dycrypt.dylanwettstein.com\\\/index.php\\\/encrypt\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/dycrypt.dylanwettstein.com\\\/index.php\\\/encrypt\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/dycrypt.dylanwettstein.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Encrypt\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/dycrypt.dylanwettstein.com\\\/#website\",\"url\":\"https:\\\/\\\/dycrypt.dylanwettstein.com\\\/\",\"name\":\"dycrypt\",\"description\":\"It&#039;s Your Data, Keep It That Way\",\"publisher\":{\"@id\":\"https:\\\/\\\/dycrypt.dylanwettstein.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/dycrypt.dylanwettstein.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/dycrypt.dylanwettstein.com\\\/#organization\",\"name\":\"dycrypt\",\"url\":\"https:\\\/\\\/dycrypt.dylanwettstein.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/dycrypt.dylanwettstein.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/dycrypt.dylanwettstein.com\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/IMG_5709.jpeg\",\"contentUrl\":\"https:\\\/\\\/dycrypt.dylanwettstein.com\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/IMG_5709.jpeg\",\"width\":956,\"height\":237,\"caption\":\"dycrypt\"},\"image\":{\"@id\":\"https:\\\/\\\/dycrypt.dylanwettstein.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Encrypt a file - dycrypt","description":"Lock your secure files effortlessly with dycrypt's encryption page. Your data privacy and security are our top priorities.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/dycrypt.dylanwettstein.com\/index.php\/encrypt\/","og_locale":"en_US","og_type":"article","og_title":"Encrypt a file - dycrypt","og_description":"Lock your secure files effortlessly with dycrypt's encryption page. Your data privacy and security are our top priorities.","og_url":"https:\/\/dycrypt.dylanwettstein.com\/index.php\/encrypt\/","og_site_name":"dycrypt","article_modified_time":"2024-01-16T09:32:43+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/dycrypt.dylanwettstein.com\/index.php\/encrypt\/","url":"https:\/\/dycrypt.dylanwettstein.com\/index.php\/encrypt\/","name":"Encrypt a file - dycrypt","isPartOf":{"@id":"https:\/\/dycrypt.dylanwettstein.com\/#website"},"datePublished":"2023-08-31T13:08:04+00:00","dateModified":"2024-01-16T09:32:43+00:00","description":"Lock your secure files effortlessly with dycrypt's encryption page. Your data privacy and security are our top priorities.","breadcrumb":{"@id":"https:\/\/dycrypt.dylanwettstein.com\/index.php\/encrypt\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dycrypt.dylanwettstein.com\/index.php\/encrypt\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/dycrypt.dylanwettstein.com\/index.php\/encrypt\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/dycrypt.dylanwettstein.com\/"},{"@type":"ListItem","position":2,"name":"Encrypt"}]},{"@type":"WebSite","@id":"https:\/\/dycrypt.dylanwettstein.com\/#website","url":"https:\/\/dycrypt.dylanwettstein.com\/","name":"dycrypt","description":"It&#039;s Your Data, Keep It That Way","publisher":{"@id":"https:\/\/dycrypt.dylanwettstein.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/dycrypt.dylanwettstein.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/dycrypt.dylanwettstein.com\/#organization","name":"dycrypt","url":"https:\/\/dycrypt.dylanwettstein.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dycrypt.dylanwettstein.com\/#\/schema\/logo\/image\/","url":"https:\/\/dycrypt.dylanwettstein.com\/wp-content\/uploads\/2023\/08\/IMG_5709.jpeg","contentUrl":"https:\/\/dycrypt.dylanwettstein.com\/wp-content\/uploads\/2023\/08\/IMG_5709.jpeg","width":956,"height":237,"caption":"dycrypt"},"image":{"@id":"https:\/\/dycrypt.dylanwettstein.com\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/dycrypt.dylanwettstein.com\/index.php\/wp-json\/wp\/v2\/pages\/6","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/dycrypt.dylanwettstein.com\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/dycrypt.dylanwettstein.com\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/dycrypt.dylanwettstein.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/dycrypt.dylanwettstein.com\/index.php\/wp-json\/wp\/v2\/comments?post=6"}],"version-history":[{"count":14,"href":"https:\/\/dycrypt.dylanwettstein.com\/index.php\/wp-json\/wp\/v2\/pages\/6\/revisions"}],"predecessor-version":[{"id":520,"href":"https:\/\/dycrypt.dylanwettstein.com\/index.php\/wp-json\/wp\/v2\/pages\/6\/revisions\/520"}],"wp:attachment":[{"href":"https:\/\/dycrypt.dylanwettstein.com\/index.php\/wp-json\/wp\/v2\/media?parent=6"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}