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/decodeandhtml encode/decodeetc
WikiWikiWikiWikiWikiWikiWikiWikiWikiWikiThe 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.


Dockerdocker run --rm -p 8080:80 binlab/crypto-tools:latest
Then open in a browser: http://localhost:8080/
Dockerdocker build -t crypto-tools:latest .
NPMmkdir -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"
Content type
Image
Digest
Size
9.3 MB
Last updated
over 6 years ago
docker pull binlab/crypto-tools