for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace SimpleSAML\SAML2\XML\md;
use SimpleSAML\SAML2\Constants;
use SimpleSAML\XMLSecurity\XML\xenc\AbstractEncryptionMethod;
/**
* A class implementing the md:EncryptionMethod element.
*
* @package simplesamlphp/saml2
*/
class EncryptionMethod extends AbstractEncryptionMethod
{
/** @var string */
public const NS = Constants::NS_MD;
public const NS_PREFIX = 'md';
}