md5 batch encryption

The md5 batch encryption tool can batch encrypt multiple strings at the same time, and convert normal strings into strings encrypted with the md5 algorithm. Support the generated md5 value all uppercase, all lowercase, 16-bit uppercase, 16-bit lowercase, random lowercase, 16-bit random uppercase and other output modes.

What is md5?

md5 is often used to protect the integrity of messages to confirm whether the data transmission is complete. It is a very popular hash function in the field of computer security, which can generate 128-bit 16-byte hash bytes

MD5 can convert the specified data into another fixed-length value through calculation. It is the basic principle of the hash algorithm.

The predecessors of md5 are md2, md3 and md4. They were first published in 1992 and used to replace md4. The current programming language can implement MD5 encryption and can be used for common data encryption verification.

Instructions:

Example: It is necessary to encrypt three different strings of "aaa", "abc", and "ccc" at the same time

Respectively wrap "aaa", "abc", and "ccc" in sequence, arrange them in three rows, and copy them to the text box

Select the character type of the output md5 encryption, and batch encrypt the string line by line.