Need help translating some Java encryption to PHP

1.1k Views Asked by At

I'm trying to port a "simple" string encryption algorithm from Java to PHP and it uses just enough obscure bits of specific Java libraries that I'm bashing my head against the wall. I'm hoping the SO community can help. Here's the Java:

public static String encode(String str) throws Exception {
    MessageDigest md = MessageDigest.getInstance("SHA-1");
    md.reset();
    return (new BASE64Encoder()).encode(md.digest(str.getBytes("UTF-8")));
}

Intuitively, I would think the equivalent in PHP would be something like:

base64_encode(sha1($str));

but this isn't working. I'm guessing this has something to do with the use of getBytes?


EDIT: Here's a couple examples of what I get:

  • Java encode of "garden": sa3lMQV/UcKZJHkzXQO3dK/etvo=
  • PHP encode of "garden": YjFhZGU1MzEwNTdmNTFjMjk5MjQ3OTMzNWQwM2I3NzRhZmRlYjZmYQ==

  • Java encode of "WhyJavaWhy": oJTJIq6WJM8P9rFPnZdoyK/WBK4=

  • PHP encode of "WhyJavaWhy": YTA5NGM5MjJhZTk2MjRjZjBmZjZiMTRmOWQ5NzY4YzhhZmQ2MDRhZQ==
2

There are 2 best solutions below

1
On BEST ANSWER

This works:

base64_encode(sha1($str, TRUE));

$ php -r "echo base64_encode(sha1('garden', TRUE));"
sa3lMQV/UcKZJHkzXQO3dK/etvo=
0
On

Try

base64_encode(sha1(utf8_encode($str)));