encrypter->encryptString($plaintext); } public function decrypt(string $ciphertext): string { return $this->encrypter->decryptString($ciphertext); } public function algorithm(): string { return 'AES-256-GCM'; } }