I have been googling (and SO-ing) for a while but haven't come across a single article/answer pointing me at the right Java class to extract a MD5 hash from a file and convert it to armored ascii.
It seems impossible to me that such a thing doesn't exist.
Please note that what I mean is something such as MessageDigest.getInstance("MD5").fromFile("C:\My\Path\file.txt").digest().toBase64();
or something to this effect.
What am I missing?