Skip to content

binlab/crypto-tools

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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"