MD5 Hash in AS3
I was looking for a way to MD5 hash a string in AS3 and most of the results that turned up was using some obscure classes from some unknown sources, at least for my keyword combination anyway.
Only after more digging I’ve found that there’s a stable library called as3corelib in Google code. With two following lines of code, I can now hash a string.
import com.adobe.crypto.MD5;
var hashString:String = MD5.hash('my secret');