Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tls-inspector/certbox
An X.509 certificate toolbox
https://github.com/tls-inspector/certbox
desktop electron pki tls webapp
Last synced: 5 days ago
JSON representation
An X.509 certificate toolbox
- Host: GitHub
- URL: https://github.com/tls-inspector/certbox
- Owner: tls-inspector
- License: mit
- Created: 2022-10-05T00:05:41.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-15T02:49:14.000Z (3 months ago)
- Last Synced: 2024-08-15T03:47:36.935Z (3 months ago)
- Topics: desktop, electron, pki, tls, webapp
- Language: TypeScript
- Homepage: https://certbox.io
- Size: 1.52 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Security: .github/SECURITY.md
Awesome Lists containing this project
README
# CertBox
**[Access CertBox Online »](https://web.certbox.io)**
**[Download CertBox Desktop »](https://certbox.io/desktop.html)**CertBox is a X.509 certificate toolbox on your desktop or in your browser. It allows you to easily generate entire certificate chains, issue certificates from existing roots, clone certificates, and more.
CertBox uses a Golang backend for all cryptographic operations. On the web, this is accessed through a WASM module. On the desktop, this is a companion application.
## Building
Requirements:
- Golang (most recent version)
- NodeJS (most recent mainline release)
- Docker/Podman _(Linux only)_### CertBox Desktop
```bash
cd src/desktop
node release.js
```Packaged executables will be in the `package` directory.
### CertBox Web
```bash
cd src/web
node release.js
```Compiled web application will be in the `dist` directory.