From 4e6cd56c39c3d15113413b264e18aa60a1034b34 Mon Sep 17 00:00:00 2001 From: printempw Date: Sat, 5 Nov 2016 20:10:46 +0800 Subject: [PATCH] fix class names of ciphers --- app/Services/Cipher/SALTED2SHA256.php | 2 +- app/Services/Cipher/SALTED2SHA512.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Services/Cipher/SALTED2SHA256.php b/app/Services/Cipher/SALTED2SHA256.php index f8c266f6..f0ffd456 100644 --- a/app/Services/Cipher/SALTED2SHA256.php +++ b/app/Services/Cipher/SALTED2SHA256.php @@ -2,7 +2,7 @@ namespace App\Services\Cipher; -class SHA256 implements EncryptInterface +class SALTED2SHA256 implements EncryptInterface { /** * Default SHA256 encryption method for Authme diff --git a/app/Services/Cipher/SALTED2SHA512.php b/app/Services/Cipher/SALTED2SHA512.php index c047aa31..6d737770 100644 --- a/app/Services/Cipher/SALTED2SHA512.php +++ b/app/Services/Cipher/SALTED2SHA512.php @@ -2,7 +2,7 @@ namespace App\Services\Cipher; -class SHA256 implements EncryptInterface +class SALTED2SHA512 implements EncryptInterface { /** * Default SHA256 encryption method for Authme