This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* opc-multipart-md5 calculation code | |
* Matt Shannon / Oracle Corp. | |
* See https://gist.github.com/itemir/f5bc9fded6483cd79c89ebf4ca1cfd30 for opc-multipart-md5 calculation algorithm in python | |
*/ | |
import java.io.BufferedInputStream; | |
import java.io.ByteArrayInputStream; | |
import java.io.File; |