class Net::LDAP::Filter

def bineq(attribute, value)

This filter does not perform any escaping.

f = Net::LDAP::Filter.bineq("objectGUID", guid_bin)
guid_bin = [guid].pack("H*")
guid = "6a31b4a12aa27a41aca9603f27dd5116"
# for guid represented as hex charecters

GUID values.
This is primarily used for Microsoft Active Directory to compare

this prevents the search data from being forced into a UTF-8 string.
Creates a Filter object indicating a binary comparison.
#
def bineq(attribute, value)
  new(:bineq, attribute, value)
end