Add Crypt based password functions

This commit is contained in:
2025-01-18 21:47:49 +11:00
parent d3d7881e3b
commit 2445cac6a6
14 changed files with 180 additions and 938 deletions

View File

@@ -10,7 +10,7 @@ abstract class Base
public static function id(): string
{
return static::key.(static::subkey ? ':'.static::subkey : '');
return static::subkey ? strtoupper(static::subkey) : static::key;
}
/**