Skip to content

Releases: llucenic/graylog-plugin-hexdec

v1.1.1

05 Jan 11:51
Compare
Choose a tag to compare

Second parameter (pad length) of dec2hex function made optional (fixed) and there have been added compensation for zero value of this parameter (now it is ignored and default value is used instead).

v1.1.0

04 Jan 22:06
Compare
Choose a tag to compare

dec2hex function with second (optional) argument to define length of leading zero padding of the result string

v1.0.0

03 Jan 19:20
Compare
Choose a tag to compare

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.