In this article let’s understand how we can create a regex for SHA512 strings and how it can be matched.
SHA-512 (Secure Hash Algorithm 512-bit) is a cryptographic hash function that generates a fixed-size, 128-character (512-bit) output from any input data. It is commonly used to generate digital signatures for electronic documents and to verify the integrity of data, such as files downloaded from the internet.
Regex (short for regular expression) is a powerful tool used for searching and manipulating text. It is composed of a sequence of characters that define a search pattern. Regex can be used to find patterns in large amounts of text, validate user input, and manipulate strings. It is widely used in programming languages, text editors, and command line tools.
Let’s look at regex expression for base64 strings. We will try a few approaches right from simple approach to RFC or advanced approach.
Regex to match SHA-512 string
Regular Expression for SHA512 String can be represented as-
/^[a-fA-F0-9]{128}$/gm
Alternatively you can use the i
modifier in the regex takes care of the UPPERCASE letters.
/^[a-f0-9]{128}$/i
Test string examples for the above regex-
Input String | Match Output |
---|---|
ThisIsNotSHA512 | does not match |
a1f0b78b8c1320690327800e3a5de10e7dbba7b6c752e702193a395a52c727b6a1f0b78b8c1320690327800e3a5de10e7dbba7b6c752e702193a395a52c727b6 | matches |
b32433a2e42321239baca23bf9c77889fccc5483fc142a31cdf07d115e44fc79b32433a2e42321239baca23bf9c77889fccc5483fc142a31cdf07d115e44fc79 | matches |
zxcvbncvwfrqghdfjgyetwrteyrutituregfwfeghrgjhkjgfdsdghj | does not match |
Here is a detailed explanation of the above regex-
/^[a-fA-F0-9]{128}$/gm
^ asserts position at start of a line
Match a single character present in the list below [a-fA-F0-9]
{128} matches the previous token exactly 128 times
a-f matches a single character in the range between a (index 97) and f (index 102) (case sensitive)
A-F matches a single character in the range between A (index 65) and F (index 70) (case sensitive)
0-9 matches a single character in the range between 0 (index 48) and 9 (index 57) (case sensitive)
$ asserts position at the end of a line
/gm matches the characters /gm literally (case sensitive)
Global pattern flags
g modifier: global. All matches (don't return after first match)
m modifier: multi line. Causes ^ and $ to match the begin/end of each line (not only begin/end of string)
Hope this article was useful to match SHA512 regex pattern. In conclusion, understanding how to create and utilize regular expressions (regex) for SHA-512 strings is essential for various applications. These powerful tools enable the identification and manipulation of cryptographic hash values, supporting tasks such as data integrity verification and digital signatures. By employing regex patterns, you can efficiently match and work with SHA-512 strings in different programming contexts.