├── .gitignore ├── LICENSE ├── README.md ├── authnrequest.go ├── authnrequestInterface.go ├── certificate.go └── response.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbaird/gosaml/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbaird/gosaml/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbaird/gosaml/HEAD/README.md -------------------------------------------------------------------------------- /authnrequest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbaird/gosaml/HEAD/authnrequest.go -------------------------------------------------------------------------------- /authnrequestInterface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbaird/gosaml/HEAD/authnrequestInterface.go -------------------------------------------------------------------------------- /certificate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbaird/gosaml/HEAD/certificate.go -------------------------------------------------------------------------------- /response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbaird/gosaml/HEAD/response.go --------------------------------------------------------------------------------