├── .gitignore ├── BaseHashCoder.go ├── FileHash_test.go ├── GenHashFile.go ├── HashCoder.go ├── LICENSE ├── Md5Coder.go ├── README.md ├── SHA1Coder.go ├── SHA256Coder.go ├── SHA512Coder.go ├── go.mod └── main.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavenli/FileHashGen/HEAD/.gitignore -------------------------------------------------------------------------------- /BaseHashCoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavenli/FileHashGen/HEAD/BaseHashCoder.go -------------------------------------------------------------------------------- /FileHash_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavenli/FileHashGen/HEAD/FileHash_test.go -------------------------------------------------------------------------------- /GenHashFile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavenli/FileHashGen/HEAD/GenHashFile.go -------------------------------------------------------------------------------- /HashCoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavenli/FileHashGen/HEAD/HashCoder.go -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavenli/FileHashGen/HEAD/LICENSE -------------------------------------------------------------------------------- /Md5Coder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavenli/FileHashGen/HEAD/Md5Coder.go -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavenli/FileHashGen/HEAD/README.md -------------------------------------------------------------------------------- /SHA1Coder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavenli/FileHashGen/HEAD/SHA1Coder.go -------------------------------------------------------------------------------- /SHA256Coder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavenli/FileHashGen/HEAD/SHA256Coder.go -------------------------------------------------------------------------------- /SHA512Coder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavenli/FileHashGen/HEAD/SHA512Coder.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module FileHashGen 2 | 3 | go 1.18 4 | -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavenli/FileHashGen/HEAD/main.go --------------------------------------------------------------------------------