Unbound CORE JavaScript API
This package provides an API to use Unbound's CORE service for virtual enclaves with JavaScript on a webpage.
Installing Unbound CORE
- Install the appropriate browser extension:
- For Google Chrome
- For Microsoft Edge
- For Firefox - contact Unbound Support for a link to download the extension.
- Install the CORE Client with the installer package from Unbound.
Simulating CA Create Certificate
- On the example page "Create CSR".
- Generate the OpenSSL CA Server key.
openssl genrsa -des3 -out server.key 2048 - Remove the password from the key.
copy server.key server.key.tmpopenssl rsa -in server.key.tmp -out server.key - Generate a certificate request for the server.
openssl req -new -key server.key -out server.csr - Generate a self-signed certificate for server.
openssl x509 -req -days 365 -in server.csr -signkey server.key -out server.crt - Use OpenSSL to create a certificate for the CSR.
openssl x509 -req -days 365 -in csr.pem -CAkey server.key -CA server.crt -CAcreateserial -out key1.crt