Skip to content
This repository was archived by the owner on Jul 3, 2024. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion xsec/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,8 @@ utilsinclude_HEADERS = \
utils/XSECXPathNodeList.hpp \
utils/XSECSafeBufferFormatter.hpp \
utils/XSECBinTXFMInputStream.hpp \
utils/XSECPlatformUtils.hpp
utils/XSECPlatformUtils.hpp \
utils/XSECDOMUtils.hpp

xencinclude_HEADERS = \
xenc/XENCEncryptionMethod.hpp \
Expand Down
4 changes: 2 additions & 2 deletions xsec/dsig/DSIGReference.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class XSEC_EXPORT DSIGReference {
//@{

/**
* \brief Contructor for use with existing XML signatures or templates.
* \brief Constructor for use with existing XML signatures or templates.
*
* <p>Create a DSIGReference object based on an already existing
* DSIG Reference XML node. It is assumed that the underlying
Expand All @@ -94,7 +94,7 @@ class XSEC_EXPORT DSIGReference {
DSIGReference(const XSECEnv * env, XERCES_CPP_NAMESPACE_QUALIFIER DOMNode *dom);

/**
* \brief Contructor for use when creating new Reference structures.
* \brief Constructor for use when creating new Reference structures.
*
* <p>Create a DSIGReference object that can later be used to create
* a new Reference structure in the DOM document.</p>
Expand Down
2 changes: 1 addition & 1 deletion xsec/dsig/DSIGSignature.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class XSEC_EXPORT DSIGSignature {
//@{

/**
* \brief Contructor for use with existing XML signatures or templates.
* \brief Constructor for use with existing XML signatures or templates.
*
* <p>Create a DSIGSignature object based on an already existing
* DSIG Signature XML node. It is assumed that the underlying
Expand Down
4 changes: 2 additions & 2 deletions xsec/dsig/DSIGTransform.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class XSEC_EXPORT DSIGTransform {
//@{

/**
* \brief Contructor used for existing XML signatures.
* \brief Constructor used for existing XML signatures.
*
* The Node structure already exists, so this type of Transform constructor
* will generally read the nodes in.
Expand All @@ -87,7 +87,7 @@ class XSEC_EXPORT DSIGTransform {
mp_env(env) {};

/**
* \brief Contructor used for new signatures.
* \brief Constructor used for new signatures.
*
* The Node structure will have to be created by the implementation class
*
Expand Down
4 changes: 2 additions & 2 deletions xsec/dsig/DSIGTransformBase64.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class XSEC_EXPORT DSIGTransformBase64 : public DSIGTransform {
//@{

/**
* \brief Contructor used for existing XML signatures.
* \brief Constructor used for existing XML signatures.
*
* The Node structure already exists, so read the nodes in.
*
Expand All @@ -69,7 +69,7 @@ class XSEC_EXPORT DSIGTransformBase64 : public DSIGTransform {
DSIGTransformBase64(const XSECEnv * env, XERCES_CPP_NAMESPACE_QUALIFIER DOMNode * node);

/**
* \brief Contructor used for new signatures.
* \brief Constructor used for new signatures.
*
* The Node structure will have to be created.
*
Expand Down
6 changes: 3 additions & 3 deletions xsec/dsig/DSIGTransformC14n.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class XSEC_EXPORT DSIGTransformC14n : public DSIGTransform {
//@{

/**
* \brief Contructor used for existing XML signatures.
* \brief Constructor used for existing XML signatures.
*
* The Node structure already exists, so read the nodes in.
*
Expand All @@ -64,7 +64,7 @@ class XSEC_EXPORT DSIGTransformC14n : public DSIGTransform {
DSIGTransformC14n(const XSECEnv* env, XERCES_CPP_NAMESPACE_QUALIFIER DOMNode* node);

/**
* \brief Contructor used for new signatures.
* \brief Constructor used for new signatures.
*
* The Node structure will have to be created.
*
Expand Down Expand Up @@ -97,7 +97,7 @@ class XSEC_EXPORT DSIGTransformC14n : public DSIGTransform {
* \brief Create the Canonicalising transformer element.
*
* Implemented by each Transform class and used by the DSIGSignature
* when consructing a TXFM List that includes canonicalisation (nearly always)
* when constructing a TXFM List that includes canonicalisation (nearly always)
*/

virtual void appendTransformer(TXFMChain* input);
Expand Down
4 changes: 2 additions & 2 deletions xsec/dsig/DSIGTransformEnvelope.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class XSEC_EXPORT DSIGTransformEnvelope : public DSIGTransform {
//@{

/**
* \brief Contructor used for existing XML signatures.
* \brief Constructor used for existing XML signatures.
*
* The Node structure already exists, so read the nodes in.
*
Expand All @@ -67,7 +67,7 @@ class XSEC_EXPORT DSIGTransformEnvelope : public DSIGTransform {
DSIGTransformEnvelope(const XSECEnv * env, XERCES_CPP_NAMESPACE_QUALIFIER DOMNode * node);

/**
* \brief Contructor used for new signatures.
* \brief Constructor used for new signatures.
*
* The Node structure will have to be created.
*
Expand Down
4 changes: 2 additions & 2 deletions xsec/dsig/DSIGTransformXPath.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class XSEC_EXPORT DSIGTransformXPath : public DSIGTransform {
//@{

/**
* \brief Contructor used for existing XML signatures.
* \brief Constructor used for existing XML signatures.
*
* The Node structure already exists, so read the nodes in.
*
Expand All @@ -71,7 +71,7 @@ class XSEC_EXPORT DSIGTransformXPath : public DSIGTransform {
DSIGTransformXPath(const XSECEnv * env, XERCES_CPP_NAMESPACE_QUALIFIER DOMNode * node);

/**
* \brief Contructor used for new signatures.
* \brief Constructor used for new signatures.
*
* The Node structure will have to be created.
*
Expand Down
4 changes: 2 additions & 2 deletions xsec/dsig/DSIGTransformXPathFilter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class XSEC_EXPORT DSIGTransformXPathFilter : public DSIGTransform {
//@{

/**
* \brief Contructor used for existing XML signatures.
* \brief Constructor used for existing XML signatures.
*
* The Node structure already exists, so read the nodes in.
*
Expand All @@ -80,7 +80,7 @@ class XSEC_EXPORT DSIGTransformXPathFilter : public DSIGTransform {
DSIGTransformXPathFilter(const XSECEnv* env, XERCES_CPP_NAMESPACE_QUALIFIER DOMNode* node);

/**
* \brief Contructor used for new signatures.
* \brief Constructor used for new signatures.
*
* The Node structure will have to be created.
*
Expand Down
4 changes: 2 additions & 2 deletions xsec/dsig/DSIGTransformXSL.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class XSEC_EXPORT DSIGTransformXSL : public DSIGTransform {
//@{

/**
* \brief Contructor used for existing XML signatures.
* \brief Constructor used for existing XML signatures.
*
* The Node structure already exists, so read the nodes in.
*
Expand All @@ -70,7 +70,7 @@ class XSEC_EXPORT DSIGTransformXSL : public DSIGTransform {
DSIGTransformXSL(const XSECEnv * env, XERCES_CPP_NAMESPACE_QUALIFIER DOMNode * node);

/**
* \brief Contructor used for new signatures.
* \brief Constructor used for new signatures.
*
* The Node structure will have to be created.
*
Expand Down
2 changes: 1 addition & 1 deletion xsec/enc/XSECCryptoException.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ class XSEC_EXPORT XSECCryptoException {

public:

/** @name Contructors and Destructors */
/** @name Constructors and Destructors */
//@{

/**
Expand Down
2 changes: 1 addition & 1 deletion xsec/framework/XSECEnv.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class XSEC_EXPORT XSECEnv {
//@{

/**
* \brief Contructor.
* \brief Constructor.
*
*/

Expand Down