You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/signed-xml.ts
+38-2Lines changed: 38 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -59,18 +59,23 @@ export class SignedXml {
59
59
/**
60
60
* Specifies the data to be signed within an XML document. See {@link Reference}
61
61
*/
62
-
privatereferences: Reference[]=[];
63
62
privateid=0;
64
63
privatesignedXml="";
65
64
privatesignatureXml="";
66
65
privatesignatureNode: Node|null=null;
67
66
privatesignatureValue="";
68
67
privateoriginalXmlWithIds="";
68
+
privatekeyInfo: Node|null=null;
69
+
70
+
/**
71
+
* Contains the references that were signed. See {@link Reference}
72
+
*/
73
+
references: Reference[]=[];
74
+
69
75
/**
70
76
* Contains validation errors (if any) after {@link checkSignature} method is called
71
77
*/
72
78
validationErrors: string[]=[];
73
-
privatekeyInfo: Node|null=null;
74
79
75
80
/**
76
81
* To add a new transformation algorithm create a new class that implements the {@link TransformationAlgorithm} interface, and register it here. More info: {@link https://github.com/node-saml/xml-crypto#customizing-algorithms|Customizing Algorithms}
0 commit comments