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

  1. Install the appropriate browser extension:
  2. Install the CORE Client with the installer package from Unbound.

Simulating CA Create Certificate

  1. On the example page "Create CSR".
  2. Generate the OpenSSL CA Server key. openssl genrsa -des3 -out server.key 2048
  3. Remove the password from the key. copy server.key server.key.tmp openssl rsa -in server.key.tmp -out server.key
  4. Generate a certificate request for the server. openssl req -new -key server.key -out server.csr
  5. Generate a self-signed certificate for server. openssl x509 -req -days 365 -in server.csr -signkey server.key -out server.crt
  6. 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