the BigInteger number
the binary string
Converts a decimal number to binary string
number to parse
the binary string representation of number
Converts a decimal number to binary octet (8 bit) string. If needed the octet will be padded with zeros to make it up to 8 bits
to convert to octet string
the octet string representation of given number
Given an IPv4 number in dot-decimal notated string, e.g 192.168.0.1 converts it to binary string, e.g. '11000000101010000000000000000001'
IPv4 string in dot-decimal notation
the binary value of the given ipv4 number in string
Calculates the log, to base 2 of given number.
the number to calculate log base 2
the log base 2 of given number
Given a binary string, adds a number of zero to the left until string is as long as the given string length
the string to pad
the final length of string after padding
Parses number in binary to number in BigInteger
binary number in string to parse
binary number in BigInteger
Generated using TypeDoc
Converts a given BigInteger number to a binary string