/home/techb158/ileadtechnology.com/vendor/ramsey/uuid/src/Generator
NameSizeModeActions
CombGenerator.php34460644editdlrm
DceSecurityGenerator.php48620644editdlrm
DceSecurityGeneratorInterface.php17480644editdlrm
DefaultNameGenerator.php12670644editdlrm
DefaultTimeGenerator.php42040644editdlrm
NameGeneratorFactory.php6980644editdlrm
NameGeneratorInterface.php10660644editdlrm
PeclUuidNameGenerator.php14300644editdlrm
PeclUuidRandomGenerator.php8070644editdlrm
PeclUuidTimeGenerator.php8730644editdlrm
RandomBytesGenerator.php11440644editdlrm
RandomGeneratorFactory.php7080644editdlrm
RandomGeneratorInterface.php7270644editdlrm
RandomLibAdapter.php14060644editdlrm
TimeGeneratorFactory.php15100644editdlrm
TimeGeneratorInterface.php11580644editdlrm
Edit: /home/techb158/ileadtechnology.com/vendor/ramsey/uuid/src/Generator/NameGeneratorInterface.php (1066B)
* @license http://opensource.org/licenses/MIT MIT */ declare(strict_types=1); namespace Ramsey\Uuid\Generator; use Ramsey\Uuid\UuidInterface; /** * A name generator generates strings of binary data created by hashing together * a namespace with a name, according to a hashing algorithm */ interface NameGeneratorInterface { /** * Generate a binary string from a namespace and name hashed together with * the specified hashing algorithm * * @param UuidInterface $ns The namespace * @param string $name The name to use for creating a UUID * @param string $hashAlgorithm The hashing algorithm to use * * @return string A binary string * * @psalm-pure */ public function generate(UuidInterface $ns, string $name, string $hashAlgorithm): string; }