From 4403caeb4142bc19e71afc15ee85fcd593f3db63 Mon Sep 17 00:00:00 2001 From: Brady McDonough Date: Sun, 11 Feb 2024 14:39:42 -0700 Subject: [PATCH] Completed HashInterface --- src/HashInterface.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/HashInterface.php b/src/HashInterface.php index 66a79d9..f2cf14f 100644 --- a/src/HashInterface.php +++ b/src/HashInterface.php @@ -7,6 +7,7 @@ interface HashInterface public function hash(string $key, string $val): string; public function hashNumeric(string $key, int $val): string; public function hashType(): string; + public static function keygen(): string; } ?>