Change User Password in MySQL

Change User Password in MySQL

The SET PASSWORD statement allows changing the password for a user in the MySQL server. Provided password is interpreted as a clear text string. The password is passed to the...

Generate SHA-1 Hash

SHA-1 is a cryptographic hash function that accepts a string of any length and returns a 160-bit fixed-length digest value, commonly represented as a sequence of 40 hexadecimal digits. SHA-1...

Calculate Adler-32 Checksum

Adler-32 is a checksum calculation algorithm which is commonly used to validate data integrity. It allows to detect data corruption. Adler-32 is used by zlib compression library. Adler-32 checksum is...

Calculate CRC32 Checksum

CRC32 is a checksum calculation algorithm which is commonly used to validate data integrity being transmitted. It allows to detect data corruption. CRC32 checksum is usually represented as an integer...