This repository was archived by the owner on Feb 26, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Exomia.Serialization.Hash
Daniel Baetz edited this page Jun 21, 2019
·
5 revisions
exomia hash algorithm.
public class Exomia.Serialization.Hash.EHA.ctor EHA(Int64 seed)
Initializes a new instance of the Exomia.Serialization.Hash.EHA class.
-
seed- The seed.
Byte[] ToBytes(Stream stream)
generates a hash from a given stream and returns it as a byte array.
-
stream- input.
Byte[] ToBytes(String data)
generates a hash from given string data and returns it as a hex string.
-
data- data.
Byte[] ToBytes(Byte[] data)
generates a hash from given string data and returns it as a hex string.
-
data- data.
String ToString(Stream stream)
generates a hash from a given stream and returns it as a hex string.
-
stream- input.
String ToString(String data)
generates a hash from given string data and returns it as a hex string.
-
data- data.
String ToString(Byte[] data)
generates a hash from given string data and returns it as a hex string.
-
data- data.