You are here

public function XMLSecurityDSig::appendSignature in SAML SP 2.0 Single Sign On (SSO) - SAML Service Provider 8

Parameters

DOMNode $parentNode:

bool $insertBefore:

Return value

DOMNode

1 call to XMLSecurityDSig::appendSignature()
XMLSecurityDSig::sign in src/XMLSecurityKey.php

File

src/XMLSecurityKey.php, line 1568

Class

XMLSecurityDSig

Namespace

Drupal\miniorange_saml

Code

public function appendSignature($parentNode, $insertBefore = false) {
  $beforeNode = $insertBefore ? $parentNode->firstChild : null;
  return $this
    ->insertSignature($parentNode, $beforeNode);
}