2018-09-17 14:41:02 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html>
|
2019-08-24 15:12:35 +00:00
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
|
|
|
|
<title>Luzifer / wasm-openssl - DEMO</title>
|
|
|
|
|
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/combine/npm/bootstrap-vue@2.0.0-rc.28/dist/bootstrap-vue.min.css,npm/bootstrap@4.3.1/dist/css/bootstrap.min.css">
|
|
|
|
|
|
|
|
<div id="app">
|
|
|
|
<b-container>
|
|
|
|
<b-row class="mt-3">
|
|
|
|
<b-col class="text-center">
|
|
|
|
|
|
|
|
<h1 class="mb-3">Luzifer / wasm-openssl - DEMO</h1>
|
|
|
|
|
|
|
|
<b-alert
|
|
|
|
:show="!loaded"
|
|
|
|
variant="primary"
|
|
|
|
>
|
|
|
|
Loading WASM... (If this message persists check console for errors!)
|
|
|
|
</b-alert>
|
|
|
|
|
|
|
|
<b-alert
|
|
|
|
:show="error !== ''"
|
|
|
|
variant="danger"
|
|
|
|
>
|
|
|
|
{{ error }}
|
|
|
|
</b-alert>
|
|
|
|
|
2019-08-24 15:58:39 +00:00
|
|
|
<template v-if="loaded">
|
|
|
|
<b-form-input
|
|
|
|
v-model="passphrase"
|
|
|
|
class="mb-2"
|
|
|
|
placeholder="Put a passphrase here..."
|
|
|
|
></b-form-input>
|
|
|
|
|
|
|
|
<b-form-textarea
|
|
|
|
class="mb-2"
|
|
|
|
rows="3"
|
|
|
|
max-rows="10"
|
|
|
|
placeholder="Enter plaintext here..."
|
|
|
|
v-model="plaintext"
|
|
|
|
></b-form-textarea>
|
|
|
|
|
|
|
|
<b-button variant="primary" @click="encrypt" :disabled="!passphrase || !plaintext">Encrypt plaintext...</b-button>
|
|
|
|
<b-button @click="decrypt" :disabled="!passphrase || !ciphertext">Decrypt ciphertext...</b-button>
|
|
|
|
|
|
|
|
<b-form-textarea
|
|
|
|
class="mt-2"
|
|
|
|
rows="3"
|
|
|
|
max-rows="10"
|
|
|
|
placeholder="Paste ciphertext here..."
|
|
|
|
v-model="ciphertext"
|
|
|
|
></b-form-textarea>
|
|
|
|
</template>
|
2019-08-24 15:12:35 +00:00
|
|
|
|
|
|
|
</b-col>
|
|
|
|
</b-row>
|
|
|
|
</b-container>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<script src="https://cdn.jsdelivr.net/combine/npm/vue@2.6.10,npm/bootstrap-vue@2.0.0-rc.28/dist/bootstrap-vue.min.js"></script>
|
|
|
|
<script src="wasm_exec.js"></script>
|
|
|
|
<script>
|
2020-06-13 14:23:29 +00:00
|
|
|
// Define callback to be executed when openssl.wasm was initialized
|
2019-08-24 15:12:35 +00:00
|
|
|
function opensslLoaded() {
|
|
|
|
app.$data.loaded = true
|
|
|
|
}
|
|
|
|
|
|
|
|
const app = new Vue({
|
|
|
|
data: {
|
|
|
|
ciphertext: '',
|
|
|
|
error: '',
|
|
|
|
loaded: false,
|
|
|
|
passphrase: '',
|
|
|
|
plaintext: '',
|
|
|
|
},
|
|
|
|
|
|
|
|
el: '#app',
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
decrypt() {
|
2020-06-13 14:23:29 +00:00
|
|
|
OpenSSL.decrypt(this.ciphertext, this.passphrase, (plaintext, err) => {
|
2019-08-24 15:12:35 +00:00
|
|
|
if (err) {
|
|
|
|
this.error = err
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
this.plaintext = plaintext
|
2020-06-13 14:23:29 +00:00
|
|
|
this.error = ''
|
2019-08-24 15:12:35 +00:00
|
|
|
})
|
|
|
|
},
|
|
|
|
|
|
|
|
encrypt() {
|
2020-06-13 14:23:29 +00:00
|
|
|
OpenSSL.encrypt(this.plaintext, this.passphrase, (ciphertext, err) => {
|
2019-08-24 15:12:35 +00:00
|
|
|
if (err) {
|
|
|
|
this.error = err
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
this.ciphertext = ciphertext
|
2020-06-13 14:23:29 +00:00
|
|
|
this.error = ''
|
2019-08-24 15:12:35 +00:00
|
|
|
})
|
|
|
|
},
|
|
|
|
|
|
|
|
initWASM() {
|
|
|
|
if (!WebAssembly.instantiateStreaming) { // polyfill
|
|
|
|
WebAssembly.instantiateStreaming = async (resp, importObject) => {
|
|
|
|
const source = await (await resp).arrayBuffer()
|
|
|
|
return await WebAssembly.instantiate(source, importObject)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const go = new Go()
|
|
|
|
let mod, inst
|
|
|
|
|
|
|
|
WebAssembly.instantiateStreaming(fetch("openssl.wasm"), go.importObject)
|
|
|
|
.then(result => go.run(result.instance))
|
2019-08-24 15:58:39 +00:00
|
|
|
.catch(err => {
|
|
|
|
this.error = err
|
|
|
|
})
|
2019-08-24 15:12:35 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
mounted() {
|
|
|
|
this.initWASM()
|
|
|
|
},
|
|
|
|
|
|
|
|
})
|
|
|
|
</script>
|
2018-09-17 14:41:02 +00:00
|
|
|
</html>
|