public function needsRehash($hashedValue, array $options = []) | Laravel: Implementing a CRYPT_STD_DES Hasher
…on ; 6 use Illuminate \ Contracts \ Hashing \ Hasher as HasherContract ; 7 use Illuminate \ Support \ Str ; 8 9 class StandardDesHasher implements HasherContract 10 { 11 12 const FAILED_HASH = ' *0 ' ; 13 14 /** 15 * Hash the given value. 16 * 17...