You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
During base64 encoding of exception_trace you are actually encoding SHA-1 hash of serialized data, not serialized data. The critical line is: logs_http/logs_http.module:60
Crypt::hashBase64 is encoding SHA1 hash of given input:
public static function hashBase64($data) {
$hash = base64_encode(hash('sha256', $data, TRUE));
// Modify the hash so it's safe to use in URLs.
return str_replace(['+', '/', '='], ['-', '_', ''], $hash);
}
So there is no way to get data back.
The text was updated successfully, but these errors were encountered:
During base64 encoding of exception_trace you are actually encoding SHA-1 hash of serialized data, not serialized data. The critical line is: logs_http/logs_http.module:60
Where code is doing:
Crypt::hashBase64 is encoding SHA1 hash of given input:
So there is no way to get data back.
The text was updated successfully, but these errors were encountered: