I need to generate a hash key with two inputs (strings) ex: inputA != inputB is true
key1 = hash_method(inputA, inputB);
key2 = hash_method(inputB, inputA);
and the condition
key1 === key2 is true.
I will be needing for js but If somebody can help me with java or ruby I can traduce it. Or you have some plugin or library for js would be great. I dont need that the key will be very secure but I need that this will be only
thank you