Deon George f19c5594d5
All checks were successful
Create Docker Image / Test Application (x86_64) (push) Successful in 32s
Create Docker Image / Build Docker Image (x86_64) (push) Successful in 1m23s
Create Docker Image / Build Docker Image (arm64) (push) Successful in 3m38s
Create Docker Image / Final Docker Image Manifest (push) Successful in 10s
Foundation for Check Password and password functions - only Clear is currently implemented
2025-01-17 17:00:36 +11:00

14 lines
277 B
PHP

<?php
namespace App\Classes\LDAP\Attribute\Password;
abstract class Base
{
abstract public function compare(string $source,string $compare): bool;
abstract public function encode(string $password): string;
public static function id(): string
{
return static::key;
}
}