Files
breadcrumb-the-shire/lib/Service/Auth/AuthCryptoGateway.php
2026-02-23 12:58:19 +01:00

24 lines
423 B
PHP

<?php
namespace MintyPHP\Service\Auth;
use MintyPHP\Support\Crypto;
class AuthCryptoGateway
{
public function isConfigured(): bool
{
return Crypto::isConfigured();
}
public function encryptString(string $value): string
{
return Crypto::encryptString($value);
}
public function decryptString(string $value): string
{
return Crypto::decryptString($value);
}
}