├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── const.go ├── go.mod ├── hasher.go ├── mode.go ├── opts.go ├── testdata └── testdata.go ├── wots.go └── wots_test.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lentus/wotsp/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - master -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lentus/wotsp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lentus/wotsp/HEAD/README.md -------------------------------------------------------------------------------- /const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lentus/wotsp/HEAD/const.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/lentus/wotsp 2 | 3 | go 1.13 4 | -------------------------------------------------------------------------------- /hasher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lentus/wotsp/HEAD/hasher.go -------------------------------------------------------------------------------- /mode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lentus/wotsp/HEAD/mode.go -------------------------------------------------------------------------------- /opts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lentus/wotsp/HEAD/opts.go -------------------------------------------------------------------------------- /testdata/testdata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lentus/wotsp/HEAD/testdata/testdata.go -------------------------------------------------------------------------------- /wots.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lentus/wotsp/HEAD/wots.go -------------------------------------------------------------------------------- /wots_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lentus/wotsp/HEAD/wots_test.go --------------------------------------------------------------------------------