Created
December 30, 2020 23:14
-
-
Save codedust/88c8af3b2acd782e72ffbe0c3c8bf5af to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<script type="module"> | |
import CompactEncrypt from './jose/jwe/compact/encrypt.js' | |
import CompactDecrypt from './jose/jwe/compact/decrypt.js' | |
import generateKeyPair from './jose/util/generate_key_pair.js' | |
import parseJwk from './jose/jwk/parse.js' | |
const inputElement = document.getElementById("input"); | |
inputElement.addEventListener("change", handleFiles, false); | |
function handleFiles() { | |
console.log(this.files); | |
this.files[0].arrayBuffer().then(ui8 => { | |
console.log(ui8) | |
jwe_test(ui8) | |
}) | |
} | |
function showFile(ui8) { | |
const reader = new FileReader(); | |
const preview = document.querySelector('img'); | |
reader.addEventListener("load", function () { | |
// convert image file to base64 string | |
preview.src = reader.result; | |
}, false); | |
reader.readAsDataURL(new Blob([ui8], {type: 'image/png'})); | |
} | |
async function jwe_test(ui8){ | |
// generate key pair | |
const { publicKey, privateKey } = await generateKeyPair('RSA-OAEP-256') | |
console.log(publicKey) | |
console.log(privateKey) | |
console.log("plaintext", ui8) | |
const jwe = await new CompactEncrypt(ui8) | |
.setProtectedHeader({ alg: 'RSA-OAEP-256', enc: 'A256GCM' }) | |
.encrypt(publicKey) | |
console.log(jwe) | |
// decrypt | |
const { plaintext, protectedHeader } = await CompactDecrypt(jwe, privateKey) | |
showFile(plaintext) | |
console.log("protectedHeader", protectedHeader) | |
console.log("decrypted", plaintext) | |
} | |
</script> | |
</head> | |
<body> | |
<input type="file" id="input" multiple> | |
<img src="" height="200" alt="Image preview..."> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment