CLI ( Command Line Interface )
- Install php
- Clone this github repo
- Run php main.php
- Go to passGen directory
- Enter how many characters
Web Server
- Install Web Server
- Clone this github repo / main.php
- Include main.php
- Call the method in this way
echo (new Main())->proc_website();
CLI ( Command Line Interface ): Run php main.php -h
for help
Web Server You can use parameters in passGen using the example below
<?php
echo (new Main())->proc_website(
char: "abcdefgKPOL123",
count: 12
);
?>