# File lib/net/ldap/core_ext/string.rb, line 33
33: def read_ber syntax=nil
34: StringIO.new(self).
35: read_ber(syntax)
36: end
to_ber A universal octet-string is tag number 4, but others are possible depending on the context, so we let the caller give us one. The preferred way to do this in user code is via to_ber_application_sring and to_ber_contextspecific.
# File lib/net/ldap/core_ext/string.rb, line 15
15: def to_ber code = 4
16: [code].pack('C') + length.to_ber_length_encoding + self
17: end
# File lib/net/ldap/core_ext/string.rb, line 22
22: def to_ber_application_string code
23: to_ber( 0x40 + code )
24: end
Disabled; run with --debug to generate this.
Generated with the Darkfish Rdoc Generator 1.1.6.