Is it possible to convert MD5 on blueprint?

Unfortunately, and perhaps humorously, the answer is the same: There’s no blueprint support for this, you have to write some C++.
Or find some plugin that already exports this to blueprint – maybe one exists on the marketplace?
A quick search finds exactly one, named “Crypto Helper Blueprints,” for $24.99: GitHub - RLoris/CryptoHelperDoc: UE plugin to handle cryptographic algorithm

Also: Anywhere you use MD5 these days, you probably want to either use a weaker, faster algorithm (CRC or FNV or whatever,) or an actually-strong algorithm. Paying for MD5 when it’s now trivially breakable is generally a poor trade-off. The current recommendation in cryptography is to use SHA-256 if space/time is limited, or SHA-512 if you want it to last.

2 Likes