DigestUtils class abstract

Constructors

DigestUtils()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

generateDigestForClassFile(DependencyVisitor visitor, String filePath) String
Calculates a MD5 digest of a given class file, considering it's dependencies as well
generateDigestForMultipleClassFile(DependencyVisitor visitor, List<String> filePaths) String
Calculates a combined digest for the provided filePaths list.
generateDigestForMultipleFile(List<String> filePaths) String
Calculates the MD5 digest of multiple files filePaths.
generateDigestForRawString(String string) String
Calculates the MD5 digest of a given string string.
generateDigestForSingleFile(String filePath) String
Calculates the MD5 digest of a given file filePath.