B4J Library NHCalculateHash - Calculate Hash for everything - It Cannot be Used In B4A

This library caclulates the hash for everything.

The object is CalculateHash

Calculate with ByteArray

B4X:
    Dim clCH As CalculateHash
    clCH.Initialize
    Dim b() As Byte
    b=File.ReadBytes("C:\MyFolder", "somefile.dat")
    Dim sReturn As String = clCH.CalculateHasFromByteArray(b)

Or

B4X:
    Dim clCH As CalculateHash
    clCH.Initialize
    Dim sReturn As String = clCH.CalculateTheHash(txtField.Text)




(2023-08-17) Added Calculate Hash with MD5, SHA-256, SHA-1 Algorithms

B4X:
    Dim clCH As CalculateHash
    clCH.Initialize
    Log(clCH.CalculateTheHashWithAlgorithm("Let's try this to see.", clCH.MD5))
    Log(clCH.CalculateTheHashWithAlgorithm("Let's try this to see.", clCH.SHA256))
    Log(clCH.CalculateTheHashWithAlgorithm("Let's try this to see.", clCH.SHA1))

Or calculate also with byte array

B4X:
    Dim clCH As CalculateHash
    clCH.Initialize
    Log(clCH.CalculateTheHashWithAlgorithmFromByteArray("Let's try this to see.".GetBytes("UTF8"), clCH.MD5))
    Log(clCH.CalculateTheHashWithAlgorithmFromByteArray("Let's try this to see.".GetBytes("UTF8"), clCH.SHA256))
    Log(clCH.CalculateTheHashWithAlgorithmFromByteArray("Let's try this to see.".GetBytes("UTF8"), clCH.SHA1))
 

Attachments

  • NHCalculateHASH.zip
    3.4 KB · Views: 77
Last edited:

hatzisn

Well-Known Member
Licensed User
Longtime User
Removed the JavaFx from the object so it can be used in non-UI and WebApps. Re-download.
 

hatzisn

Well-Known Member
Licensed User
Longtime User
(2023-08-17) New Version: Added calculate Hash With MD5, SHA-256, SHA1 algorythms.
 
Top