Android's MessageDigest page says MD5 is supported from day one - https://developer.android.com/reference/java/security/MessageDigest
But the MessageDigest.getInstance("MD5") method can throw NoSuchAlgorithmException and there is no getMD5Instance method which would have made it guaranteed. Is there any chance MD5 won't be available at least in newer android versions later than 23 (Marshmallow)? Thanks for replies.
There is another thread which discusses this but is 7 years old with some occurrences reported on android 2.x devices (Gingerbread). Is MD5 guaranteed to be available for use with MessageDigest in Android?