Generate MD4 Hash

Generate MD4 Hash

MD4 is a cryptographic hash function that accepts a string of any length and returns a 128-bit fixed-length digest value, commonly represented as a sequence of 32 hexadecimal digits. MD4...

Read Data from XML File

XML (eXtensible Markup Language) is a plain text format for representing structured data. XML is often used to exchange data between systems. XML specification is defined by the W3C (World...

Write Data to XML File

XML (eXtensible Markup Language) is a plain text format for representing structured data. XML is often used to exchange data between systems. XML specification is defined by the W3C (World...

Read Data from CSV File

CSV (Comma Separated Values) file is a plain text file that contains data fields separated by commas. CSV file is commonly used for saving tabular data. Each line of the...

Write Data to CSV File

CSV (Comma Separated Values) file is a plain text file that contains data fields separated by commas. CSV file is commonly used for saving tabular data. Each line of the...

Generate Whirlpool Hash

Whirlpool is a cryptographic hash function that accepts a string of any length and returns a 512-bit fixed-length digest value, commonly represented as a sequence of 128 hexadecimal digits. Whirlpool...

Split String into Array

Working with text sometimes we need to split a string into an array using a delimiter. It can be comma, space, hyphen, etc. Programming languages provides various methods to do...