for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace MadWizard\WebAuthn\Attestation\TrustPath;
use MadWizard\WebAuthn\Format\ByteBuffer;
final class EcdaaKeyTrustPath implements TrustPathInterface
{
/**
* @var ByteBuffer
*/
private $ecdaaKeyId;
public function __construct(ByteBuffer $ecdaaKeyId)
$this->ecdaaKeyId = $ecdaaKeyId;
}
public function getEcdaaKeyId(): ByteBuffer
return $this->ecdaaKeyId;