Java com.amazonaws.util Md5Utils fields, constructors, methods, implement or subclass

Example usage for Java com.amazonaws.util Md5Utils fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.amazonaws.util Md5Utils.

The text is from its open source code.

Method

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.
Stringmd5AsBase64(InputStream is)
Returns the MD5 in base64 for the data from the given input stream.
Stringmd5AsBase64(byte[] input)
Returns the MD5 in base64 for the given byte array.
Stringmd5AsBase64(File file)
Returns the MD5 in base64 for the given file.