DceSecurityGeneratorInterface.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?php
  2. /**
  3. * This file is part of the ramsey/uuid library
  4. *
  5. * For the full copyright and license information, please view the LICENSE
  6. * file that was distributed with this source code.
  7. *
  8. * @copyright Copyright (c) Ben Ramsey <ben@benramsey.com>
  9. * @license http://opensource.org/licenses/MIT MIT
  10. */
  11. declare(strict_types=1);
  12. namespace Ramsey\Uuid\Generator;
  13. use Ramsey\Uuid\Rfc4122\UuidV2;
  14. use Ramsey\Uuid\Type\Hexadecimal;
  15. use Ramsey\Uuid\Type\Integer as IntegerObject;
  16. /**
  17. * A DCE Security generator generates strings of binary data based on a local
  18. * domain, local identifier, node ID, clock sequence, and the current time
  19. *
  20. * @see UuidV2
  21. */
  22. interface DceSecurityGeneratorInterface
  23. {
  24. /**
  25. * Generate a binary string from a local domain, local identifier, node ID,
  26. * clock sequence, and current time
  27. *
  28. * @param int $localDomain The local domain to use when generating bytes,
  29. * according to DCE Security
  30. * @param IntegerObject|null $localIdentifier The local identifier for the
  31. * given domain; this may be a UID or GID on POSIX systems, if the local
  32. * domain is person or group, or it may be a site-defined identifier
  33. * if the local domain is org
  34. * @param Hexadecimal|null $node A 48-bit number representing the hardware
  35. * address
  36. * @param int|null $clockSeq A 14-bit number used to help avoid duplicates
  37. * that could arise when the clock is set backwards in time or if the
  38. * node ID changes
  39. *
  40. * @return string A binary string
  41. */
  42. public function generate(
  43. int $localDomain,
  44. ?IntegerObject $localIdentifier = null,
  45. ?Hexadecimal $node = null,
  46. ?int $clockSeq = null
  47. ): string;
  48. }