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;
use SimpleSAML\XML\Type\StringValue;
use SimpleSAML\XML\TypedTextContentTrait;
/**
* Class representing a xenc11:DerivedKeyName element.
*
* @package simplesamlphp/xml-security
*/
final class DerivedKeyName extends AbstractXenc11Element
{
use TypedTextContentTrait;
/** @var string */
public const TEXTCONTENT_TYPE = StringValue::class;
}