.. _uuidv1nodes: Node ID Generators ################## .. highlight:: php Main interface: ``Arokettu\Uuid\Node\Node`` Node generator classes represent different algorithms to generate the node field of the UUIDv1 and UUIDv6 as described in the `RFC 9562`_. Node ID is a 48 bit long value, same as the MAC address. Random Node =========== ``Arokettu\Uuid\Node\RandomNode`` Random node is a wrapper for a random generator, it will return a new byte sequence for every new UUID. This is the default node generator for the factory. As described in the `section 6.10`_ for non-MAC node IDs, the multicast bit will be set in the generated value. ::