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\xenc11;
/**
* Class representing <xenc11:AbstractMGFType>.
*
* @package simplesamlphp/xml-security
*/
abstract class AbstractMGFType extends AbstractAlgorithmIdentifierType
{
* MGFType constructor.
* @param string $Algorithm
public function __construct(
string $Algorithm,
) {
parent::__construct($Algorithm, null);
}