SproutCMS

This is the code documentation for the SproutCMS project

class securityHelperTest

Test suite

Extending this class

<?php
/**
* New class description goes here
* 
* @author Your Name, 2026-08-16
**/
class NewClassName extends securityHelperTest {
    
    public function testPasswordComplexityBadlist ($string, $errmsg) {
        // Method code goes here
    }
    
    public function dataPasswordComplexityClasses () {
        // Method code goes here
    }
    
    public function testPasswordComplexityClasses ($string, $classes, $errmsg) {
        // Method code goes here
    }
    
    public function dataPasswordComplexityBadlist () {
        // Method code goes here
    }
    
    public function testPasswordComplexityLength ($string, $length, $errmsg) {
        // Method code goes here
    }
    
    public function dataPasswordComplexityLength () {
        // Method code goes here
    }
    
    public function testCompareStringsTimingSafe () {
        // Method code goes here
    }
    
    public function testCompareStrings () {
        // Method code goes here
    }
    
    public function testRandDistribution (callable $func, array $args, int $num_unique) {
        // Method code goes here
    }
    
    /**
    * Data for testing random distributions
    **/
    public function dataRandDistribution () {
        // Method code goes here
    }
    
    public function testRandStr () {
        // Method code goes here
    }
    
    public function testRandByte () {
        // Method code goes here
    }
    
    public function testRandBytes () {
        // Method code goes here
    }
    
}
?>