Skip to content
This repository has been archived by the owner on May 31, 2024. It is now read-only.

Commit

Permalink
[Security/Core] Don't use ParagonIE_Sodium_Compat
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-grekas committed Jun 25, 2019
1 parent 2b79d1b commit e527570
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions Core/Encoder/Argon2iPasswordEncoder.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,6 @@ public static function isSupported()
return true;
}

if (class_exists('ParagonIE_Sodium_Compat') && method_exists('ParagonIE_Sodium_Compat', 'crypto_pwhash_is_available')) {
return \ParagonIE_Sodium_Compat::crypto_pwhash_is_available();
}

return \function_exists('sodium_crypto_pwhash_str') || \extension_loaded('libsodium');
}

Expand Down

0 comments on commit e527570

Please sign in to comment.