├── .gitignore ├── Makefile ├── README.assets ├── 1648305375477-947907e0-f024-44d3-a98b-ea2bbf6077be.png ├── 1648305425070-502eae4e-bee3-4cdd-a643-f31945cdd29e.png ├── 1648305517403-3227a824-d75f-4293-86dd-e08e2bff4e25.png └── 1648305528357-e2212eca-d287-42c0-9a36-9e8d10da3d5c.png ├── README.md ├── bak ├── in_console_encrypt.txt ├── in_plain_pwd.txt ├── out_encrypt_pwd.txt └── out_js.txt ├── encrypt.go ├── file.go └── go.mod /.gitignore: -------------------------------------------------------------------------------- 1 | /out/ 2 | /.idea/ -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lz520520/encrypt-js/HEAD/Makefile -------------------------------------------------------------------------------- /README.assets/1648305375477-947907e0-f024-44d3-a98b-ea2bbf6077be.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lz520520/encrypt-js/HEAD/README.assets/1648305375477-947907e0-f024-44d3-a98b-ea2bbf6077be.png -------------------------------------------------------------------------------- /README.assets/1648305425070-502eae4e-bee3-4cdd-a643-f31945cdd29e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lz520520/encrypt-js/HEAD/README.assets/1648305425070-502eae4e-bee3-4cdd-a643-f31945cdd29e.png -------------------------------------------------------------------------------- /README.assets/1648305517403-3227a824-d75f-4293-86dd-e08e2bff4e25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lz520520/encrypt-js/HEAD/README.assets/1648305517403-3227a824-d75f-4293-86dd-e08e2bff4e25.png -------------------------------------------------------------------------------- /README.assets/1648305528357-e2212eca-d287-42c0-9a36-9e8d10da3d5c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lz520520/encrypt-js/HEAD/README.assets/1648305528357-e2212eca-d287-42c0-9a36-9e8d10da3d5c.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lz520520/encrypt-js/HEAD/README.md -------------------------------------------------------------------------------- /bak/in_console_encrypt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lz520520/encrypt-js/HEAD/bak/in_console_encrypt.txt -------------------------------------------------------------------------------- /bak/in_plain_pwd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lz520520/encrypt-js/HEAD/bak/in_plain_pwd.txt -------------------------------------------------------------------------------- /bak/out_encrypt_pwd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lz520520/encrypt-js/HEAD/bak/out_encrypt_pwd.txt -------------------------------------------------------------------------------- /bak/out_js.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lz520520/encrypt-js/HEAD/bak/out_js.txt -------------------------------------------------------------------------------- /encrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lz520520/encrypt-js/HEAD/encrypt.go -------------------------------------------------------------------------------- /file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lz520520/encrypt-js/HEAD/file.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module encrypt-js 2 | 3 | go 1.17 4 | --------------------------------------------------------------------------------