for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace SimpleSAML\XMLSecurity\XML\dsig11;
use DOMElement;
use SimpleSAML\Assert\Assert;
use SimpleSAML\XML\Exception\SchemaViolationException;
/**
* Abstract class representing a dsig11:ECValidationDataType
*
* @package simplesaml/xml-security
*/
abstract class AbstractECValidationDataType extends AbstractDsig11Element
{
* Initialize a ECValidationDataType element.
* @param \SimpleSAML\XMLSecurity\XML\dsig11\Seed $seed
* @param string $hashAlgorithm
public function __construct(
protected Seed $seed,
protected string $hashAlgorithm,
) {
Assert::validURI($hashAlgorithm, SchemaViolationException::class);
}
* Collect the value of the seed-property
* @return \SimpleSAML\XMLSecurity\XML\dsig11\Seed
public function getSeed(): Seed
return $this->seed;
* Collect the value of the hashAlgorithm-property
* @return string
public function getHashAlgorithm(): string
return $this->hashAlgorithm;
* Convert this ECValidationDataType element to XML.
* @param \DOMElement|null $parent The element we should append this ECValidationDataType element to.
* @return \DOMElement
public function toXML(?DOMElement $parent = null): DOMElement
$e = $this->instantiateParentElement($parent);
$e->setAttribute('hashAlgorithm', $this->getHashAlgorithm());
$this->getSeed()->toXML($e);
return $e;