File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed
lib/internal/Magento/Framework/Encryption Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -228,6 +228,8 @@ public function validateHashVersion($hash, $validateCount = false)
228
228
}
229
229
230
230
/**
231
+ * Explode password hash
232
+ *
231
233
* @param string $hash
232
234
* @return array
233
235
*/
@@ -243,6 +245,8 @@ private function explodePasswordHash($hash)
243
245
}
244
246
245
247
/**
248
+ * Returns password hash
249
+ *
246
250
* @return string
247
251
*/
248
252
private function getPasswordHash ()
@@ -251,6 +255,8 @@ private function getPasswordHash()
251
255
}
252
256
253
257
/**
258
+ * Returns password salt
259
+ *
254
260
* @return string
255
261
*/
256
262
private function getPasswordSalt ()
@@ -259,11 +265,15 @@ private function getPasswordSalt()
259
265
}
260
266
261
267
/**
268
+ * Returns password version
269
+ *
262
270
* @return array
263
271
*/
264
272
private function getPasswordVersion ()
265
273
{
266
- return array_map ('intval ' , explode (
274
+ return array_map (
275
+ 'intval ' ,
276
+ explode (
267
277
self ::DELIMITER ,
268
278
(string )$ this ->passwordHashMap [self ::PASSWORD_VERSION ]
269
279
)
You can’t perform that action at this time.
0 commit comments