├── .github └── FUNDING.yml ├── .gitignore ├── .travis.yml ├── Dockerfile ├── LICENSE ├── README.md ├── argon2 ├── argon2.go ├── argon2_test.go └── doc.go ├── bcrypt ├── bcrypt.go ├── bcrypt_test.go └── doc.go ├── doc.go ├── docker-compose.yml ├── example_test.go ├── go.mod ├── go.sum ├── md5 ├── doc.go ├── md5.go └── md5_test.go ├── pbkdf2 ├── doc.go ├── pbkdf2.go └── pbkdf2_test.go ├── rnd.go ├── sha1 ├── doc.go ├── sha1.go └── sha1_test.go ├── unchained.go └── unchained_test.go /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevicenzi/unchained/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevicenzi/unchained/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevicenzi/unchained/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevicenzi/unchained/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevicenzi/unchained/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevicenzi/unchained/HEAD/README.md -------------------------------------------------------------------------------- /argon2/argon2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevicenzi/unchained/HEAD/argon2/argon2.go -------------------------------------------------------------------------------- /argon2/argon2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevicenzi/unchained/HEAD/argon2/argon2_test.go -------------------------------------------------------------------------------- /argon2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevicenzi/unchained/HEAD/argon2/doc.go -------------------------------------------------------------------------------- /bcrypt/bcrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevicenzi/unchained/HEAD/bcrypt/bcrypt.go -------------------------------------------------------------------------------- /bcrypt/bcrypt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevicenzi/unchained/HEAD/bcrypt/bcrypt_test.go -------------------------------------------------------------------------------- /bcrypt/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevicenzi/unchained/HEAD/bcrypt/doc.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevicenzi/unchained/HEAD/doc.go -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevicenzi/unchained/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevicenzi/unchained/HEAD/example_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevicenzi/unchained/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevicenzi/unchained/HEAD/go.sum -------------------------------------------------------------------------------- /md5/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevicenzi/unchained/HEAD/md5/doc.go -------------------------------------------------------------------------------- /md5/md5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevicenzi/unchained/HEAD/md5/md5.go -------------------------------------------------------------------------------- /md5/md5_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevicenzi/unchained/HEAD/md5/md5_test.go -------------------------------------------------------------------------------- /pbkdf2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevicenzi/unchained/HEAD/pbkdf2/doc.go -------------------------------------------------------------------------------- /pbkdf2/pbkdf2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevicenzi/unchained/HEAD/pbkdf2/pbkdf2.go -------------------------------------------------------------------------------- /pbkdf2/pbkdf2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevicenzi/unchained/HEAD/pbkdf2/pbkdf2_test.go -------------------------------------------------------------------------------- /rnd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevicenzi/unchained/HEAD/rnd.go -------------------------------------------------------------------------------- /sha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevicenzi/unchained/HEAD/sha1/doc.go -------------------------------------------------------------------------------- /sha1/sha1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevicenzi/unchained/HEAD/sha1/sha1.go -------------------------------------------------------------------------------- /sha1/sha1_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevicenzi/unchained/HEAD/sha1/sha1_test.go -------------------------------------------------------------------------------- /unchained.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevicenzi/unchained/HEAD/unchained.go -------------------------------------------------------------------------------- /unchained_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrevicenzi/unchained/HEAD/unchained_test.go --------------------------------------------------------------------------------