├── .gitignore ├── .luacheckrc ├── LICENSE ├── NEWS ├── README.md ├── aws └── v4.lua ├── laws-scm-0.rockspec └── spec └── v4_spec.lua /.gitignore: -------------------------------------------------------------------------------- 1 | *.rock 2 | spec/aws-sig-v4-test-suite/ 3 | -------------------------------------------------------------------------------- /.luacheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-callahan/laws/HEAD/.luacheckrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-callahan/laws/HEAD/LICENSE -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | 0.1 - 2018-08-24 2 | 3 | - Tag of code after long-dormant state 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-callahan/laws/HEAD/README.md -------------------------------------------------------------------------------- /aws/v4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-callahan/laws/HEAD/aws/v4.lua -------------------------------------------------------------------------------- /laws-scm-0.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-callahan/laws/HEAD/laws-scm-0.rockspec -------------------------------------------------------------------------------- /spec/v4_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-callahan/laws/HEAD/spec/v4_spec.lua --------------------------------------------------------------------------------