-
-
Notifications
You must be signed in to change notification settings - Fork 218
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
still a WIP to see if I can continue to attack circular architecture
- Loading branch information
Showing
15 changed files
with
240 additions
and
261 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
export interface ESamlHttpRequest { | ||
query?: any; | ||
body?: any; | ||
octetString?: string; | ||
} | ||
|
||
export interface BindingContext { | ||
context: string; | ||
id: string; | ||
} | ||
|
||
export interface PostBindingContext extends BindingContext { | ||
relayState?: string; | ||
entityEndpoint: string; | ||
type: 'SAMLRequest' | 'SAMLResponse'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,8 @@ | ||
export * from './api'; | ||
export { default as identityProvider } from './entity-idp'; | ||
export { default as serviceProvider } from './entity-sp'; | ||
export * as extractor from './extractor'; | ||
export { default as libsaml } from './libsaml'; | ||
export { default as metadataIdp } from './metadata-idp'; | ||
export { default as metadataSp } from './metadata-sp'; | ||
export * from './types'; | ||
export * from './entity-idp'; | ||
export * from './entity-sp'; | ||
export * from './error'; | ||
export * from './libsaml'; | ||
export * from './metadata-idp'; | ||
export * from './metadata-sp'; | ||
export * from './urn'; | ||
export * as utility from './utility'; |
Oops, something went wrong.