Flowdock
method

expand_hexstring

Importance_0
v1_9_3_392 - Show latest stable - 0 notes - Class: RFC2253DN
expand_hexstring(str) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File ext/openssl/lib/openssl/x509-internal.rb, line 93
        def expand_hexstring(str)
          return nil unless str
          der = str.gsub(HexPair){$&.to_i(16).chr }
          a1 = OpenSSL::ASN1.decode(der)
          return a1.value, a1.tag
        end
Register or log in to add new notes.