Skip to content

[ENHANCEMENT]: wssecurity - getCertFromKeyInfo not possible #461

Open
@shunkica

Description

@shunkica

Is your feature request related to a problem? Please describe...

In wssecurity, the certificate is not contained within KeyInfo, instead KeyInfo only contains a reference to the BinarySecurityToken element, which contains the certificate.

Therefore the current getCertFromKeyInfo function can not be used to retrieve the certificate when wssecurity is used.

The BinarySecurityToken is also not inside the Signature element, so traversing to parents from the KeyInfo element is not possible.

Describe teh solution you'd like...

getCertFromKeyInfo currently only gets the KeyInfo node, but it should also be passed the Security element when wsssecurity is used. Alternatively, the root xml node should also be passed to getCertFromKeyInfo

const key = this.getCertFromKeyInfo(this.keyInfo) || this.publicCert || this.privateKey;

Most simple solution would be:
const key = this.getCertFromKeyInfo(this.keyInfo, doc) || this.publicCert || this.privateKey;

Describe the alternatives you've considered...

Parsing the xml outside the library and injecting the BinarySecurityToken into the SignedXml publicCert property

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions