binlab / crypto-tools

Set of tools for some crypto- and data- conversions based on JavaScript :closed_lock_with_key:

Home Page:https://hub.docker.com/r/binlab/crypto-tools

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Crypto Tools lock

GitHub release GitHub tag

Docker Automated Docker Build Status Latest Version Docker Stars Docker Pulls

Set of tools for some crypto- and data- conversions based on JavaScript.

Based on these sources with some modification. Many thanks for this!

Implemented algorithms those like - md2, md4, md5, sha1, sha2, sha256,sha512, base32, base64, url encode/decode and html encode/decode etc

Why?

The main goal was to build full offline service without external dependencies for browser and tracking code for security reasons and full audit. It also added all libraries with not minified sources (except highlight.js). Service built on Docker with Nginx based on Alpine Linux with full-cycle of automaticity build and can work offline. It also can be built locally without the need to install Node.js and NPM.


Screenshots

screenshot1

screenshot2


Run in a Docker

docker run --rm -p 8080:80 binlab/crypto-tools:latest

Then open in a browser: http://localhost:8080/


Build from sources by Docker

docker build -t crypto-tools:latest .

Build from sources by NPM

mkdir -p dist
npm install
npm run build

Then open locally in a browser:

# For Linux
xdg-open file://${PWD}/dist/index.html

# For MacOS
open file://${PWD}/dist/index.html

# Other (paste a result in browser)
echo "file://${PWD}/dist/index.html"

About

Set of tools for some crypto- and data- conversions based on JavaScript :closed_lock_with_key:

https://hub.docker.com/r/binlab/crypto-tools

License:MIT License


Languages

Language:JavaScript 61.6%Language:CSS 36.6%Language:HTML 1.6%Language:Dockerfile 0.1%