Laragear/WebAuthn

View on GitHub
src/Attestation/Validator/Pipes/CheckRelyingPartyIdContained.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Laragear\WebAuthn\Attestation\Validator\Pipes;

use Laragear\WebAuthn\SharedPipes\CheckRelyingPartyIdContained as BaseCheckRelyingPartyIdSame;

/**
 * 9. Verify that the value of C.origin matches the Relying Party's origin.
 *
 * @see https://www.w3.org/TR/webauthn-2/#sctn-registering-a-new-credential
 *
 * @internal
 */
class CheckRelyingPartyIdContained extends BaseCheckRelyingPartyIdSame
{
    //
}