├── .github └── workflows │ └── CI.yml ├── .travis.yml ├── AUTHORS.md ├── LICENSE ├── README.rst ├── apr1_crypt ├── apr1_crypt.go └── apr1_crypt_test.go ├── common ├── base64.go ├── doc.go ├── salt.go └── salt_test.go ├── crypt.go ├── crypt_test.go ├── go.mod ├── go.sum ├── internal └── utils.go ├── md5_crypt ├── md5_crypt.go └── md5_crypt_test.go ├── sha256_crypt ├── sha256_crypt.go └── sha256_crypt_test.go └── sha512_crypt ├── sha512_crypt.go └── sha512_crypt_test.go /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/crypt/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/crypt/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/crypt/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/crypt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/crypt/HEAD/README.rst -------------------------------------------------------------------------------- /apr1_crypt/apr1_crypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/crypt/HEAD/apr1_crypt/apr1_crypt.go -------------------------------------------------------------------------------- /apr1_crypt/apr1_crypt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/crypt/HEAD/apr1_crypt/apr1_crypt_test.go -------------------------------------------------------------------------------- /common/base64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/crypt/HEAD/common/base64.go -------------------------------------------------------------------------------- /common/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/crypt/HEAD/common/doc.go -------------------------------------------------------------------------------- /common/salt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/crypt/HEAD/common/salt.go -------------------------------------------------------------------------------- /common/salt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/crypt/HEAD/common/salt_test.go -------------------------------------------------------------------------------- /crypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/crypt/HEAD/crypt.go -------------------------------------------------------------------------------- /crypt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/crypt/HEAD/crypt_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/crypt/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/crypt/HEAD/go.sum -------------------------------------------------------------------------------- /internal/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/crypt/HEAD/internal/utils.go -------------------------------------------------------------------------------- /md5_crypt/md5_crypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/crypt/HEAD/md5_crypt/md5_crypt.go -------------------------------------------------------------------------------- /md5_crypt/md5_crypt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/crypt/HEAD/md5_crypt/md5_crypt_test.go -------------------------------------------------------------------------------- /sha256_crypt/sha256_crypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/crypt/HEAD/sha256_crypt/sha256_crypt.go -------------------------------------------------------------------------------- /sha256_crypt/sha256_crypt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/crypt/HEAD/sha256_crypt/sha256_crypt_test.go -------------------------------------------------------------------------------- /sha512_crypt/sha512_crypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/crypt/HEAD/sha512_crypt/sha512_crypt.go -------------------------------------------------------------------------------- /sha512_crypt/sha512_crypt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GehirnInc/crypt/HEAD/sha512_crypt/sha512_crypt_test.go --------------------------------------------------------------------------------