method

pack_uuid_namespace

v7.1.3.2 - Show latest stable - Class: Digest::UUID
pack_uuid_namespace(namespace)
private

No documentation available.

# File activesupport/lib/active_support/core_ext/digest/uuid.rb, line 56
    def self.pack_uuid_namespace(namespace)
      if [DNS_NAMESPACE, OID_NAMESPACE, URL_NAMESPACE, X500_NAMESPACE].include?(namespace)
        namespace
      else
        match_data = namespace.match(/\A(\h{8})-(\h{4})-(\h{4})-(\h{4})-(\h{4})(\h{8})\z/)

        raise ArgumentError, "Only UUIDs are valid namespace identifiers" unless match_data.present?

        match_data.captures.map { |s| s.to_i(16) }.pack("NnnnnN")
      end
    end