Timeline for PHP Variable Encryption
Current License: CC BY-SA 3.0
8 events
| when toggle format | what | by | license | comment | |
|---|---|---|---|---|---|
| Aug 10, 2014 at 23:03 | vote | accept | NCoder | ||
| Jun 5, 2014 at 15:47 | review | Close votes | |||
| Jun 9, 2014 at 0:04 | |||||
| Jun 5, 2014 at 15:32 | answer | added | NCoder | timeline score: 1 | |
| Jun 5, 2014 at 15:30 | comment | added | edigu |
I strongly recommend using built-in password_hash() method (PHP >= 5.5) instead of hash() us.php.net/manual/en/function.password-hash.php
|
|
| Jun 5, 2014 at 15:25 | comment | added | NCoder | Perfect Marc B, that did the trick! | |
| Jun 5, 2014 at 15:24 | comment | added | Marc B |
sha1 hash can either be raw binary, or a base64-encoded string to begin with. e.g. $raw = sha1($string, true) v.s. $encoded = sha1($string). you'd better try both variants, because you may be double-base64-encoding.
|
|
| Jun 5, 2014 at 15:24 | history | edited | Cᴏʀʏ | CC BY-SA 3.0 |
deleted 22 characters in body
|
| Jun 5, 2014 at 15:21 | history | asked | NCoder | CC BY-SA 3.0 |