summaryrefslogtreecommitdiff
path: root/blog
diff options
context:
space:
mode:
Diffstat (limited to 'blog')
-rw-r--r--blog/blogext.css2
-rw-r--r--blog/decryptor.js2
2 files changed, 3 insertions, 1 deletions
diff --git a/blog/blogext.css b/blog/blogext.css
index 3ce40d0..17c06f5 100644
--- a/blog/blogext.css
+++ b/blog/blogext.css
@@ -6,6 +6,7 @@ span.right{
}
span.tipped{
text-decoration: underline dotted;
+ text-decoration-color: var(--interactive-active-bg);
}
a.toctarg{
margin-left:-160px;
@@ -64,6 +65,7 @@ pre {
background:rgba(128,128,128,0.4);
border:1px rgba(128,128,128,0.4) solid;
padding:4px;
+ text-wrap: wrap;
}
code {
font-family:'CMU Typewriter Text w', 'CMU Typewriter Text', 'TeX Gyre Cursor', 'FreeMono', 'Courier New', Courier, monospace;
diff --git a/blog/decryptor.js b/blog/decryptor.js
index c37aa42..d4781e7 100644
--- a/blog/decryptor.js
+++ b/blog/decryptor.js
@@ -47,7 +47,7 @@ async function decryptor(id,key)
{
const aes=aesjs,sha256=Sha256;
const keyu8=aes.utils.utf8.toBytes(document.getElementById("keyinp").value);
- const saltu8=aes.utils.utf8.toBytes('hellwhymustiaddsalttothiscrap');
+ const saltu8=aes.utils.utf8.toBytes('mmmdeliciousthermalpasteletmeconsumeallofit');
const enckey=await new Promise(
(resolv,rej)=>
{scrypt(keyu8,saltu8,1024,16,2,32,(e,p,k)=>{e?rej(e):k?resolv(k):undefined;});}