ποΈ aes_decrypt
Uses the AES128ECB algorithm to decrypt a string and returns a binary string.
ποΈ aes_encrypt
Uses the AES128ECB algorithm to encrypt a string and returns a binary string.
ποΈ base64_decode_binary
Decodes a Base64-encoded string and return a BINARY.
ποΈ base64_decode_string
This function is the same as frombase64.
ποΈ from_base64
Decodes a Base64-encoded string. This function is an inverse of tobase64.
ποΈ md5
Uses the MD5 Message-Digest Algorithm to calculate the 128-bit checksum of a string. The checksum is represented by a 32-character hexadecimal string.
ποΈ md5sum
Calculates the 128-bit checksum of multiple strings. The checksum is represented by a 32-character hexadecimal string.
ποΈ md5sum_numeric
Calculates the 128-bit checksum of multiple strings. The checksum is represented by a decimal string of digits.
ποΈ sha2
Calculates the SHA-224 hash value, SHA-256 hash value, SHA-384 hash value, or SHA-512 hash value of a string.
ποΈ sm3
Uses the SM3 digest algorithm to encrypt a string into a 256-bit hexadecimal string. Every 32 bits are separated by a space.
ποΈ to_base64
Converts a string into a Base64-encoded string. This function is an inverse of frombase64.