almadus/crypto-rand-secure

The Crypto rand sercure string

Installs: 13

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

pkg:composer/almadus/crypto-rand-secure

1.0 2021-01-02 21:58 UTC

This package is auto-updated.

Last update: 2025-10-29 02:37:22 UTC


README

Install With Composer

composer require almadus/crypto-rand-secure

Code Sample

Create the php file example index.php and paste this code

require __DIR__.'/vendor/autoload.php';
$config = [
"uppercase" => true,
"lowercase" => true,
"numeric" => true,
"length" => 10
];

$crypto = new Almadus\CryptoRandSecure($config);
var_dump($crypto->getToken());