Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/poudel/samlutils
SAML utils
https://github.com/poudel/samlutils
auth0 okta-saml onelo pars saml-metadata saml2
Last synced: 29 days ago
JSON representation
SAML utils
- Host: GitHub
- URL: https://github.com/poudel/samlutils
- Owner: poudel
- Created: 2024-02-03T19:18:08.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-02-03T19:34:48.000Z (12 months ago)
- Last Synced: 2024-12-25T07:56:38.968Z (about 1 month ago)
- Topics: auth0, okta-saml, onelo, pars, saml-metadata, saml2
- Language: Go
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# saml utils
## IDP metadata parsing
```go
package mainimport (
"fmt"
"github.com/poudel/samlutils"
)func main() {
m := samlutils.ParseIdpMetadata(samlutils.EXAMPLE_OKTA_METADATA)
fmt.Println("Valid:", m.IsValid())
fmt.Println("Metadata:", m)
}
```