1
0
Fork 0
mirror of https://github.com/Luzifer/wasm-openssl.git synced 2024-11-08 14:50:10 +00:00
wasm-openssl/README.md
Knut Ahlers 64dd5ad67e
Improve error handling
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2018-09-18 14:13:33 +02:00

19 lines
560 B
Markdown
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# go-openssl Wrapper for WASM support
```console
$ make
GOOS=js GOARCH=wasm go build -o main.wasm main.go
gzip -c main.wasm > main.wasm.gz
curl -sSfLo wasm_exec.js "https://raw.githubusercontent.com/golang/go/go1.11/misc/wasm/wasm_exec.js"
$ ls -lh main.wasm*
-rwxr-xr-x 1 luzifer luzifer 2.8M Sep 17 16:43 main.wasm
-rw-r--r-- 1 luzifer luzifer 611K Sep 17 16:43 main.wasm.gz
```
Chrome dev console output:
```
index.js:6 (3) ["encryptResponse", "U2FsdGVkX1+IAEdepsByQ9zEm11UWw4QSBPYsMzfiio=", null]
index.js:2 (3) ["decryptResponse", "Knut", null]
```