File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -80,6 +80,8 @@ export interface ServiceProviderSettings {
80
80
signatureConfig ?: SignatureConfig ;
81
81
loginRequestTemplate ?: SAMLDocumentTemplate ;
82
82
logoutRequestTemplate ?: SAMLDocumentTemplate ;
83
+ signingCert ?: string | Buffer ;
84
+ encryptCert ?: string | Buffer ;
83
85
}
84
86
85
87
export interface IdentityProviderSettings {
@@ -100,8 +102,8 @@ export interface IdentityProviderSettings {
100
102
entityID ?: string ;
101
103
privateKey ?: string | Buffer ;
102
104
privateKeyPass ?: string ;
103
- signingCert ?: string ;
104
- encrpytCert ?: string ; /** todo */
105
+ signingCert ?: string | Buffer ;
106
+ encryptCert ?: string | Buffer ; /** todo */
105
107
nameIDFormat ?: string [ ] ;
106
108
singleSignOnService ?: Array < { [ key : string ] : string } > ;
107
109
singleLogoutService ?: Array < { [ key : string ] : string } > ;
You can’t perform that action at this time.
0 commit comments