Hashing class
Constructors
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
- 
  bytes2Hash(
List< int> bytes) → String - This function takes a list of bytes and returns a hash string
 - 
  llMD5String(
String src, int nonce) → String  - 
  md5Hash(
String input) → String  - This will generate the md5 bytes and hash it using #bytes2Hash
 - 
  md5Sum(
List< int> input) → List<int>  - This function returns the bytes instead of a hash string
 - 
  md5SumStr(
String input) → List< int>  - This function returns the bytes instead of a hash string
 - 
  sha1Hash(
String input) → String  - This will generate the Sha1 bytes and hash it using #bytes2Hash
 - 
  sha1Sum(
List< int> input) → List<int>  - This functions returns the bytes instead of a hash string
 - 
  sha1SumStr(
String input) → List< int>  - This functions returns the bytes instead of a hash string
 - 
  sha256Hash(
String input) → String  - This will generate the Sha256 bytes and hash it using #bytes2Hash.
 - 
  sha256Sum(
List< int> input) → List<int>  - This function returns the bytes instead of a hash string
 - 
  sha256SumStr(
String input) → List< int>  - This function returns the bytes instead of a hash string