__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
declare(strict_types=1);
namespace SpomkyLabs\Pki\X501\MatchingRule;
/**
* Base class for attribute matching rules.
*
* @see https://tools.ietf.org/html/rfc4517#section-4
*/
abstract class MatchingRule
{
/**
* Compare attribute value to assertion.
*
* @param string $assertion Value to assert
* @param string $value Attribute value
*
* @return null|bool True if value matches. Null shall be returned if match
* evaluates to Undefined.
*/
abstract public function compare(string $assertion, string $value): ?bool;
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| BinaryMatch.php | File | 370 B | 0664 |
|
| CaseExactMatch.php | File | 618 B | 0664 |
|
| CaseIgnoreMatch.php | File | 666 B | 0664 |
|
| MatchingRule.php | File | 576 B | 0664 |
|
| StringPrepMatchingRule.php | File | 615 B | 0664 |
|