Example usage for Java com.amazonaws.util Md5Utils fields, constructors, methods, implement or subclass
The text is from its open source code.
byte[] | computeMD5Hash(InputStream is) Computes the MD5 hash of the data in the given input stream and returns it as an array of bytes. |
byte[] | computeMD5Hash(byte[] input) Computes the MD5 hash of the given data and returns it as an array of bytes. |
byte[] | computeMD5Hash(File file) Computes the MD5 of the given file. |
String | md5AsBase64(InputStream is) Returns the MD5 in base64 for the data from the given input stream. |
String | md5AsBase64(byte[] input) Returns the MD5 in base64 for the given byte array. |
String | md5AsBase64(File file) Returns the MD5 in base64 for the given file. |