@@ -14,6 +14,7 @@ export interface SamlSignedOpts {
1414 audiences ?: string | string [ ] | undefined ;
1515 cert : Buffer ;
1616 digestAlgorithm ?: string | undefined ;
17+ disallowEncryptionWithInsecureAlgorithm ?: boolean | undefined ;
1718 encryptionAlgorithm ?: string | undefined ;
1819 encryptionCert ?: Buffer | undefined ;
1920 encryptionPublicKey ?: Buffer | undefined ;
@@ -31,10 +32,12 @@ export interface SamlSignedOpts {
3132 recipient ?: string | undefined ;
3233 sessionIndex ?: string | undefined ;
3334 signatureAlgorithm ?: string | undefined ;
35+ signatureIdAttribute ?: string | undefined ;
3436 signatureNamespacePrefix ?: string | undefined ;
3537 subjectConfirmationMethod ?: string | undefined ;
3638 typedAttributes ?: boolean | undefined ;
3739 uid ?: string | undefined ;
40+ warnOnInsecureEncryptionAlgorithm ?: boolean | undefined ;
3841 xpathToNodeBeforeSignature ?: string | undefined ;
3942}
4043
@@ -44,6 +47,7 @@ export interface SamlUnassignedOpts {
4447 audiences ?: string | string [ ] | undefined ;
4548 cert ?: Buffer | undefined ;
4649 digestAlgorithm ?: string | undefined ;
50+ disallowEncryptionWithInsecureAlgorithm ?: boolean | undefined ;
4751 encryptionAlgorithm ?: string | undefined ;
4852 encryptionCert ?: Buffer | undefined ;
4953 encryptionPublicKey ?: Buffer | undefined ;
@@ -65,6 +69,7 @@ export interface SamlUnassignedOpts {
6569 subjectConfirmationMethod ?: string | undefined ;
6670 typedAttributes ?: boolean | undefined ;
6771 uid ?: string | undefined ;
72+ warnOnInsecureEncryptionAlgorithm ?: boolean | undefined ;
6873 xpathToNodeBeforeSignature ?: string | undefined ;
6974}
7075export namespace Saml11 {
0 commit comments