Releases: llucenic/graylog-plugin-hexdec
Releases · llucenic/graylog-plugin-hexdec
v1.1.1
v1.1.0
v1.0.0
Initial version of the plugin with two conversion pipeline functions:
- hex2dec(string) : Long - returns decimal representation of a string containing hexadecimal digits. It effectively converts hexadecimal string notation to numeric representation. Example: hex2dec("000085") == 133
- dec2hex(long) : String - returns hexadecimal lower case string representation of the given number. No prefix or leading zeros.