djoos / EscapeWSSEAuthenticationBundle

Symfony bundle to implement WSSE authentication
http://symfony.com/doc/current/cookbook/security/custom_authentication_provider.html
137 stars 59 forks source link

Useless check for hash_equals method removed #86

Closed Th3Mouk closed 7 years ago

Th3Mouk commented 7 years ago

Subject

Remove a useless check for string comparison.

Causes

Since symfony-polyfill is required the method is always available.

This bundle required symfony/security library which require himself symfony/polyfill-php56 that ensure this method is always available whatever the version of PHP running.

djoos commented 7 years ago

Thanks for your contribution @Th3Mouk!