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