PHP Classes

File: config/config.php

Recommend this page to a friend!
  Classes of Vinicius Teixeira Souza   Secure Passwords Generator   config/config.php   Download  
File: config/config.php
Role: Configuration script
Content type: text/plain
Description: Classe de configurações gerais de segurança
Class: Secure Passwords Generator
Generate random text to use as passwords
Author: By
Last change:
Date: 9 years ago
Size: 334 bytes
 

Contents

Class file image Download
<?php

   
/*
     * Configurações Gerais de Segurança
     * Security Geral Configuration
     *
     * O valor inteiro representa o tamanho da senha a ser gerada.
     * The integer value is the length of the password to be generated.
     */

   
$NIVEL_SEGURO = 8;
   
$NIVEL_MUITO_SEGURO = 9;
   
$NIVEL_SUPER_SEGURO = 10;
   
$NIVEL_SEGURO_EXTREMO = 15;


?>