2

This is the hashed output "bWNgAQW2FLc" I want to possibly hash a specific string into that. Is there any method or coding that can possibly do the work?

Thank you very much for the replies!

PS: I do not know what hash type is that in the first place

6
  • 1
    Do you know what the original string was? Commented Jul 15, 2018 at 16:38
  • @user3783243 its developered1 Commented Jul 15, 2018 at 16:54
  • No hashing functions maps back to that. 3v4l.org/IfDGv Commented Jul 15, 2018 at 17:02
  • 1
    Can you give some context? Any salt-based hashing will generate different hashes for the same input. Commented Jul 15, 2018 at 17:13
  • 1
    It is infinite. Anything can convert a string to something else. Commented Jul 15, 2018 at 17:28

1 Answer 1

8

You can do this Using Simple inbuild Hash Function Available in PHP

<?php
  echo hash('ripemd160', 'Your text goes here');
?>

Source http://php.net/manual/en/function.hash.php

Sign up to request clarification or add additional context in comments.

7 Comments

Hi thank you for your reply! Do you possibly know how can I hash a string same as that output on my post.
Give me the string, and I'll figure out the hash used, can you?
The string was "developered1"
All you need is the right key... do you have a key, or salt used, I've written an encryption and decryption module... I need a key t run it
Thank you very much for the effort! I unfortunately don't have the key or salt used...
|

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.