Description: This CFC allows you to easily generate random passwords for any application by simply invoking the component with five (5) variables: * useLower - When set to 1, enables generation of passwords with lowercase letters included; when set to 0, does not. * useUpper - When set to 1, enables generation of passwords with uppercase letters included; when set to 0, does not. * useNumeric - When set to 1, enables generation of passwords with the numbers 0 through 9 included; when set to 0, does not. * useSpecial - When set to 1, enables generation of passwords with special characters (#, $, %, &, ', (, ), *, +, ,, -) included; when set to 0, does not. * passLength - This specifies the length of the password to return, typically from 5 to 12To use the CFC place it in the root directory of your website and invoke it using a predefined syntax which is given in the index.cfm file which accompanies this CFC.
|