I'm trying to write a tripcode generator in Babby's first programming language, C#. I got an array of bytes that represents a password with Japanese characters in it. I've been able to encode it. The problem I'm having is making the salt string. Am I supposed to use the second and third byte or the second and third character?
You have to decode your input and then encode to Shift_JIS, which is probably what you're doing if you're inputing it correctly.
Name:
Anonymous2011-02-04 17:20
I have the array of bytes then I'd encode to shift-jis, replace characters (& -> &, etc.) which I'd pass to crypt()? What do I encode the salt with?